meteor 0.9.12 → 0.9.13

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.
data/meteor.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Meteor::VERSION
9
9
  spec.authors = ["Yasumasa Ashida"]
10
10
  spec.email = %q{ys.ashida@gmail.com}
11
- spec.description = %q{A lightweight (X)HTML(5) & XML parser}
12
- spec.summary = %q{A lightweight (X)HTML(5) & XML parser}
11
+ spec.description = %q{A lightweight (X)HTML & XML parser}
12
+ spec.summary = %q{A lightweight (X)HTML & XML parser}
13
13
  spec.homepage = %q{https://github.com/asip/meteor}
14
14
  spec.license = 'LGPL-2.1-only'
15
15
 
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
20
20
  spec.test_files = spec.files.grep(%r{^(test|spec|features|demo)/})
21
21
  spec.require_paths = ["lib"]
22
22
 
23
- spec.add_development_dependency "bundler", "~> 2.2"
23
+ spec.add_development_dependency "bundler", "~> 4.0.11"
24
24
  # spec.add_development_dependency "rake"
25
25
 
26
26
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meteor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.12
4
+ version: 0.9.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yasumasa Ashida
@@ -15,15 +15,15 @@ dependencies:
15
15
  requirements:
16
16
  - - "~>"
17
17
  - !ruby/object:Gem::Version
18
- version: '2.2'
18
+ version: 4.0.11
19
19
  type: :development
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - "~>"
24
24
  - !ruby/object:Gem::Version
25
- version: '2.2'
26
- description: A lightweight (X)HTML(5) & XML parser
25
+ version: 4.0.11
26
+ description: A lightweight (X)HTML & XML parser
27
27
  email: ys.ashida@gmail.com
28
28
  executables: []
29
29
  extensions: []
@@ -46,6 +46,21 @@ files:
46
46
  - demo/xhtml4.rb
47
47
  - demo/xml.rb
48
48
  - lib/meteor.rb
49
+ - lib/meteor/attribute.rb
50
+ - lib/meteor/attribute_map.rb
51
+ - lib/meteor/core/kernel.rb
52
+ - lib/meteor/core/util/pattern_cache.rb
53
+ - lib/meteor/element.rb
54
+ - lib/meteor/element_factory.rb
55
+ - lib/meteor/exception/no_such_element_exception.rb
56
+ - lib/meteor/ml/html/parser_impl.rb
57
+ - lib/meteor/ml/html4/parser_impl.rb
58
+ - lib/meteor/ml/xhtml/parser_impl.rb
59
+ - lib/meteor/ml/xhtml4/parser_impl.rb
60
+ - lib/meteor/ml/xml/parser_impl.rb
61
+ - lib/meteor/parser.rb
62
+ - lib/meteor/parser_factory.rb
63
+ - lib/meteor/root_element.rb
49
64
  - meteor.gemspec
50
65
  - test/meteor_test.rb
51
66
  - test/test_helper.rb
@@ -67,9 +82,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
67
82
  - !ruby/object:Gem::Version
68
83
  version: '0'
69
84
  requirements: []
70
- rubygems_version: 3.6.9
85
+ rubygems_version: 4.0.11
71
86
  specification_version: 4
72
- summary: A lightweight (X)HTML(5) & XML parser
87
+ summary: A lightweight (X)HTML & XML parser
73
88
  test_files:
74
89
  - demo/html.rb
75
90
  - demo/html4.rb