rails-dom-testing 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ecf036ed0fe5b943276e875fe22bdbd0cd892393
4
- data.tar.gz: f11502f55645a79cade3028f47d0b83ae19db6c4
3
+ metadata.gz: 1842469f0b76af06327ec4e2fccfcf90072628f0
4
+ data.tar.gz: 413a881657051c8c41cb5f72fa18f709b471fa82
5
5
  SHA512:
6
- metadata.gz: e4defef0a38057db0d5f8b0864cfb81aa4c25f6af1d4f392c03287689d8c3a7e9d13e00eb796d3c48d7f23e52028edf8cf1f74f995ff588838222d84a6ece940
7
- data.tar.gz: 31a3ccadafc9a27f12024a69b16f1cac994780f64ba43c1cf6932c4824f88a24ceba1e314904c131b8c103e3094ccb2329c7c7bb0c6b13f2967e0c3ddd6f477b
6
+ metadata.gz: e02a2b88d647aca01978d1145d822d7b8f258cdbe0ed3e394020be194ffac9d3e122599f5aa500cca4b452efd0176a7cbafe8a22506ab8043f675c526192dbb5
7
+ data.tar.gz: c7b4be94cd7c10bb8137f153da564c3117144a146cc247ec88120053eb845ae5a7b608b3bf5376331b1a9101735910692f13fa0a29bdcea234e187435ff7d8ca
@@ -0,0 +1,23 @@
1
+ Copyright (c) 2013-2015 Kasper Timm Hansen
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
+
@@ -1,7 +1,7 @@
1
1
  module Rails
2
2
  module Dom
3
3
  module Testing
4
- VERSION = "2.0.1"
4
+ VERSION = "2.0.2"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-dom-testing
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafael Mendonça França
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-06-01 00:00:00.000000000 Z
12
+ date: 2016-12-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: nokogiri
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - "~>"
19
19
  - !ruby/object:Gem::Version
20
- version: 1.6.0
20
+ version: '1.6'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - "~>"
26
26
  - !ruby/object:Gem::Version
27
- version: 1.6.0
27
+ version: '1.6'
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: activesupport
30
30
  requirement: !ruby/object:Gem::Requirement
@@ -96,6 +96,7 @@ executables: []
96
96
  extensions: []
97
97
  extra_rdoc_files: []
98
98
  files:
99
+ - MIT-LICENSE
99
100
  - README.md
100
101
  - lib/rails-dom-testing.rb
101
102
  - lib/rails/dom/testing/assertions.rb
@@ -128,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
128
129
  version: '0'
129
130
  requirements: []
130
131
  rubyforge_project:
131
- rubygems_version: 2.5.1
132
+ rubygems_version: 2.6.8
132
133
  signing_key:
133
134
  specification_version: 4
134
135
  summary: Dom and Selector assertions for Rails applications
OSZAR »