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 CHANGED
@@ -1,3 +1,8 @@
1
+ == 1.2.11.1 / 2010-10-24
2
+
3
+ - Add gemspec and docs to packages so tests can pass again.
4
+ - Build tarballs again in package task.
5
+
1
6
  == 1.2.11 / 2010-10-17
2
7
 
3
8
  - Add COPYING for packaging (issue #7)
data/README CHANGED
@@ -82,7 +82,7 @@ See the documentation for each class for more details.
82
82
 
83
83
  = TODO
84
84
 
85
- == 1.2.11
85
+ == 1.2.12
86
86
 
87
87
  * internal api cleanup
88
88
  * add buffering to rangesio so that performance for small reads and writes
data/Rakefile CHANGED
@@ -42,7 +42,7 @@ end
42
42
 
43
43
  Rake::GemPackageTask.new(spec) do |t|
44
44
  t.gem_spec = spec
45
- t.need_tar = false
45
+ t.need_tar = true
46
46
  t.need_zip = false
47
47
  t.package_dir = 'build'
48
48
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Ole # :nodoc:
4
4
  class Storage
5
- VERSION = '1.2.11'
5
+ VERSION = '1.2.11.1'
6
6
  end
7
7
  end
8
8
 
@@ -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
+
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: 9
4
+ hash: 97
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 2
9
9
  - 11
10
- version: 1.2.11
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-17 00:00:00 -04:00
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