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 seuros committed Sep 13, 2019
1 parent 68d6dff commit 586b67d
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
Expand Up @@ -7,7 +7,7 @@ gem "activerecord", "~> 4.2.0"
platforms :ruby do platforms :ruby do
gem "mysql2", "< 0.5" gem "mysql2", "< 0.5"
gem "pg", "~> 0.21" gem "pg", "~> 0.21"
gem "sqlite3", "~> 1.3.13" gem "sqlite3", "~> 1.3", "< 1.4"
end end


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


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


module ClosureTree module ClosureTree
extend ActiveSupport::Autoload extend ActiveSupport::Autoload
Expand Down

0 comments on commit 586b67d

Please sign in to comment.