Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
algobasket committed Apr 9, 2019
1 parent 9057a38 commit 6dc7557
Show file tree
Hide file tree
Showing 2 changed files with 397 additions and 321 deletions.
45 changes: 25 additions & 20 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
source 'https://rubygems.org'

gem 'rails', '~> 4.0.12'
gem 'rails-i18n'
gem 'rails', '~> 5.0.7'
gem 'rails-i18n', '~> 5.1.0'
gem 'rake'

gem 'mysql2', '~> 0.3.21'
gem 'daemons-rails'
Expand All @@ -12,9 +13,9 @@ gem 'json'
gem 'jbuilder'
gem 'bcrypt-ruby', '~> 3.1.2'

gem 'doorkeeper', '~> 1.4.1'
gem 'omniauth', '~> 1.2.1'
gem 'omniauth-identity', '~> 1.1.1'
gem 'doorkeeper', '~> 4.3.2'
gem 'omniauth', '~> 1.8.1'
gem 'omniauth-identity'

gem 'figaro'
gem 'hashie'
Expand All @@ -30,8 +31,8 @@ gem 'kaminari'
gem 'paranoid2'
gem 'active_hash'
gem 'http_accept_language'
gem "globalize", "~> 4.0.0"
gem 'paper_trail', '~> 3.0.1'
gem "globalize", "~> 5.1.0"
gem 'paper_trail', '~> 9.2.0'
gem 'rails-observers'
gem 'country_select', '~> 2.1.0'

Expand All @@ -40,19 +41,20 @@ gem 'pusher'
gem 'eventmachine', '~> 1.0.4'
gem 'em-websocket', '~> 0.5.1'

gem 'simple_form', '~> 3.1.0'
gem 'simple_form', '~> 4.0.1'
gem 'slim-rails'
gem 'sass-rails'
gem 'sass-rails', '~> 5.0.7'
gem 'coffee-rails'
gem 'uglifier'
gem "jquery-rails"
gem 'simple_form_extension'
gem "angularjs-rails"
gem 'bootstrap-sass', '~> 3.2.0.4'
gem 'bootstrap-wysihtml5-rails'
gem 'font-awesome-sass'
gem 'bourbon'
gem 'font-awesome-sass', '~> 4.2.0'
gem 'bourbon', '~> 3.2.3'
gem 'momentjs-rails'
gem 'eco'
gem 'eco'
gem 'browser', '~> 0.8.0'
gem 'rbtree'
gem 'liability-proof', '0.0.9'
Expand All @@ -63,22 +65,21 @@ gem 'grape-swagger', '~> 0.7.2'
gem 'rack-attack', '~> 3.0.0'
gem 'easy_table'
gem 'phonelib', '~> 0.3.5'
gem 'twilio-ruby', '~> 5.7.2'
gem 'twilio-ruby', '~> 3.11'
gem 'unread', github: 'InfraexDev/unread'
gem 'carrierwave', '~> 0.10.0'
gem 'simple_captcha2', require: 'simple_captcha'
gem 'rest-client', '~> 1.6.8'

group :development, :test do
gem 'factory_girl_rails'
gem 'factory_bot_rails'
gem 'faker', '~> 1.4.3'
gem 'mina'
gem 'mina-slack', github: 'InfraexDev/mina-slack'
gem 'meta_request'
gem 'meta_request','~> 0.6.0'
gem 'better_errors'
gem 'binding_of_caller'
gem 'pry-rails'
gem 'quiet_assets'
gem 'mails_viewer'
gem 'timecop'
gem 'dotenv-rails'
Expand All @@ -87,15 +88,19 @@ group :development, :test do
end

group :test do
gem 'database_cleaner'
gem 'mocha', :require => false
gem 'shoulda-matchers'
gem 'capybara'
gem 'database_cleaner'
gem 'launchy'
gem 'selenium-webdriver'
gem 'mocha', :require => false
gem 'poltergeist'
gem 'selenium-webdriver'
gem 'shoulda-matchers'

# rspec-rails rely on test-unit if rails version less then 4.1.0
# but test-unit has been removed from ruby core since 2.2.0
gem 'test-unit'
end

group :production do
gem 'puma'
end
Loading

0 comments on commit 6dc7557

Please sign in to comment.