Skip to content

Commit df26d88

Browse files
committed
Merge pull request #85 from mojavelinux/xml-mini
use xml_mini extracted from activesupport
2 parents dd72f9a + 3a55c9e commit df26d88

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

html-pipeline.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Gem::Specification.new do |gem|
2121
gem.add_dependency "sanitize", RUBY_VERSION < "1.9.2" ? [">= 2", "< 2.0.4"] : "~> 2.0"
2222
gem.add_dependency "rinku", "~> 1.7"
2323
gem.add_dependency "escape_utils", "~> 0.3"
24+
gem.add_dependency "activesupport", RUBY_VERSION < "1.9.3" ? [">= 2", "< 4"] : ">= 2"
2425

25-
gem.add_development_dependency "activesupport", RUBY_VERSION < "1.9.3" ? [">= 2", "< 4"] : ">= 2"
2626
gem.add_development_dependency "github-linguist", "~> 2.6.2"
2727
end

test/test_helper.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
require 'html/pipeline'
33
require 'test/unit'
44

5+
require 'active_support/core_ext/string'
56
require 'active_support/core_ext/object/try'
67

78
module TestHelpers
@@ -35,4 +36,4 @@ def assert_equal_html(expected, actual)
3536
end
3637
end
3738

38-
Test::Unit::TestCase.send(:include, TestHelpers)
39+
Test::Unit::TestCase.send(:include, TestHelpers)

0 commit comments

Comments
 (0)