ruby-ole 1.2.11.8 → 1.2.12

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: c571995eef82c6053c923aa5227d1b87dc75cbbc
4
- data.tar.gz: 4c928c7c0e3f666810155b02ef60fd2c098180a8
3
+ metadata.gz: dfa49ac8a3a5747cc3f2b00c6febfc3cda3d4571
4
+ data.tar.gz: 38e14d58ea2d186e455f05527388e8ff1dd4e01a
5
5
  SHA512:
6
- metadata.gz: de60921dd0436b97a424610200be163405242c92787cd2a6ceaf2be7d7194b8ff4baf20e2f6358ea99795bfcec7a627107df9afe9b06038d069de6d0c5447dd2
7
- data.tar.gz: 6940ff43938bed36de527289c3f735a87a32ff61afefe3277d4087e4e79911e370956b15f5c264d72c2d77e351a829cf443711d7575cbcdeaae72a8b968191d6
6
+ metadata.gz: 8eeb1022e0d895636ce58d8a8e7c91c66683632a3cee29c6e8e7d36baad8345952a02d68253a85f90aa94a09d452a43e4e3190f6b00b762f77d8575eb838a1a0
7
+ data.tar.gz: 0b93fab39f7c78551324181164315694ee73ebe9811befbd94d93da30f31cd526d58242f9ba9af6e674518b8d8c245dd031a144a8e4ff9440ac0ad2301f1a360
data/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ == 1.2.12 / 2015-12-29
2
+
3
+ - Change project homepage to github.
4
+ - Add MIT licence to the gemspec (github #17, reiz).
5
+
1
6
  == 1.2.11.8 / 2014-12-30
2
7
 
3
8
  - Fix duplicate key warning (github #15 and googlecode #12).
@@ -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)
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Ole # :nodoc:
4
4
  class Storage
5
- VERSION = '1.2.11.8'
5
+ VERSION = '1.2.12'
6
6
  end
7
7
  end
8
8
 
@@ -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{http://code.google.com/p/ruby-ole}
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.11.8
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: 2014-12-30 00:00:00.000000000 Z
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: http://code.google.com/p/ruby-ole
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