We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5397203 commit 6074cdeCopy full SHA for 6074cde
.travis.yml
@@ -1,4 +1,9 @@
1
script: bundle exec rspec spec
2
+env:
3
+ matrix:
4
+ - RAILS=4.0.13
5
+ - RAILS=4.1.5
6
+ - RAILS=4.2.6
7
rvm:
8
- 1.9.3
9
- 2.0.0
Gemfile
@@ -3,8 +3,9 @@ source 'https://rubygems.org'
# Specify your gem's dependencies in active_admin_importable.gemspec
gemspec
group :test do
+ default_rails_version = '4.2.6'
gem 'sprockets-rails', '2.3.3'
- gem 'rails', '4.2.0'
+ gem 'rails', "#{ENV['RAILS'] || default_rails_version}"
gem 'rspec-rails'
10
gem 'activeadmin', github: 'activeadmin' , ref: 'd787029e5523be2eb2ed99816eb0cecca2b72862'
11
gem 'coveralls', require: false # Test coverage website. Go to https://coveralls.io
0 commit comments