Skip to content

Commit

Permalink
testing against Rails 6 and Ruby 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
delonnewman committed Jan 21, 2021
1 parent 42b0849 commit 2f670b9
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 41 deletions.
73 changes: 36 additions & 37 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,71 +1,70 @@
PATH
remote: .
specs:
activerecord-setops (0.1.7)
activerecord-setops (1.0.0)

GEM
remote: https://rubygems.org/
specs:
activemodel (5.2.4.3)
activesupport (= 5.2.4.3)
activerecord (5.2.4.3)
activemodel (= 5.2.4.3)
activesupport (= 5.2.4.3)
arel (>= 9.0)
activesupport (5.2.4.3)
activemodel (6.1.1)
activesupport (= 6.1.1)
activerecord (6.1.1)
activemodel (= 6.1.1)
activesupport (= 6.1.1)
activesupport (6.1.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
arel (9.0.0)
concurrent-ruby (1.1.6)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
concurrent-ruby (1.1.8)
contracts (0.16.0)
contracts-gen (0.1.1)
contracts-gen (0.1.2)
contracts (~> 0.16.0)
faker (~> 1.9.6)
gen-test (~> 0.1.0)
diff-lcs (1.3)
diff-lcs (1.4.4)
faker (1.9.6)
i18n (>= 0.7)
gen-test (0.1.1)
gen-test (0.1.3)
faker (~> 1.9.6)
regexp-examples (~> 1.5.0)
i18n (1.8.2)
i18n (1.8.7)
concurrent-ruby (~> 1.0)
minitest (5.14.1)
rake (13.0.1)
minitest (5.14.3)
rake (13.0.3)
regexp-examples (1.5.1)
rspec (3.9.0)
rspec-core (~> 3.9.0)
rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.9.0)
rspec-core (3.9.1)
rspec-support (~> 3.9.1)
rspec-expectations (3.9.0)
rspec (3.10.0)
rspec-core (~> 3.10.0)
rspec-expectations (~> 3.10.0)
rspec-mocks (~> 3.10.0)
rspec-core (3.10.1)
rspec-support (~> 3.10.0)
rspec-expectations (3.10.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-mocks (3.9.1)
rspec-support (~> 3.10.0)
rspec-mocks (3.10.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-support (3.9.2)
rspec-support (~> 3.10.0)
rspec-support (3.10.1)
sqlite3 (1.4.2)
thread_safe (0.3.6)
tzinfo (1.2.7)
thread_safe (~> 0.1)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
zeitwerk (2.4.2)

PLATFORMS
ruby

DEPENDENCIES
activerecord (>= 5.2.4.3, < 6)
activerecord (>= 5.2)
activerecord-setops!
activesupport (>= 5.2.4.3, < 6)
bundler (~> 1.17)
activesupport (>= 5.2)
bundler (~> 2.1)
contracts-gen (~> 0.1.1)
gen-test (~> 0.1.1)
rake (~> 13.0)
rspec (~> 3.0)
sqlite3 (~> 1.4.2)

BUNDLED WITH
1.17.3
2.1.4
6 changes: 3 additions & 3 deletions activerecord-setops.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler", "~> 1.17"
spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "gen-test", "~> 0.1.1"
spec.add_development_dependency "contracts-gen", "~> 0.1.1"
spec.add_development_dependency "activerecord", [">= 5.2.4.3", "< 6"]
spec.add_development_dependency "activesupport", [">= 5.2.4.3", "< 6"]
spec.add_development_dependency "activerecord", [">= 5.2"]
spec.add_development_dependency "activesupport", [">= 5.2"]
spec.add_development_dependency "sqlite3", "~> 1.4.2"
end
2 changes: 1 addition & 1 deletion lib/active_record/setops/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module ActiveRecord
module Setops
VERSION = "0.1.7"
VERSION = "1.0.0"
end
end
Binary file modified spec/spec.db
Binary file not shown.

0 comments on commit 2f670b9

Please sign in to comment.