Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

Commit

Permalink
Run tests using Rails 4.1 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
nextmat committed Jul 1, 2014
1 parent 585572c commit 70c6a92
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Gemfile
@@ -1,7 +1,7 @@
source "https://rubygems.org"
gemspec

rails_version = ENV["RAILS_VERSION"] || '3.2'
rails_version = ENV["RAILS_VERSION"] || '4.1'
if rails_version == "master"
rails = {github: "rails/rails"}
else
Expand All @@ -15,17 +15,17 @@ gem "activesupport", rails
gem 'pry'

# mocks
gem 'mocha', :require => false
gem 'mocha', require: false

# benchmarking
gem 'benchmark_suite'

platforms :rbx do
gem 'rubysl', '~> 2.0'
gem 'racc'
gem 'rubysl-test-unit'
gem 'rubinius-developer_tools'
end
# platforms :rbx do
# gem 'rubysl', '~> 2.0'
# gem 'racc'
# gem 'rubysl-test-unit'
# gem 'rubinius-developer_tools'
# end

# servers for testing
# gem 'thin'
Expand Down

0 comments on commit 70c6a92

Please sign in to comment.