ruby-ole 1.2.11 → 1.2.11.1
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/ChangeLog +5 -0
- data/README +1 -1
- data/Rakefile +1 -1
- data/lib/ole/storage/version.rb +1 -1
- data/ruby-ole.gemspec +31 -0
- data/test/test.doc +0 -0
- data/test/test_word_6.doc +0 -0
- data/test/test_word_95.doc +0 -0
- data/test/test_word_97.doc +0 -0
- metadata +9 -3
data/ChangeLog
CHANGED
data/README
CHANGED
data/Rakefile
CHANGED
data/lib/ole/storage/version.rb
CHANGED
data/ruby-ole.gemspec
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Kernel.load File.dirname(__FILE__) + '/lib/ole/storage/version.rb'
|
|
2
|
+
|
|
3
|
+
PKG_NAME = 'ruby-ole'
|
|
4
|
+
PKG_VERSION = Ole::Storage::VERSION
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = PKG_NAME
|
|
8
|
+
s.version = PKG_VERSION
|
|
9
|
+
s.summary = %q{Ruby OLE library.}
|
|
10
|
+
s.description = %q{A library for easy read/write access to OLE compound documents for Ruby.}
|
|
11
|
+
s.authors = ['Charles Lowe']
|
|
12
|
+
s.email = %q{aquasync@gmail.com}
|
|
13
|
+
s.homepage = %q{http://code.google.com/p/ruby-ole}
|
|
14
|
+
s.rubyforge_project = %q{ruby-ole}
|
|
15
|
+
|
|
16
|
+
s.executables = ['oletool']
|
|
17
|
+
s.files = ['README', 'COPYING', 'Rakefile', 'ChangeLog', 'ruby-ole.gemspec', 'data/propids.yaml']
|
|
18
|
+
s.files += Dir.glob('lib/**/*.rb')
|
|
19
|
+
s.files += Dir.glob('test/{test_*.rb,*.doc,oleWithDirs.ole,test_SummaryInformation}')
|
|
20
|
+
s.files += Dir.glob('bin/*')
|
|
21
|
+
s.test_files = Dir.glob('test/test_*.rb')
|
|
22
|
+
|
|
23
|
+
s.has_rdoc = true
|
|
24
|
+
s.extra_rdoc_files = ['README', 'ChangeLog']
|
|
25
|
+
s.rdoc_options += [
|
|
26
|
+
'--main', 'README',
|
|
27
|
+
'--title', "#{PKG_NAME} documentation",
|
|
28
|
+
'--tab-width', '2'
|
|
29
|
+
]
|
|
30
|
+
end
|
|
31
|
+
|
data/test/test.doc
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-ole
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 97
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 2
|
|
9
9
|
- 11
|
|
10
|
-
|
|
10
|
+
- 1
|
|
11
|
+
version: 1.2.11.1
|
|
11
12
|
platform: ruby
|
|
12
13
|
authors:
|
|
13
14
|
- Charles Lowe
|
|
@@ -15,7 +16,7 @@ autorequire:
|
|
|
15
16
|
bindir: bin
|
|
16
17
|
cert_chain: []
|
|
17
18
|
|
|
18
|
-
date: 2010-10-
|
|
19
|
+
date: 2010-10-24 00:00:00 -04:00
|
|
19
20
|
default_executable:
|
|
20
21
|
dependencies: []
|
|
21
22
|
|
|
@@ -33,6 +34,7 @@ files:
|
|
|
33
34
|
- COPYING
|
|
34
35
|
- Rakefile
|
|
35
36
|
- ChangeLog
|
|
37
|
+
- ruby-ole.gemspec
|
|
36
38
|
- data/propids.yaml
|
|
37
39
|
- bin/oletool
|
|
38
40
|
- lib/ole/storage.rb
|
|
@@ -55,6 +57,10 @@ files:
|
|
|
55
57
|
- test/test_types.rb
|
|
56
58
|
- test/test_ranges_io.rb
|
|
57
59
|
- test/test_filesystem.rb
|
|
60
|
+
- test/test_word_6.doc
|
|
61
|
+
- test/test_word_95.doc
|
|
62
|
+
- test/test.doc
|
|
63
|
+
- test/test_word_97.doc
|
|
58
64
|
- test/oleWithDirs.ole
|
|
59
65
|
- test/test_SummaryInformation
|
|
60
66
|
has_rdoc: true
|