Skip to content

Commit

Permalink
Merge 330c43d into 7ea8b72
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Smith committed Apr 26, 2018
2 parents 7ea8b72 + 330c43d commit ddec628
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 17 deletions.
16 changes: 8 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
language: ruby
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- 2.2.10
- 2.3.7
- 2.4.4
- 2.5.1
- ruby-head
- jruby-head
env:
- "ACTIVE_RECORD_VERSION=4.2.0"
- "ACTIVE_RECORD_VERSION=~5.0.0"
- "ACTIVE_RECORD_VERSION=~5.1.0"
- "ACTIVE_RECORD_VERSION=4.2"
- "ACTIVE_RECORD_VERSION=~5.0"
- "ACTIVE_RECORD_VERSION=~5.1"
- "ACTIVE_RECORD_VERSION=~5.2"
- "ACTIVE_RECORD_VERSION=master"
matrix:
allow_failures:
- env: "ACTIVE_RECORD_VERSION=master"
- rvm: ruby-head
- rvm: jruby-head
sudo: false
8 changes: 2 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ active_record_version = case ENV['ACTIVE_RECORD_VERSION'] || 'default'
when 'master'
{ git: 'https://github.com/rails/rails.git' }
when 'default'
'~> 5.1'
'~> 5.2'
else
"~> #{ENV['ACTIVE_RECORD_VERSION']}"
end
Expand All @@ -19,13 +19,9 @@ group :test do
end

group :development do
gem 'activerecord', '>= 4.2.0', '< 5.2'
gem 'activerecord', '>= 4.2.0', '< 6.0'

platforms :ruby do
gem 'sqlite3'
end

platforms :jruby do
gem "activerecord-jdbcsqlite3-adapter"
end
end
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '2'
services:
lib:
image: sticksnleaves/ruby-project:2.4
image: sticksnleaves/ruby-project:2.5
command: rspec
volumes:
- .:/usr/src/app
Expand Down
2 changes: 1 addition & 1 deletion lib/soulless/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Soulless
VERSION = '1.2.1'
VERSION = '1.2.2'
end
2 changes: 1 addition & 1 deletion soulless.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency 'activemodel', '>= 4.2.0', '< 5.2'
spec.add_dependency 'activemodel', '>= 4.2.0', '< 6.0'
spec.add_dependency 'virtus' , '~> 1.0'

spec.add_development_dependency 'bundler', '>= 0'
Expand Down

0 comments on commit ddec628

Please sign in to comment.