Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:

- name: Build and start services
run: |
ruby -v
docker compose up -d --build

- name: Wait for MySQL to be ready
Expand Down
47 changes: 26 additions & 21 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ source 'http://rubygems.org'
ruby '2.1.10'

gem 'aasm'
gem 'premailer-rails'
gem 'premailer-rails', git: 'https://github.com/fphilipe/premailer-rails', branch: :main
gem 'classy_enum'
gem 'activerecord-import'
# gem 'activerecord-import'
gem 'activerecord-session_store'
gem 'acts_as_tree', '~> 0.1.1'
gem 'acts-as-taggable-on', '2.4.1'
gem 'ajaxful_rating',
Expand All @@ -19,29 +20,32 @@ gem 'aws-s3', require: 'aws/s3'
gem 'aws-sdk'
gem 'bundler', '~> 1.2'
gem 'cancan', '~> 1.6.7'
gem 'ckeditor', '3.4.2.pre'
gem 'ckeditor', '~> 4.0'
gem 'daemons', '1.0.10'
gem 'date_validator'
gem 'deep_cloneable'
gem 'delayed_job_mongoid'
# gem 'delayed_job_mongoid'
gem 'logger', '< 1.3'
gem 'bson_ext'
gem 'dynamic_form'
gem 'em-http-request'
gem 'eventmachine'
gem 'exceptional'
gem 'factory_girl_rails'
gem "redu-has_friends", "~> 1.0", require: "has_friends"
gem 'invitable', git: 'https://github.com/redu/invitable.git'
gem 'jquery-rails', '>= 1.0.12'
gem 'invitable', git: 'https://github.com/embs/invitable.git', branch: :main
gem 'jquery-rails' #, '>= 1.0.12'
gem 'kaminari', '0.14.1'
gem 'mime-types'
gem "mysql2"
gem 'omniauth'
gem 'omniauth-facebook'
gem 'protected_attributes' # TODO: migrate to strong params
gem 'pusher'
gem 'pagseguro', '~> 0.1.10'
gem 'paperclip', '~> 2.7.5'
gem 'rails', '~> 3.2.13'
gem 'paperclip' #, '~> 2.7.5'
gem 'rails', '4.0.13'
gem 'rails-observers'
gem "rake", "~> 10.0.4"
gem 'remotipart', '~> 1.0'
gem 'scribd_fu', git: 'https://github.com/guiocavalcanti/scribd_fu.git',
Expand All @@ -50,19 +54,19 @@ gem 'simple-navigation', '3.10.1'
# gem 'sunspot_rails'
gem 'route_translator'
gem 'useragent'
gem 'vis_client', git: 'https://github.com/redu/vis_client.git',
branch: 'ruby-1-9-3'
# gem 'vis_client', git: 'https://github.com/redu/vis_client.git',
# branch: 'ruby-1-9-3'
gem 'chronic' # Necessário ao whenever
# gem 'whenever', require: false
gem 'zencoder'
gem 'untied-publisher', '~> 0.0.7.pre3'
# gem 'untied-publisher', '~> 0.0.7.pre3'
gem 'yajl-ruby'
gem 'simple_acts_as_list'
gem 'ey_config'
gem 'destroy_soon'
gem 'redu_analytics', git: 'https://github.com/redu/analytics.git'
# gem 'redu_analytics', git: 'https://github.com/redu/analytics.git'
gem 'humanizer'
gem 'valium'
# gem 'valium'
gem 'dalli'
gem 'simple-private-messages', '0.0.0', # A gem não possui .gemspec
git: 'https://github.com/jongilbraith/simple-private-messages.git'
Expand All @@ -71,25 +75,26 @@ gem 'rubyzip', require: 'zip/zip'
gem 'truncate_html'

# Gems específicos para a API
gem 'oauth-plugin', '~> 0.4.0'
gem 'multipart-post', '< 2.2.0'
gem 'oauth-plugin', '~> 0.5'
gem 'rack-cors', require: 'rack/cors'
gem 'roar-rails'

group :assets do
gem 'sass-rails', '~> 3.2'
#group :assets do
gem 'sass-rails' #, '~> 3.2'
gem 'compass-rails'
gem 'therubyracer', platforms: :ruby
gem 'uglifier', '~> 2'
gem 'asset_sync'
gem 'turbo-sprockets-rails3'
end
# gem 'asset_sync'
# gem 'turbo-sprockets-rails3'
#end

# Gems específicos de algum ambiente
group :development, :test do
gem 'jasmine'
gem 'no_peeping_toms', git: 'https://github.com/patmaddox/no-peeping-toms.git'
# gem 'no_peeping_toms', git: 'https://github.com/patmaddox/no-peeping-toms.git'
gem 'rails3-generators'
gem "rspec-rails", "~> 2.13"
gem "rspec-rails" #, "~> 2.13"
# gem 'debugger'
# gem 'sunspot_solr'
end
Expand Down
Loading
Loading