mirror of
https://github.com/activerecord-hackery/ransack.git
synced 2022-11-09 13:47:45 -05:00
Update Gemfile, gemspec and travis-ci
Tests should be passing now.
This commit is contained in:
parent
7abfe71d69
commit
776e0de64e
3 changed files with 10 additions and 6 deletions
|
@ -4,9 +4,9 @@ rvm:
|
|||
- 2.1.0
|
||||
|
||||
env:
|
||||
- RAILS=v4.1.0.beta1 DB=sqlite3
|
||||
- RAILS=v4.1.0.beta1 DB=mysql
|
||||
- RAILS=v4.1.0.beta1 DB=postgres
|
||||
- RAILS=master DB=sqlite3
|
||||
- RAILS=master DB=mysql
|
||||
- RAILS=master DB=postgres
|
||||
|
||||
|
||||
before_script:
|
||||
|
|
8
Gemfile
8
Gemfile
|
@ -3,9 +3,13 @@ gemspec
|
|||
|
||||
gem 'rake'
|
||||
|
||||
rails = ENV['RAILS'] || '4-0-stable'
|
||||
rails = ENV['RAILS'] || 'master'
|
||||
|
||||
gem 'arel'
|
||||
gem 'arel', '~> 5.0.0'
|
||||
|
||||
gem 'polyamorous',
|
||||
github: 'activerecord-hackery/polyamorous',
|
||||
branch: 'rails-4.1'
|
||||
|
||||
case rails
|
||||
when /\// # A path
|
||||
|
|
|
@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|||
s.add_dependency 'activerecord', '>= 4.0'
|
||||
s.add_dependency 'activesupport', '>= 4.0'
|
||||
s.add_dependency 'i18n'
|
||||
s.add_dependency 'polyamorous', '~> 0.6.0'
|
||||
# s.add_dependency 'polyamorous', '~> 0.6.0'
|
||||
s.add_development_dependency 'rspec', '~> 2.8.0'
|
||||
s.add_development_dependency 'machinist', '~> 1.0.6'
|
||||
s.add_development_dependency 'faker', '~> 0.9.5'
|
||||
|
|
Loading…
Reference in a new issue