nokogiri-happymapper 0.8.0 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -18,7 +18,7 @@ end
18
18
 
19
19
  require 'rspec'
20
20
 
21
- require 'happymapper'
21
+ require 'nokogiri-happymapper'
22
22
 
23
23
  def fixture_file(filename)
24
24
  File.read(File.dirname(__FILE__) + "/fixtures/#{filename}")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nokogiri-happymapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Damien Le Berrigaud
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2018-08-28 00:00:00.000000000 Z
17
+ date: 2019-03-18 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: nokogiri
@@ -93,6 +93,7 @@ files:
93
93
  - lib/happymapper/supported_types.rb
94
94
  - lib/happymapper/text_node.rb
95
95
  - lib/happymapper/version.rb
96
+ - lib/nokogiri-happymapper.rb
96
97
  - spec/features/after_parse_callbacks_spec.rb
97
98
  - spec/features/attribute_default_value_spec.rb
98
99
  - spec/features/attributes_spec.rb
@@ -137,9 +138,7 @@ files:
137
138
  - spec/fixtures/wrapper.xml
138
139
  - spec/happymapper/anonymous_mapper_spec.rb
139
140
  - spec/happymapper/attribute_spec.rb
140
- - spec/happymapper/element_spec.rb
141
141
  - spec/happymapper/item_spec.rb
142
- - spec/happymapper/text_node_spec.rb
143
142
  - spec/happymapper_spec.rb
144
143
  - spec/spec_helper.rb
145
144
  homepage: http://github.com/mvz/happymapper
@@ -161,8 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
161
160
  - !ruby/object:Gem::Version
162
161
  version: '0'
163
162
  requirements: []
164
- rubyforge_project:
165
- rubygems_version: 2.7.6
163
+ rubygems_version: 3.0.3
166
164
  signing_key:
167
165
  specification_version: 4
168
166
  summary: Provides a simple way to map XML to Ruby Objects and back again.
@@ -211,8 +209,6 @@ test_files:
211
209
  - spec/fixtures/wrapper.xml
212
210
  - spec/happymapper/anonymous_mapper_spec.rb
213
211
  - spec/happymapper/attribute_spec.rb
214
- - spec/happymapper/element_spec.rb
215
212
  - spec/happymapper/item_spec.rb
216
- - spec/happymapper/text_node_spec.rb
217
213
  - spec/happymapper_spec.rb
218
214
  - spec/spec_helper.rb
@@ -1,11 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- describe HappyMapper::Element do
6
- describe 'initialization' do
7
- before do
8
- @attr = described_class.new(:foo, String)
9
- end
10
- end
11
- end
@@ -1,11 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- describe HappyMapper::Attribute do
6
- describe 'initialization' do
7
- before do
8
- @attr = HappyMapper::TextNode.new(:foo, String)
9
- end
10
- end
11
- end