ruby-ogginfo 0.3.1 → 0.3.2

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.
Files changed (5) hide show
  1. data/History.txt +5 -0
  2. data/Manifest.txt +1 -0
  3. data/lib/ogginfo.rb +3 -1
  4. data/setup.rb +1596 -0
  5. metadata +6 -4
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ === 0.3.2 / 2009-06-22
2
+
3
+ * added setup.rb for tarball distribution
4
+ * added license on top of lib/ogginfo.rb
5
+
1
6
  === 0.3.1 / 2008-03-16
2
7
 
3
8
  * bug fixed #18852 "OggInfo#close(): close @ic only if not nil"
data/Manifest.txt CHANGED
@@ -2,5 +2,6 @@ History.txt
2
2
  Manifest.txt
3
3
  README.txt
4
4
  Rakefile
5
+ setup.rb
5
6
  lib/ogginfo.rb
6
7
  test/test_ruby-ogginfo.rb
data/lib/ogginfo.rb CHANGED
@@ -2,6 +2,8 @@
2
2
  #
3
3
  # see http://www.xiph.org/ogg/vorbis/docs.html for documentation on vorbis format
4
4
  # http://www.xiph.org/ogg/vorbis/doc/v-comment.html
5
+ #
6
+ # License: ruby
5
7
 
6
8
  require "iconv"
7
9
 
@@ -22,7 +24,7 @@ end
22
24
  class OggInfoError < StandardError ; end
23
25
 
24
26
  class OggInfo
25
- VERSION = "0.3.1"
27
+ VERSION = "0.3.2"
26
28
  attr_reader :channels, :samplerate, :bitrate, :nominal_bitrate, :length
27
29
 
28
30
  # +tag+ is a hash containing the vorbis tag like "Artist", "Title", and the like