libarchive-ruby 0.0.1.dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (7) hide show
  1. data/COPYING.txt +339 -0
  2. data/README.rdoc +135 -0
  3. data/ext/archive.cpp +1547 -0
  4. data/ext/entry.cpp +592 -0
  5. data/ext/extconf.rb +38 -0
  6. data/ext/main.hpp +86 -0
  7. metadata +80 -0
metadata ADDED
@@ -0,0 +1,80 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: libarchive-ruby
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: true
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 1
9
+ - dev
10
+ version: 0.0.1.dev
11
+ platform: ruby
12
+ authors:
13
+ - Hanmac
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-03-12 00:00:00 +01:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: |
23
+ libarchive-ruby provides Ruby bindings for the libarchive library that
24
+ allows you to alter arbitrary archives.
25
+
26
+ email: hanmac@gmx.de
27
+ executables: []
28
+
29
+ extensions:
30
+ - ext/extconf.rb
31
+ extra_rdoc_files:
32
+ - README.rdoc
33
+ files:
34
+ - README.rdoc
35
+ - COPYING.txt
36
+ - ext/entry.cpp
37
+ - ext/archive.cpp
38
+ - ext/main.hpp
39
+ - ext/extconf.rb
40
+ has_rdoc: true
41
+ homepage:
42
+ licenses: []
43
+
44
+ post_install_message:
45
+ rdoc_options:
46
+ - -t
47
+ - libarchive-ruby RDocs
48
+ - -m
49
+ - README.rdoc
50
+ require_paths:
51
+ - lib
52
+ required_ruby_version: !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ segments:
58
+ - 1
59
+ - 9
60
+ version: "1.9"
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ">"
65
+ - !ruby/object:Gem::Version
66
+ segments:
67
+ - 1
68
+ - 3
69
+ - 1
70
+ version: 1.3.1
71
+ requirements:
72
+ - A C++ compiler
73
+ - libarchive library
74
+ rubyforge_project:
75
+ rubygems_version: 1.3.7
76
+ signing_key:
77
+ specification_version: 3
78
+ summary: Ruby bindings for libarchive
79
+ test_files: []
80
+