Skip to content

Commit

Permalink
Directly require core_ext for String#strip_heredoc (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom G authored and lizdeika committed Dec 3, 2019
1 parent 00a6f89 commit 4618afc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gemfiles/activerecord_4.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ gem "activerecord", "~> 4.2.0"
platforms :ruby do
gem "mysql2", "< 0.5"
gem "pg", "~> 0.21"
gem "sqlite3", "~> 1.3.13"
gem "sqlite3", "~> 1.3", "< 1.4"
end

platforms :jruby do
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/activerecord_5.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ gem "activerecord", "~> 5.0.0"
platforms :ruby do
gem "mysql2"
gem "pg"
gem "sqlite3", "~> 1.3.13"
gem "sqlite3", "~> 1.3", "< 1.4"
end

platforms :jruby do
Expand Down
1 change: 1 addition & 0 deletions lib/closure_tree.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require 'active_record'
require 'active_support/core_ext/string/strip'

module ClosureTree
extend ActiveSupport::Autoload
Expand Down

0 comments on commit 4618afc

Please sign in to comment.