seven_zip_ruby 1.2.3-x86-mingw32 → 1.2.4-x86-mingw32

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 42dba55625164cacc877c244db018896e8de6b66
4
- data.tar.gz: 1a460249fef152085317db08440bb42dfa93d6be
3
+ metadata.gz: d7ea34e1ea2da7c4fb7b349e864fd09e567f6a8a
4
+ data.tar.gz: 5b201f6cbf8fcbe6b67b1ebf5d6246d04633183f
5
5
  SHA512:
6
- metadata.gz: 3e4f716604d7c0da33cd82128363fe4f8be68fae9880b4a988f03f5a8a057e6c3ccd0e5ff4d16fbcf600d0672d71cee69e31351f0547744cf5cbefab03dd711f
7
- data.tar.gz: 59259978ab74e83bca8c722694673c592f086e1122b7353038d8fa989a8c2b8bd8b525410bbd151ab9e1ef414b32798a53551bc2c2c296bffd64e1470eb70de5
6
+ metadata.gz: 88a7eba11ffc2d0527c363e42495c9ad52872a6d4a6c653810787d246de740c42ba57bb8348103bd02af0ee5a7b6adb6ab06ec598af1408fe7cf387d6434549b
7
+ data.tar.gz: a1c75fdf9db4f2db742a97d7cd6722acfbca1c8b93af395e06380345e14b7abbc4a514e9178a2dc9c23ac217e89b5996daee66df4e8b8932013947b7d12ad048
data/.travis.yml CHANGED
@@ -2,11 +2,11 @@ language: ruby
2
2
  rvm:
3
3
  - "2.0.0"
4
4
  - "2.1.1"
5
- - "rbx"
5
+ - "rbx-2"
6
6
  - "ruby-head"
7
7
  matrix:
8
8
  allow_failures:
9
- - rvm: "rbx"
9
+ - rvm: "rbx-2"
10
10
  - rvm: "ruby-head"
11
11
  notifications:
12
12
  email: false
data/README.md CHANGED
@@ -4,15 +4,18 @@
4
4
 
5
5
  This is a Ruby gem library to extract/compress [7-Zip](http://www.7-zip.org) archives.
6
6
 
7
- This extension calls the native library, 7z.dll or 7z.so, internally and it is included in this gem.
7
+ This extension calls the native library, 7z.dll or 7z.so, internally and these libraries are included in this gem.
8
8
 
9
9
  ## Features
10
- * Use official DLL, 7z.dll, internally.
11
- * Support extracting data into memory.
10
+ * Uses official DLL, 7z.dll, internally.
11
+ * Supports extracting data into memory.
12
+
13
+ ## Document
14
+ [RDoc](http://rubydoc.info/gems/seven_zip_ruby/frames) shows you the details.
12
15
 
13
16
  ## Examples
14
17
 
15
- ### Extract archive
18
+ ### Extract archives
16
19
 
17
20
  ```ruby
18
21
  File.open("filename.7z", "rb") do |file|
@@ -22,7 +25,7 @@ File.open("filename.7z", "rb") do |file|
22
25
  end
23
26
  ```
24
27
 
25
- You can also use handy method.
28
+ You can also use simpler method.
26
29
 
27
30
  ```ruby
28
31
  File.open("filename.7z", "rb") do |file|
@@ -30,7 +33,7 @@ File.open("filename.7z", "rb") do |file|
30
33
  end
31
34
  ```
32
35
 
33
- ### Show entries in archive
36
+ ### Show the entries in the archive
34
37
 
35
38
  ```ruby
36
39
  File.open("filename.7z", "rb") do |file|
@@ -42,7 +45,7 @@ File.open("filename.7z", "rb") do |file|
42
45
  end
43
46
  ```
44
47
 
45
- ### Extract encrypted archive
48
+ ### Extract encrypted archives
46
49
 
47
50
  ```ruby
48
51
  File.open("filename.7z", "rb") do |file|
@@ -60,7 +63,7 @@ end
60
63
  ```
61
64
 
62
65
 
63
- ### Verify archive
66
+ ### Verify archives
64
67
 
65
68
  ```ruby
66
69
  File.open("filename.7z", "rb") do |file|
@@ -114,7 +117,7 @@ File.open("filename.7z", "rb") do |file|
114
117
  end
115
118
  ```
116
119
 
117
- ### Get data from archive
120
+ ### Get data from archives
118
121
 
119
122
  Extract data into memory.
120
123
 
@@ -130,7 +133,7 @@ p data
130
133
  # => File content is shown.
131
134
  ```
132
135
 
133
- ### Create archive manually
136
+ ### Create an archive manually
134
137
 
135
138
  ```ruby
136
139
  File.open("filename.7z", "rb") do |file|
@@ -178,8 +181,8 @@ p(Time.now - start)
178
181
  ## TODO
179
182
 
180
183
  * Support file attributes on Linux and Mac OSX.
181
- * Support updating archive.
182
- * Support extracting rar archive.
184
+ * Support update of an archive.
185
+ * Support extract of a rar archive.
183
186
 
184
187
 
185
188
  ## License
@@ -188,9 +191,9 @@ LGPL and unRAR license. Please refer to LICENSE.txt.
188
191
  ## Releases
189
192
 
190
193
  * 1.2.*
191
- Bug fix.
194
+ - Fixed cosmetic bugs.
192
195
  * 1.1.0
193
- Raise error when wrong password is specified.
196
+ - Fixed a bug. Raises an exception when wrong password is specified.
194
197
  * 1.0.0
195
- Initial release.
198
+ - Initial release.
196
199
 
@@ -1,3 +1,3 @@
1
1
  module SevenZipRuby
2
- VERSION = "1.2.3"
2
+ VERSION = "1.2.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: seven_zip_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.4
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Masamitsu MURASE
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-28 00:00:00.000000000 Z
11
+ date: 2014-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -80,6 +80,7 @@ files:
80
80
  - spec/seven_zip_ruby_spec.rb
81
81
  - spec/seven_zip_ruby_spec_helper.rb
82
82
  - lib/seven_zip_ruby/2.0/seven_zip_archive.so
83
+ - lib/seven_zip_ruby/2.1/seven_zip_archive.so
83
84
  homepage: https://github.com/masamitsu-murase/seven_zip_ruby
84
85
  licenses:
85
86
  - LGPL + unRAR