Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maintenance #37

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.3
2.5.0
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
language: ruby
rvm: 2.2.3
cache: bundler
rvm: 2.5.0
sudo: false
before_install:
- gem update --system
- gem --version
before_script:
- "bundle exec rake db:migrate"
- RAILS_ENV=test bundle exec rake db:create db:schema:load
notifications:
email:
- [email protected]
Expand Down
18 changes: 6 additions & 12 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
source 'https://rubygems.org'

ruby '2.2.3'
ruby '2.5.0'

gem 'rails', '~> 4.2'

gem 'stripe', git: 'https://github.com/stripe/stripe-ruby'
gem 'stripe'
gem 'slim'
gem 'simple_form'
gem 'country_select'
gem 'gravatar-ultimate'
gem 'hashr'
gem 'simple_statistics'
gem 'rollbar', '~> 2.7.1'
gem 'sentry-raven'
gem 'puma'

# for attr_accessible
# TODO: This gem won't be updated for Rails 5, so any usage of attr_accessible must be updated before upgrading
gem 'protected_attributes'

group :development do
gem 'quiet_assets'
gem 'thin'
end

group :test do
Expand All @@ -28,21 +27,16 @@ group :test do
end

group :production do
gem 'pg'
gem 'unicorn'
gem 'pg', '< 1.0'
end

group :development, :test do
gem 'rspec-rails'
gem 'sqlite3'
gem 'pg', '< 1.0'
end

gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'

gem 'jquery-rails'

# Needs to be available on Hoerku for running `rails console`
# TODO: Remove me after upgrading to Rails 4
gem 'test-unit'
Loading