Skip to content

Commit

Permalink
Bugfix/rack version (#19)
Browse files Browse the repository at this point in the history
* update rails 4 as high as can go

* rack security fix

* version bump
  • Loading branch information
craigphares authored Sep 5, 2020
1 parent c37b067 commit 87b4492
Show file tree
Hide file tree
Showing 16 changed files with 220 additions and 176 deletions.
Binary file added .DS_Store
Binary file not shown.
14 changes: 9 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,23 @@ gemspec

ruby '2.5.8'

gem 'dotenv-rails', require: 'dotenv/rails-now'
gem 'dotenv-rails', '~> 2.7', require: 'dotenv/rails-now'
# gem 'jquery-rails'
gem 'puma'
gem 'pg', '0.20'
gem 'rails_12factor', group: :production
gem 'devise', '>= 4.6.0'
gem 'devise', '~> 4.7'

group :test do
gem 'rspec-rails'
gem 'cucumber-rails', '~> 1.4.4', require: false
gem 'rspec-rails', '~> 4.0.1'
gem 'cucumber-rails', '~> 2.1', require: false
gem 'factory_bot_rails'
gem 'database_cleaner'
gem 'stripe-ruby-mock', '~> 2.5.2', require: 'stripe_mock'
gem 'poltergeist'
gem "codeclimate-test-reporter", require: nil
gem 'codeclimate-test-reporter', require: nil

# assigns is deprecated - TODO: move to request specs
# see https://stackoverflow.com/questions/42001517/rspec-rails-controller-testing-with-assertions-and-assigns
gem 'rails-controller-testing'
end
Loading

0 comments on commit 87b4492

Please sign in to comment.