test_xml 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 170f3a3dbcbac8bf470d5502cf240c9c1b24313b
4
- data.tar.gz: 3532c7033ca564336d94d06e3b1fd5ed5637ee56
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NWQ5ODAwZDVmNmY5N2NjYjYwNzliNmZmYTk2MDNhMTBmOTU4MTNhYQ==
5
+ data.tar.gz: !binary |-
6
+ NzRjMTc4YzhjMGUwMjU1NmJhMGRhZTJmMGFkYjc1NzI1MjYyMmYxNw==
5
7
  SHA512:
6
- metadata.gz: 935649d551777890cdfe7406ae93012785768da1746e6d0b2b4da2d8b6445d78b15ec69afffb137d5f28a2c0907ba42080aee04b7522025ce3bb0ef5734fed97
7
- data.tar.gz: 85bf8823b75aa6701ccc5eabf11c27e37ed8014d667ceb9b34ab594cbe28786338c4406c0a455d5a4190fbc0e55a70622e218057f971659d7e29999ac42c8fc2
8
+ metadata.gz: !binary |-
9
+ MjA0ZGU5MzM2MGI4Mjg1ZjI5MGNlOTk3MTk5YWZjZDZmYzZmZmUzOTZiNmQ0
10
+ NDEwMTQyNWQ4NjdkOGUwMjNjNjFkM2I3MjllY2JiZDkyNzlmYzAxYzAwODZj
11
+ YTYxNjZlMzRmMjQ0NGNkMDdjMTRiM2Y1ZDdjNTlkMmQzOGUwOTc=
12
+ data.tar.gz: !binary |-
13
+ MTg0ZjVkY2FhYzU0NTIyYmFjZmM4N2Y3NzZiZDBiZGI1NzI0ODc5NDg2Njdm
14
+ MTE4NjRhYmUxYWRkNzA0OWI5ZDJmYTNmZjAwMDljMjNiMDE3YTkzODViZjFi
15
+ NGVlMGQ5MmI3NzkyM2E0M2JkMTlmMmNjMDY2NWI0NDcwNzgwMzk=
data/CHANGES.md CHANGED
@@ -1,4 +1,9 @@
1
- # 0.1.7 (Unreleased)
1
+ # 0.1.8
2
+
3
+ * Add license file and update gemspec with license name
4
+ * Add test-unit to development dependencies, removed rspec-core and added rspec
5
+
6
+ # 0.1.7
2
7
 
3
8
  * Add diff output to xml_equal
4
9
  * Add support for RSpec 3
data/Gemfile CHANGED
@@ -1,8 +1,3 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
-
5
- group :test do
6
- gem 'rspec', ">= 2.2"
7
- gem 'rdoc'
8
- end
data/LICENSE ADDED
@@ -0,0 +1,8 @@
1
+ he MIT License (MIT)
2
+ Copyright (c) 2010 Pavel Gabriel
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5
+
6
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7
+
8
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile CHANGED
@@ -1,6 +1,4 @@
1
- require 'bundler'
2
- Bundler::GemHelper.install_tasks
3
- Bundler.setup
1
+ require 'bundler/gem_tasks'
4
2
 
5
3
  require 'rake/testtask'
6
4
  require 'rspec/core/rake_task'
@@ -1,3 +1,3 @@
1
1
  module TestXml
2
- VERSION = "0.1.7"
2
+ VERSION = "0.1.8"
3
3
  end
@@ -15,15 +15,17 @@ Gem::Specification.new do |s|
15
15
  s.has_rdoc = true
16
16
  s.extra_rdoc_files = ['README.rdoc']
17
17
  s.rdoc_options = ['--main', 'README.rdoc']
18
-
18
+
19
19
  s.files = `git ls-files`.split("\n")
20
20
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
21
-
22
- s.rubygems_version = "1.3.5"
23
- s.add_dependency("diffy", ["~> 3.0"])
24
- s.add_dependency("nokogiri", [">= 1.3.2"])
25
-
21
+
22
+ s.license = "MIT"
23
+
24
+ s.add_dependency("diffy", "~> 3.0")
25
+ s.add_dependency("nokogiri", ">= 1.3.2")
26
+
26
27
  s.add_development_dependency("rake")
27
28
  s.add_development_dependency("rdoc")
