Skip to content
This repository has been archived by the owner on May 21, 2019. It is now read-only.

Commit

Permalink
Merge pull request #4 from hidakatsuya/requires_latest_rails_and_ruby
Browse files Browse the repository at this point in the history
Now works AR 4.2, 5.0 on Ruby 2.3, 2.4, and AR 5.0 on Ruby 2.3
  • Loading branch information
hidakatsuya committed Jan 8, 2017
2 parents 035d402 + c448cc1 commit ffe2c09
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
15 changes: 11 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,19 @@ language: ruby
sudo: false

rvm:
- 2.0
- 2.1
- 2.2
- 2.3.3
- 2.4.0

gemfile:
- test/gemfiles/Gemfile-AR4.1
- test/gemfiles/Gemfile-AR4.2
- test/gemfiles/Gemfile-AR5.0

matrix:
allow_failures:
- rvm: 2.4.0

script: rake test

branches:
only:
- master
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ end

## Supported versions

* Ruby 2.0, 2.1, 2,2
* ActiveRecord 4.1, 4.2
* Ruby 2.3 + ActiveRecord 4.2, 5.0
* Ruby 2.4 + ActiveRecord 5.0

## Install

Expand Down
6 changes: 3 additions & 3 deletions fixture_group.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ Gem::Specification.new do |s|
'that make possible to create fixtures group'
s.license = 'MIT'
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.0'
s.required_ruby_version = '>= 2.3'

s.files = `git ls-files`.split($\)
s.test_files = s.files.grep %r{^test/}
s.require_paths = ['lib']

s.add_dependency 'activerecord', '>= 4.1'
s.add_dependency 'activesupport', '>= 4.1'
s.add_dependency 'activerecord', '>= 4.2'
s.add_dependency 'activesupport', '>= 4.2'
s.add_development_dependency 'rake', '>= 10.0'
s.add_development_dependency 'sqlite3', '>= 1.3'
end
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ source 'https://rubygems.org'

gem 'rake', '>= 10.0'
gem 'sqlite3', '>= 1.3'
gem 'activerecord', '~> 4.1'
gem 'activerecord', '~> 5.0'

0 comments on commit ffe2c09

Please sign in to comment.