xmlsec-ruby 0.0.2
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/ext/xmlsec/extconf.rb +6 -0
- data/ext/xmlsec/simple-xmlsec.c +232 -0
- data/ext/xmlsec/simple-xmlsec_wrap.c +1928 -0
- metadata +74 -0
metadata
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: xmlsec-ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 27
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Victor Lin
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-09-17 00:00:00 -07:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description: "\txmlsec-ruby is an attempt to use SWIG to create ruby bindings\n\
|
23
|
+
\tfor the xmlsec library (http://www.aleksey.com/xmlsec/). \n\
|
24
|
+
\tUsage:\n\
|
25
|
+
\t\tXmlsec.verify_file(xml_document_string, pem_certificate_string)\n\
|
26
|
+
\t\tReturns 0/1 on failure/success.\n\
|
27
|
+
\tThis is actually the only function implemented so far. \n"
|
28
|
+
email: victor@coupa.com
|
29
|
+
executables: []
|
30
|
+
|
31
|
+
extensions:
|
32
|
+
- ext/xmlsec/extconf.rb
|
33
|
+
extra_rdoc_files: []
|
34
|
+
|
35
|
+
files:
|
36
|
+
- ext/xmlsec/simple-xmlsec.c
|
37
|
+
- ext/xmlsec/simple-xmlsec_wrap.c
|
38
|
+
- ext/xmlsec/extconf.rb
|
39
|
+
has_rdoc: true
|
40
|
+
homepage: http://github.com/wonnage/xmlsec-ruby
|
41
|
+
licenses: []
|
42
|
+
|
43
|
+
post_install_message:
|
44
|
+
rdoc_options: []
|
45
|
+
|
46
|
+
require_paths:
|
47
|
+
- lib
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
hash: 3
|
54
|
+
segments:
|
55
|
+
- 0
|
56
|
+
version: "0"
|
57
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
58
|
+
none: false
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
hash: 3
|
63
|
+
segments:
|
64
|
+
- 0
|
65
|
+
version: "0"
|
66
|
+
requirements: []
|
67
|
+
|
68
|
+
rubyforge_project:
|
69
|
+
rubygems_version: 1.3.7
|
70
|
+
signing_key:
|
71
|
+
specification_version: 3
|
72
|
+
summary: Ruby bindings for xmlsec1
|
73
|
+
test_files: []
|
74
|
+
|