28
- s.add_development_dependency("rspec-core", [">= 2.2"])
29
+ s.add_development_dependency("test-unit", "~> 3.1")
30
+ s.add_development_dependency("rspec", ">= 2.2")
29
31
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: test_xml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Gabriel
@@ -9,80 +9,94 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-10-23 00:00:00.000000000 Z
12
+ date: 2016-11-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: diffy
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - "~>"
18
+ - - ~>
19
19
  - !ruby/object:Gem::Version
20
20
  version: '3.0'
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
27
  version: '3.0'
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: nokogiri
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - ">="
32
+ - - ! '>='
33
33
  - !ruby/object:Gem::Version
34
34
  version: 1.3.2
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - ">="
39
+ - - ! '>='
40
40
  - !ruby/object:Gem::Version
41
41
  version: 1.3.2
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: rake
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
- - - ">="
46
+ - - ! '>='
47
47
  - !ruby/object:Gem::Version
48
48
  version: '0'
49
49
  type: :development
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - ">="
53
+ - - ! '>='
54
54
  - !ruby/object:Gem::Version
55
55
  version: '0'
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: rdoc
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
- - - ">="
60
+ - - ! '>='
61
61
  - !ruby/object:Gem::Version
62
62
  version: '0'
63
63
  type: :development
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - ">="
67
+ - - ! '>='
68
68
  - !ruby/object:Gem::Version
69
69
  version: '0'
70
70
  - !ruby/object:Gem::Dependency
71
- name: rspec-core
71
+ name: test-unit
72
72
  requirement: !ruby/object:Gem::Requirement
73
73
  requirements:
74
- - - ">="
74
+ - - ~>
75
+ - !ruby/object:Gem::Version
76
+ version: '3.1'
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ~>
82
+ - !ruby/object:Gem::Version
83
+ version: '3.1'
84
+ - !ruby/object:Gem::Dependency
85
+ name: rspec
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ! '>='
75
89
  - !ruby/object:Gem::Version
76
90
  version: '2.2'
77
91
  type: :development
78
92
  prerelease: false
79
93
  version_requirements: !ruby/object:Gem::Requirement
80
94
  requirements:
81
- - - ">="
95
+ - - ! '>='
82
96
  - !ruby/object:Gem::Version
83
97
  version: '2.2'
84
- description: 'Test your XML with Test::Unit, MiniTest, RSpec, or Cucumber using handy
85
- assertions like #assert_xml_equal or #assert_xml_structure_contain.'
98
+ description: ! 'Test your XML with Test::Unit, MiniTest, RSpec, or Cucumber using
99
+ handy assertions like #assert_xml_equal or #assert_xml_structure_contain.'
86
100
  email:
87
101
  - alovak@gmail.com
88
102
  - apotonick@gmail.com
@@ -91,9 +105,10 @@ extensions: []
91
105
  extra_rdoc_files:
92
106
  - README.rdoc
93
107
  files:
94
- - ".gitignore"
108
+ - .gitignore
95
109
  - CHANGES.md
96
110
  - Gemfile
111
+ - LICENSE
97
112
  - README.rdoc
98
113
  - Rakefile
99
114
  - lib/test_xml.rb
@@ -115,27 +130,28 @@ files:
115
130
  - test/test_unit/test_assertions.rb
116
131
  - test_xml.gemspec
117
132
  homepage: http://github.com/alovak/test_xml
118
- licenses: []
133
+ licenses:
134
+ - MIT
119
135
  metadata: {}
120
136
  post_install_message:
121
137
  rdoc_options:
122
- - "--main"
138
+ - --main
123
139
  - README.rdoc
124
140
  require_paths:
125
141
  - lib
126
142
  required_ruby_version: !ruby/object:Gem::Requirement
127
143
  requirements:
128
- - - ">="
144
+ - - ! '>='
129
145
  - !ruby/object:Gem::Version
130
146
  version: '0'
131
147
  required_rubygems_version: !ruby/object:Gem::Requirement
132
148
  requirements:
133
- - - ">="
149
+ - - ! '>='
134
150
  - !ruby/object:Gem::Version
135
151
  version: '0'
136
152
  requirements: []
137
153
  rubyforge_project:
138
- rubygems_version: 2.2.2
154
+ rubygems_version: 2.6.8
139
155
  signing_key:
140
156
  specification_version: 4
141
157
  summary: Test your XML with Test::Unit, MiniTest, RSpec, or Cucumber.