Skip to content

Commit

Permalink
Test rails 4.1 beta
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoyne authored and cbeer committed Feb 18, 2014
1 parent f582aa2 commit 6360980
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ before_install:
gemfile:
- gemfiles/rails3.gemfile
- gemfiles/rails4.gemfile
- gemfiles/rails4.1.gemfile

notifications:
irc: "irc.freenode.org#blacklight"
Expand Down
23 changes: 23 additions & 0 deletions gemfiles/rails4.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
source 'http://rubygems.org'

# Please see blacklight.gemspec for dependency information.
gemspec :path=>"../"

gem 'rails', '~> 4.1.0.rc1'

gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby

group :test do
gem 'simplecov', require: false
gem 'coveralls', require: false
gem 'devise'
gem 'devise-guests'
gem "bootstrap-sass"
gem 'turbolinks'
gem 'poltergeist'
end

f = File.expand_path(File.dirname(__FILE__) + '/../spec/test_app_templates/Gemfile.extra')
if File.exists?(f)
eval File.read(f), nil, f
end

0 comments on commit 6360980

Please sign in to comment.