meteor 0.9.7.5 → 0.9.8
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 +7 -0
- data/.gitignore +7 -0
- data/ChangeLog +4 -0
- data/Gemfile +4 -0
- data/README.md +37 -0
- data/Rakefile +4 -4
- data/demo/demo_html.rb +133 -0
- data/demo/demo_html5.rb +102 -0
- data/demo/demo_xhtml.rb +102 -0
- data/demo/demo_xhtml5.rb +107 -0
- data/demo/demo_xml.rb +123 -0
- data/demo/sample.html +40 -0
- data/demo/sample.xml +50 -0
- data/demo/sample_5.html +32 -0
- data/demo/sample_x.html +33 -0
- data/demo/sample_x5.html +33 -0
- data/lib/meteor.rb +1207 -1407
- data/meteor.gemspec +25 -0
- metadata +52 -30
- data/README +0 -30
data/meteor.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'meteor'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = %q{meteor}
|
8
|
+
spec.version = Meteor::VERSION
|
9
|
+
spec.authors = ["Yasumasa Ashida"]
|
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}
|
13
|
+
spec.homepage = %q{https://github.com/asip/meteor}
|
14
|
+
spec.license = 'LGPLv2.1'
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features|demo)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
#spec.add_development_dependency "rake"
|
23
|
+
spec.has_rdoc = 'yard'
|
24
|
+
|
25
|
+
end
|
metadata
CHANGED
@@ -1,67 +1,89 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: meteor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
5
|
-
prerelease:
|
4
|
+
version: 0.9.8
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Yasumasa Ashida
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
13
|
-
dependencies:
|
11
|
+
date: 2014-01-07 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
14
27
|
description: A lightweight (X)HTML(5) & XML parser
|
15
28
|
email: ys.ashida@gmail.com
|
16
29
|
executables: []
|
17
30
|
extensions: []
|
18
|
-
extra_rdoc_files:
|
19
|
-
- README
|
20
|
-
- ChangeLog
|
31
|
+
extra_rdoc_files: []
|
21
32
|
files:
|
22
|
-
-
|
33
|
+
- ".gitignore"
|
23
34
|
- ChangeLog
|
35
|
+
- Gemfile
|
36
|
+
- README.md
|
24
37
|
- Rakefile
|
38
|
+
- demo/demo_html.rb
|
39
|
+
- demo/demo_html5.rb
|
40
|
+
- demo/demo_xhtml.rb
|
41
|
+
- demo/demo_xhtml5.rb
|
42
|
+
- demo/demo_xml.rb
|
43
|
+
- demo/sample.html
|
44
|
+
- demo/sample.xml
|
45
|
+
- demo/sample_5.html
|
46
|
+
- demo/sample_x.html
|
47
|
+
- demo/sample_x5.html
|
48
|
+
- lib/meteor.rb
|
49
|
+
- meteor.gemspec
|
25
50
|
- test/meteor_test.rb
|
26
51
|
- test/test_helper.rb
|
27
|
-
- lib/meteor.rb
|
28
52
|
homepage: https://github.com/asip/meteor
|
29
53
|
licenses:
|
30
54
|
- LGPLv2.1
|
55
|
+
metadata: {}
|
31
56
|
post_install_message:
|
32
|
-
rdoc_options:
|
33
|
-
- --title
|
34
|
-
- meteor documentation
|
35
|
-
- --charset
|
36
|
-
- utf-8
|
37
|
-
- --opname
|
38
|
-
- index.html
|
39
|
-
- --line-numbers
|
40
|
-
- --main
|
41
|
-
- README
|
42
|
-
- --inline-source
|
43
|
-
- --exclude
|
44
|
-
- ^(examples|extras)/
|
57
|
+
rdoc_options: []
|
45
58
|
require_paths:
|
46
59
|
- lib
|
47
60
|
required_ruby_version: !ruby/object:Gem::Requirement
|
48
|
-
none: false
|
49
61
|
requirements:
|
50
|
-
- -
|
62
|
+
- - ">="
|
51
63
|
- !ruby/object:Gem::Version
|
52
64
|
version: '0'
|
53
65
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
54
|
-
none: false
|
55
66
|
requirements:
|
56
|
-
- -
|
67
|
+
- - ">="
|
57
68
|
- !ruby/object:Gem::Version
|
58
69
|
version: '0'
|
59
70
|
requirements: []
|
60
|
-
rubyforge_project:
|
61
|
-
rubygems_version:
|
71
|
+
rubyforge_project:
|
72
|
+
rubygems_version: 2.2.0
|
62
73
|
signing_key:
|
63
|
-
specification_version:
|
74
|
+
specification_version: 4
|
64
75
|
summary: A lightweight (X)HTML(5) & XML parser
|
65
76
|
test_files:
|
77
|
+
- demo/demo_html.rb
|
78
|
+
- demo/demo_html5.rb
|
79
|
+
- demo/demo_xhtml.rb
|
80
|
+
- demo/demo_xhtml5.rb
|
81
|
+
- demo/demo_xml.rb
|
82
|
+
- demo/sample.html
|
83
|
+
- demo/sample.xml
|
84
|
+
- demo/sample_5.html
|
85
|
+
- demo/sample_x.html
|
86
|
+
- demo/sample_x5.html
|
66
87
|
- test/meteor_test.rb
|
67
|
-
|
88
|
+
- test/test_helper.rb
|
89
|
+
has_rdoc: yard
|
data/README
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
|
2
|
-
= meteor - A lightweight (X)HTML & XML Parser
|
3
|
-
|
4
|
-
by Yasumasa Ashida<ys.ashida@gmail.com>
|
5
|
-
|
6
|
-
== Description
|
7
|
-
|
8
|
-
|
9
|
-
== Installation
|
10
|
-
|
11
|
-
=== Archive Installation
|
12
|
-
|
13
|
-
rake install
|
14
|
-
|
15
|
-
=== Gem Installation
|
16
|
-
|
17
|
-
gem install meteor
|
18
|
-
|
19
|
-
|
20
|
-
== Features/Problems
|
21
|
-
|
22
|
-
|
23
|
-
== Synopsis
|
24
|
-
|
25
|
-
|
26
|
-
== Copyright
|
27
|
-
|
28
|
-
Author:: Yasumasa Ashida <ys.ashida@gmail.com>
|
29
|
-
Copyright:: Copyright (c) 2008-2011 asip
|
30
|
-
License:: LGPL V2.1
|