1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-24 17:04:43 +00:00

Removed frontend and updated production to use puma instead of pasenger

This commit is contained in:
2017-05-31 09:40:31 -04:00
parent 3f72a912b6
commit b37004cbbf
55 changed files with 128 additions and 3676 deletions

42
Gemfile
View File

@@ -39,26 +39,24 @@ gem 'spring', :group => :development
#Installed by me
#For Heroku
group :production do
gem 'rails_12factor'
gem 'mysql2'
gem 'passenger'
gem 'therubyracer'
gem 'newrelic_rpm'
gem 'dalli'
end
#Other
gem 'devise'
gem 'cancancan'
gem 'round_robin_tournament'
gem 'rb-readline'
gem 'delayed_job_active_record'
gem 'puma'
gem 'brakeman'
gem 'rails-lineman'
group :development do
#gem 'bullet'
end
group :production do
gem 'rails_12factor'
gem 'mysql2'
gem 'therubyracer'
gem 'newrelic_rpm'
gem 'dalli'
end
gem 'devise'
gem 'cancancan'
gem 'round_robin_tournament'
gem 'rb-readline'
gem 'delayed_job_active_record'
gem 'puma'
group :development do
gem 'rubocop'
gem 'bullet'
gem 'brakeman'
end