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

Upgrade to Ruby 2.1.1 and Rails 4.1.6 // Add Bugsnag support #175

Merged
merged 12 commits into from
Nov 22, 2014
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0-p247
2.1.1
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ script:
- bundle exec rake spec
- bundle exec rake cucumber
rvm:
- 2.0.0
- 2.1.1
notifications:
irc: "chat.freenode.com#refugerestrooms"
skip_join: true
template:
- "Build #%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
- "Change view : %{compare_url}"
- "Build details : %{build_url}"
env:
DEVISE_SECRET_KEY: "$(bundle exec rake secret)"
8 changes: 6 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'https://rubygems.org'
ruby '2.0.0'
ruby '2.1.1'

gem 'rails', '4.0.5'
gem 'rails', '4.1.6'
gem 'pg'
gem 'pg_search'
gem 'sass-rails', '~> 4.0.3'
Expand Down Expand Up @@ -29,6 +29,10 @@ gem 'grape-swagger'
gem 'grape-kaminari'
gem 'kaminari'

# Bugsnag sends bug alerts caught in production.
# It's free for open source projects.
gem 'bugsnag'

group :development, :test do
gem 'rspec-rails', '~> 3.0.0.beta2'
gem "factory_girl_rails", "~> 4.0"
Expand Down
Loading