ruby-ole 1.2.11.8 → 1.2.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ChangeLog +5 -0
- data/{README → README.rdoc} +0 -35
- data/Rakefile +2 -2
- data/lib/ole/storage/version.rb +1 -1
- data/ruby-ole.gemspec +5 -4
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dfa49ac8a3a5747cc3f2b00c6febfc3cda3d4571
|
4
|
+
data.tar.gz: 38e14d58ea2d186e455f05527388e8ff1dd4e01a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8eeb1022e0d895636ce58d8a8e7c91c66683632a3cee29c6e8e7d36baad8345952a02d68253a85f90aa94a09d452a43e4e3190f6b00b762f77d8575eb838a1a0
|
7
|
+
data.tar.gz: 0b93fab39f7c78551324181164315694ee73ebe9811befbd94d93da30f31cd526d58242f9ba9af6e674518b8d8c245dd031a144a8e4ff9440ac0ad2301f1a360
|
data/ChangeLog
CHANGED
data/{README → README.rdoc}
RENAMED
@@ -79,38 +79,3 @@ See the documentation for each class for more details.
|
|
79
79
|
* The excellent idea for using a pseudo file system style interface by providing
|
80
80
|
#file and #dir methods which mimic File and Dir, was borrowed (along with almost
|
81
81
|
unchanged tests!) from Thomas Sondergaard's rubyzip.
|
82
|
-
|
83
|
-
= TODO
|
84
|
-
|
85
|
-
== 1.2.12
|
86
|
-
|
87
|
-
* internal api cleanup
|
88
|
-
* add buffering to rangesio so that performance for small reads and writes
|
89
|
-
isn't so awful. maybe try and remove the bottlenecks of unbuffered first
|
90
|
-
with more profiling, then implement the buffering on top of that.
|
91
|
-
* fix mode strings - like truncate when using 'w+', supporting append
|
92
|
-
'a+' modes etc. done?
|
93
|
-
* make ranges io obey readable vs writeable modes.
|
94
|
-
* more RangesIO completion. ie, doesn't support #<< at the moment.
|
95
|
-
* maybe some oletool doc.
|
96
|
-
* make sure `rake test' runs tests both with $KCODE='UTF8', and without,
|
97
|
-
and maybe ensure i don't regress on 1.9 and jruby either now that they're
|
98
|
-
fixed.
|
99
|
-
|
100
|
-
== 1.3.1
|
101
|
-
|
102
|
-
* case insensitive open mode would be nice
|
103
|
-
* fix property sets a bit more. see TODO in Ole::Storage::MetaData
|
104
|
-
* ability to zero out padding and unused blocks
|
105
|
-
* better tests for mbat support.
|
106
|
-
* further doc cleanup
|
107
|
-
* add in place testing for jruby and ruby1.9
|
108
|
-
|
109
|
-
== Longer term
|
110
|
-
|
111
|
-
* more benchmarking, profiling, and speed fixes. was thinking vs other
|
112
|
-
ruby filesystems (eg, vs File/Dir itself, and vs rubyzip), and vs other
|
113
|
-
ole implementations (maybe perl's, and poifs) just to check its in the
|
114
|
-
ballpark, with no remaining silly bottlenecks.
|
115
|
-
* supposedly vba does something weird to ole files. test that.
|
116
|
-
|
data/Rakefile
CHANGED
@@ -30,10 +30,10 @@ begin
|
|
30
30
|
RDoc::Task.new do |t|
|
31
31
|
t.rdoc_dir = 'doc'
|
32
32
|
t.rdoc_files.include 'lib/**/*.rb'
|
33
|
-
t.rdoc_files.include 'README', 'ChangeLog'
|
33
|
+
t.rdoc_files.include 'README.rdoc', 'ChangeLog'
|
34
34
|
t.title = "#{PKG_NAME} documentation"
|
35
35
|
t.options += %w[--line-numbers --inline-source --tab-width 2]
|
36
|
-
t.main = 'README'
|
36
|
+
t.main = 'README.rdoc'
|
37
37
|
end
|
38
38
|
rescue LoadError
|
39
39
|
# RDoc not available or too old (<2.4.2)
|
data/lib/ole/storage/version.rb
CHANGED
data/ruby-ole.gemspec
CHANGED
@@ -11,20 +11,21 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.description = %q{A library for easy read/write access to OLE compound documents for Ruby.}
|
12
12
|
s.authors = ['Charles Lowe']
|
13
13
|
s.email = %q{aquasync@gmail.com}
|
14
|
-
s.homepage = %q{
|
14
|
+
s.homepage = %q{https://github.com/aquasync/ruby-ole}
|
15
|
+
s.license = 'MIT'
|
15
16
|
s.rubyforge_project = %q{ruby-ole}
|
16
17
|
|
17
18
|
s.executables = ['oletool']
|
18
|
-
s.files = ['README', 'COPYING', 'Rakefile', 'ChangeLog', 'ruby-ole.gemspec']
|
19
|
+
s.files = ['README.rdoc', 'COPYING', 'Rakefile', 'ChangeLog', 'ruby-ole.gemspec']
|
19
20
|
s.files += Dir.glob('lib/**/*.rb')
|
20
21
|
s.files += Dir.glob('test/{test_*.rb,*.doc,oleWithDirs.ole,test_SummaryInformation}')
|
21
22
|
s.files += Dir.glob('bin/*')
|
22
23
|
s.test_files = Dir.glob('test/test_*.rb')
|
23
24
|
|
24
25
|
s.has_rdoc = true
|
25
|
-
s.extra_rdoc_files = ['README', 'ChangeLog']
|
26
|
+
s.extra_rdoc_files = ['README.rdoc', 'ChangeLog']
|
26
27
|
s.rdoc_options += [
|
27
|
-
'--main', 'README',
|
28
|
+
'--main', 'README.rdoc',
|
28
29
|
'--title', "#{PKG_NAME} documentation",
|
29
30
|
'--tab-width', '2'
|
30
31
|
]
|
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.12
|
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: 2015-12-29 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
|
@@ -16,10 +16,10 @@ executables:
|
|
16
16
|
- oletool
|
17
17
|
extensions: []
|
18
18
|
extra_rdoc_files:
|
19
|
-
- README
|
19
|
+
- README.rdoc
|
20
20
|
- ChangeLog
|
21
21
|
files:
|
22
|
-
- README
|
22
|
+
- README.rdoc
|
23
23
|
- COPYING
|
24
24
|
- Rakefile
|
25
25
|
- ChangeLog
|
@@ -51,13 +51,14 @@ files:
|
|
51
51
|
- test/test_word_97.doc
|
52
52
|
- test/oleWithDirs.ole
|
53
53
|
- test/test_SummaryInformation
|
54
|
-
homepage:
|
55
|
-
licenses:
|
54
|
+
homepage: https://github.com/aquasync/ruby-ole
|
55
|
+
licenses:
|
56
|
+
- MIT
|
56
57
|
metadata: {}
|
57
58
|
post_install_message:
|
58
59
|
rdoc_options:
|
59
60
|
- --main
|
60
|
-
- README
|
61
|
+
- README.rdoc
|
61
62
|
- --title
|
62
63
|
- ruby-ole documentation
|
63
64
|
- --tab-width
|