Skip to content

Commit 007e160

Browse files
committed
Merge pull request #46 from kaspth/2.0
Remove `assert_tag` and bump to 2.0
2 parents a64f305 + a7eacb8 commit 007e160

File tree

6 files changed

+3
-378
lines changed

6 files changed

+3
-378
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ rvm:
55
- 2.0.0
66
- 2.1
77
- 2.2
8+
- 2.3.0
89
- jruby
910
- ruby-head
1011
matrix:

lib/rails/dom/testing/assertions.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@ module Testing
77
module Assertions
88
autoload :DomAssertions, 'rails/dom/testing/assertions/dom_assertions'
99
autoload :SelectorAssertions, 'rails/dom/testing/assertions/selector_assertions'
10-
autoload :TagAssertions, 'rails/dom/testing/assertions/tag_assertions'
1110

1211
extend ActiveSupport::Concern
1312

1413
include DomAssertions
1514
include SelectorAssertions
16-
include TagAssertions
1715
end
1816
end
1917
end

lib/rails/dom/testing/assertions/tag_assertions.rb

Lines changed: 0 additions & 155 deletions
This file was deleted.

lib/rails/dom/testing/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Rails
22
module Dom
33
module Testing
4-
VERSION = "1.0.7"
4+
VERSION = "2.0.0"
55
end
66
end
77
end

rails-dom-testing.gemspec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ Gem::Specification.new do |spec|
1818
spec.require_paths = ["lib"]
1919

2020
spec.add_dependency "nokogiri", "~> 1.6.0"
21-
spec.add_dependency "activesupport", ">= 4.2.0.beta", "< 5.0"
22-
spec.add_dependency "rails-deprecated_sanitizer", '>= 1.0.1'
21+
spec.add_dependency "activesupport", ">= 4.2.0", "< 6.0"
2322

2423
spec.add_development_dependency "bundler", "~> 1.3"
2524
spec.add_development_dependency "rake"

0 commit comments

Comments
 (0)