Skip to content

Commit 78c65c5

Browse files
JonRowepirj
authored andcommitted
Ensure files are 1.8.7 compatible for other gem builds
1 parent ccc82fe commit 78c65c5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Gemfile-rails-dependencies

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ else
4545
end
4646

4747
if version.gsub(/[^\d\.]/,'').to_f >= 6.0
48-
gem "activerecord-jdbcsqlite3-adapter", "~> 60.0.rc1", platforms: [:jruby]
48+
gem "activerecord-jdbcsqlite3-adapter", "~> 60.0.rc1", :platforms => [:jruby]
4949
else
50-
gem 'activerecord-jdbcsqlite3-adapter', platforms: [:jruby]
50+
gem 'activerecord-jdbcsqlite3-adapter', :platforms => [:jruby]
5151
end
5252
end
5353

spec/sanity_check_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def with_clean_env
3434
end
3535
end
3636

37-
it "passes when libraries are required", unless: RSpec::Support::Ruby.jruby? do
37+
it "passes when libraries are required", :unless => RSpec::Support::Ruby.jruby? do
3838
script = tmp_root.join("pass_sanity_check")
3939
File.open(script, "w") do |f|
4040
f.write <<-EOF.gsub(/^\s+\|/, '')

0 commit comments

Comments
 (0)