fizx-parsley-ruby 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/cparsley.c +118 -0
- data/lib/parsley.rb +39 -0
- data/parsley-ruby.gemspec +28 -0
- data/test/test_parsley.rb +56 -0
- data/test/yelp-benchmark.rb +53 -0
- data/test/yelp-home.html +1004 -0
- data/test/yelp-home.let +6 -0
- data/test/yelp.html +2329 -0
- metadata +10 -11
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fizx-parsley-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Maxwell
|
@@ -31,17 +31,16 @@ extensions:
|
|
31
31
|
extra_rdoc_files:
|
32
32
|
- README
|
33
33
|
files:
|
34
|
-
-
|
35
|
-
-
|
36
|
-
-
|
37
|
-
-
|
38
|
-
- ./README
|
39
|
-
- ./test/test_parsley.rb
|
40
|
-
- ./test/yelp-benchmark.rb
|
41
|
-
- ./test/yelp-home.html
|
42
|
-
- ./test/yelp-home.let
|
43
|
-
- ./test/yelp.html
|
34
|
+
- ext/cparsley.c
|
35
|
+
- ext/extconf.rb
|
36
|
+
- lib/parsley.rb
|
37
|
+
- parsley-ruby.gemspec
|
44
38
|
- README
|
39
|
+
- test/test_parsley.rb
|
40
|
+
- test/yelp-benchmark.rb
|
41
|
+
- test/yelp-home.html
|
42
|
+
- test/yelp-home.let
|
43
|
+
- test/yelp.html
|
45
44
|
has_rdoc: true
|
46
45
|
homepage: http://github.com/fizx/parsley-ruby
|
47
46
|
post_install_message:
|