wbxml 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/License.txt +20 -0
- data/Manifest.txt +10 -0
- data/README.txt +54 -0
- data/config/hoe.rb +75 -0
- data/config/requirements.rb +15 -0
- data/ext/wbxml/extconf.rb +7 -0
- data/ext/wbxml/wbxml.c +81 -0
- data/lib/wbxml/version.rb +9 -0
- data/setup.rb +1585 -0
- data/test/test_wbxml_extn.rb +10 -0
- metadata +68 -0
metadata
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: wbxml
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Clifford Heath
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-05-22 00:00:00 +10:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: Wrapper for wbxml2, a WAP<->XML converter
|
17
|
+
email:
|
18
|
+
- cjheath@rubyforge.org
|
19
|
+
executables: []
|
20
|
+
|
21
|
+
extensions:
|
22
|
+
- ext/wbxml/extconf.rb
|
23
|
+
extra_rdoc_files:
|
24
|
+
- History.txt
|
25
|
+
- License.txt
|
26
|
+
- Manifest.txt
|
27
|
+
- README.txt
|
28
|
+
files:
|
29
|
+
- History.txt
|
30
|
+
- License.txt
|
31
|
+
- Manifest.txt
|
32
|
+
- README.txt
|
33
|
+
- config/hoe.rb
|
34
|
+
- config/requirements.rb
|
35
|
+
- ext/wbxml/extconf.rb
|
36
|
+
- ext/wbxml/wbxml.c
|
37
|
+
- lib/wbxml/version.rb
|
38
|
+
- setup.rb
|
39
|
+
has_rdoc: true
|
40
|
+
homepage: http://wbxml.rubyforge.org
|
41
|
+
post_install_message:
|
42
|
+
rdoc_options:
|
43
|
+
- --main
|
44
|
+
- README.txt
|
45
|
+
require_paths:
|
46
|
+
- lib
|
47
|
+
- ext/wbxml
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: "0"
|
53
|
+
version:
|
54
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: "0"
|
59
|
+
version:
|
60
|
+
requirements: []
|
61
|
+
|
62
|
+
rubyforge_project: wbxml
|
63
|
+
rubygems_version: 1.1.0
|
64
|
+
signing_key:
|
65
|
+
specification_version: 2
|
66
|
+
summary: Wrapper for wbxml2, a WAP<->XML converter
|
67
|
+
test_files:
|
68
|
+
- test/test_wbxml_extn.rb
|