Skip to content

Commit ed0bf96

Browse files
Tom Gmanxingxing
Tom G
authored andcommitted
Directly require core_ext for String#strip_heredoc (ClosureTree#350)
1 parent 2444fe2 commit ed0bf96

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

gemfiles/activerecord_4.2.gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ gem "activerecord", "~> 4.2.0"
77
platforms :ruby do
88
gem "mysql2", "< 0.5"
99
gem "pg", "~> 0.21"
10-
gem "sqlite3", "~> 1.3.13"
10+
gem "sqlite3", "~> 1.3", "< 1.4"
1111
end
1212

1313
platforms :jruby do

gemfiles/activerecord_5.0.gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ gem "activerecord", "~> 5.0.0"
77
platforms :ruby do
88
gem "mysql2"
99
gem "pg"
10-
gem "sqlite3", "~> 1.3.13"
10+
gem "sqlite3", "~> 1.3", "< 1.4"
1111
end
1212

1313
platforms :jruby do

lib/closure_tree.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
require 'active_record'
2+
require 'active_support/core_ext/string/strip'
23

34
module ClosureTree
45
extend ActiveSupport::Autoload

0 commit comments

Comments
 (0)