parsley-ruby 0.4.1 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +2 -1
- data/VERSION +1 -1
- data/parsley-ruby.gemspec +3 -2
- metadata +4 -3
data/Rakefile
CHANGED
@@ -11,7 +11,8 @@ begin
|
|
11
11
|
gem.homepage = "http://github.com/fizx/parsley-ruby"
|
12
12
|
gem.authors = ["Kyle Maxwell"]
|
13
13
|
gem.add_dependency("json", ["> 0.0.0"])
|
14
|
-
|
14
|
+
gem.require_paths = ["lib", "ext"]
|
15
|
+
gem.extensions = "ext/extconf.rb" end
|
15
16
|
Jeweler::GemcutterTasks.new
|
16
17
|
rescue LoadError
|
17
18
|
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.2
|
data/parsley-ruby.gemspec
CHANGED
@@ -5,13 +5,14 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{parsley-ruby}
|
8
|
-
s.version = "0.4.
|
8
|
+
s.version = "0.4.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Kyle Maxwell"]
|
12
12
|
s.date = %q{2009-11-01}
|
13
13
|
s.description = %q{XML/HTML Parser}
|
14
14
|
s.email = %q{kyle@kylemaxwell.com}
|
15
|
+
s.extensions = ["ext/extconf.rb"]
|
15
16
|
s.extra_rdoc_files = [
|
16
17
|
"README"
|
17
18
|
]
|
@@ -32,7 +33,7 @@ Gem::Specification.new do |s|
|
|
32
33
|
]
|
33
34
|
s.homepage = %q{http://github.com/fizx/parsley-ruby}
|
34
35
|
s.rdoc_options = ["--charset=UTF-8"]
|
35
|
-
s.require_paths = ["lib"]
|
36
|
+
s.require_paths = ["lib", "ext"]
|
36
37
|
s.rubygems_version = %q{1.3.5}
|
37
38
|
s.summary = %q{Ruby binding for parsley}
|
38
39
|
s.test_files = [
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: parsley-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Maxwell
|
@@ -26,8 +26,8 @@ description: XML/HTML Parser
|
|
26
26
|
email: kyle@kylemaxwell.com
|
27
27
|
executables: []
|
28
28
|
|
29
|
-
extensions:
|
30
|
-
|
29
|
+
extensions:
|
30
|
+
- ext/extconf.rb
|
31
31
|
extra_rdoc_files:
|
32
32
|
- README
|
33
33
|
files:
|
@@ -53,6 +53,7 @@ rdoc_options:
|
|
53
53
|
- --charset=UTF-8
|
54
54
|
require_paths:
|
55
55
|
- lib
|
56
|
+
- ext
|
56
57
|
required_ruby_version: !ruby/object:Gem::Requirement
|
57
58
|
requirements:
|
58
59
|
- - ">="
|