Skip to content

Commit

Permalink
Merge pull request #230 from Midburn/bug/memory-issues
Browse files Browse the repository at this point in the history
try to handle memory issues by removing non required gems [handles #229]
  • Loading branch information
rootux authored Apr 24, 2017
2 parents 88af2f3 + 6aa5c2c commit 3d5805c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ gem 'coffee-rails', '~> 4.1.0'
# gem 'therubyracer', platforms: :ruby

# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-rails', require: false
# Jquery ui
gem 'jquery-ui-rails'
gem 'jquery-ui-rails', require: false
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'

Expand All @@ -35,11 +35,11 @@ gem 'devise'
gem 'haml'

# Enable Facebook authentication.
gem 'omniauth-facebook'
gem 'omniauth-facebook', require: false

# Admin backend
gem 'activeadmin', github: 'activeadmin'
gem 'cancan' # or cancancan
gem 'cancan', require: false # or cancancan
gem 'draper'
gem 'pundit'

Expand Down

0 comments on commit 3d5805c

Please sign in to comment.