ruby-ole 1.2.12.2 → 1.2.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/ChangeLog +5 -0
- data/bin/oletool +2 -1
- data/lib/ole/storage/version.rb +1 -1
- data/ruby-ole.gemspec +0 -1
- metadata +8 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 69e250ffd1193512350d29013c4913657015e0a70a1c9b9fc5a5b7619a628da8
|
4
|
+
data.tar.gz: 299952e097a3c3798c3a38dab26425c9244631552b0e6ffece771a288f517d8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bdcc433f5890c47abfeb176a76a47fa748710ff7e9dfe1b20d603af036e5e5c356043d13835b089b2d6c92696acf152620ec0b43be2e3786a6e1b9304fd26d2
|
7
|
+
data.tar.gz: 1f2fef23c8c445b3743093a625c19a87e26a6a213c651aa8ac9352eafb0d13b67706597af1866c1f774b1c9abf4dd293536e05f8018f6863af6ade9e9cfed48f
|
data/ChangeLog
CHANGED
data/bin/oletool
CHANGED
@@ -30,7 +30,8 @@ def oletool
|
|
30
30
|
when :repack
|
31
31
|
Ole::Storage.open file, 'rb+', &:repack
|
32
32
|
when :metadata
|
33
|
-
|
33
|
+
require 'yaml'
|
34
|
+
Ole::Storage.open(file) { |ole| puts ole.meta_data.to_h.to_yaml }
|
34
35
|
when :mimetype
|
35
36
|
puts Ole::Storage.open(file) { |ole| ole.meta_data.mime_type }
|
36
37
|
end
|
data/lib/ole/storage/version.rb
CHANGED
data/ruby-ole.gemspec
CHANGED
@@ -13,7 +13,6 @@ Gem::Specification.new do |s|
|
|
13
13
|
s.email = %q{aquasync@gmail.com}
|
14
14
|
s.homepage = %q{https://github.com/aquasync/ruby-ole}
|
15
15
|
s.license = 'MIT'
|
16
|
-
s.rubyforge_project = %q{ruby-ole}
|
17
16
|
|
18
17
|
s.executables = ['oletool']
|
19
18
|
s.files = ['README.rdoc', 'COPYING', 'Rakefile', 'ChangeLog', 'ruby-ole.gemspec']
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-ole
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Charles Lowe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A library for easy read/write access to OLE compound documents for Ruby.
|
14
14
|
email: aquasync@gmail.com
|
@@ -76,17 +76,16 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
76
|
- !ruby/object:Gem::Version
|
77
77
|
version: '0'
|
78
78
|
requirements: []
|
79
|
-
|
80
|
-
rubygems_version: 2.5.2.1
|
79
|
+
rubygems_version: 3.1.2
|
81
80
|
signing_key:
|
82
81
|
specification_version: 4
|
83
82
|
summary: Ruby OLE library.
|
84
83
|
test_files:
|
85
|
-
- test/
|
84
|
+
- test/test_mbat.rb
|
85
|
+
- test/test_property_set.rb
|
86
86
|
- test/test_storage.rb
|
87
|
-
- test/
|
87
|
+
- test/test_support.rb
|
88
88
|
- test/test_meta_data.rb
|
89
|
-
- test/
|
90
|
-
- test/
|
89
|
+
- test/test_ranges_io.rb
|
90
|
+
- test/test_filesystem.rb
|
91
91
|
- test/test_types.rb
|
92
|
-
- test/test_support.rb
|