Skip to content

Commit 9ba8cb7

Browse files
committed
Fix master tests, use latest arel
1 parent 2ce3f36 commit 9ba8cb7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ source "https://rubygems.org"
44
gemspec
55

66
gem "rails", github: "rails/rails"
7+
gem "arel", github: "rails/arel"

test/test_helper.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
# If developing against local dependencies, this code will ensure they get picked up
1212
# in the project fixtures that have their own bundle environment
1313
$gem_options = {}
14-
possible_dev_dependencies = %w(sass-rails sass rails actionpack railties sprockets journey sprockets-rails activerecord-deprecated_finders)
14+
possible_dev_dependencies = %w(sass-rails sass rails arel actionpack railties sprockets journey sprockets-rails activerecord-deprecated_finders)
1515
Bundler.load.specs.each do |s|
1616
if possible_dev_dependencies.include?(s.name)
1717
gem_path = s.full_gem_path
18-
gem_options = { version: s.version}
18+
gem_options = { version: s.version }
1919
gem_options[:path] = gem_path if File.exists?("#{gem_path}/#{s.name}.gemspec")
2020
$gem_options[s.name] = gem_options
2121
end

0 commit comments

Comments
 (0)