id3 1.0.0.pre6 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 98349fdcb8d21521c6cfe9a9135e2fc6f24824b27101918223c2e20bee5f88d5
4
+ data.tar.gz: 901dc10b5188226630f4f6429e43944b0f8476a84d21e532e86c50e019127d62
5
+ SHA512:
6
+ metadata.gz: 88eff1c0f42b12bc427bdcd300af8d5d2fe108a3ec2a039acd0748e324407229c99de426a894fecadc4ed8ef6bc4d765650f25207d0df89dd7cfb32afa37123b
7
+ data.tar.gz: bc2736decb84c8c68bf5c1e856666ffa06495ca3c4bf2be0fd4df96189331bc6d10d0ea039658d6ee53dc900f8ea5e7fcea73ed36d5279c04d1afba33558f72e
data/.gitignore CHANGED
@@ -17,3 +17,6 @@ db/*.sqlite3
17
17
  .git.old
18
18
  *.bak
19
19
  *.new
20
+ doc
21
+ pkg
22
+ *.gem
data/CHANGES CHANGED
@@ -1,5 +1,11 @@
1
1
  = id3 changes
2
2
 
3
+ === 1.0.0
4
+
5
+ * release of verion 1.0.0
6
+ issue with not being able to load `md5` library was because the fixed version was a pre-release,
7
+ and would not be installed automatically.
8
+
3
9
  === 1.0.0_pre4 (2011-10-11 .. 2011-10-20 working on pre-release of 1.0.0 version)
4
10
 
5
11
  * changed format of Frame.new() initializer method
data/README.md CHANGED
@@ -7,12 +7,16 @@ Initial release was 12 Oct 2002
7
7
  The library uses Metaprogramming at it's core - see ./lib/id3/frame.rb
8
8
 
9
9
  # NOTE
10
- the latest version on the trunk is version 1.0.0_pre4 , a pre-release which aims at Ruby 1.9 compatibility.
10
+ the latest version on the trunk is version 1.0.0_pre6 , a pre-release which aims at Ruby 1.9 compatibility.
11
11
 
12
12
 
13
13
  Author: Tilo Sloboda <MyFristname.MyLastname At GoogleMail>
14
14
 
15
- Home Page: http://www.unixgods.org/~tilo/Ruby/ID3
15
+ Home Page: http://www.unixgods.org/Ruby/ID3/docs/index.html
16
+
17
+ Comparison of different ID3 Standards: http://www.unixgods.org/Ruby/ID3/docs/ID3_comparison.html
18
+
19
+ Wikipedia: https://en.wikipedia.org/wiki/ID3
16
20
 
17
21
  License: http://www.unixgods.org/~tilo/artistic-license.html
18
22
 
@@ -26,7 +30,9 @@ RAA: http://raa.ruby-lang.org/project/id3tag/ (yes, it's that old :) )
26
30
 
27
31
  Versions:
28
32
 
29
- * 1.0.0_pre4 [2012-07-07]
33
+ * 1.0.0_pre6 [2012-08-15]
34
+ * 1.0.0_pre5 [2012-08-14]
35
+ * 1.0.0_pre4 [2012-07-17]
30
36
  * 0.5.1 (2011-03-31)
31
37
  * 0.5.0 (2008-08-18)
32
38
  * 0.4.1 (2008-08-17)
data/docs/API ADDED
@@ -0,0 +1 @@
1
+ ../doc
data/id3.gemspec CHANGED
@@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
20
20
  s.autorequire = 'id3'
21
21
  # s.extra_rdoc_files = ['README']
22
22
  s.rdoc_options << '--title' << 'Native ID3 Ruby Library - uniform acecss to ID3v1 and ID3v2 tags'
23
- s.add_dependency("activesupport", "~> 3.x")
23
+ s.add_dependency("activesupport", ">= 5")
24
24
  # s.add_dependency("dependency", ">= 0.9.9")
25
25
  # s.bindir = 'bin'
26
26
 
data/lib/id3/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module ID3
2
- VERSION = '1.0.0.pre6'
2
+ VERSION = '1.0.0'
3
3
  end
metadata CHANGED
@@ -1,27 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: id3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre6
5
- prerelease: 6
4
+ version: 1.0.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Tilo Sloboda
9
8
  autorequire: id3
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-08-15 00:00:00.000000000 Z
11
+ date: 2025-02-02 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: activesupport
16
- requirement: &5254080 !ruby/object:Gem::Requirement
17
- none: false
15
+ requirement: !ruby/object:Gem::Requirement
18
16
  requirements:
19
- - - ~>
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
- version: 3.x
19
+ version: '5'
22
20
  type: :runtime
23
21
  prerelease: false
24
- version_requirements: *5254080
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '5'
25
27
  description: ID3 is a native ruby library for reading and writing ID3 tag versions
26
28
  1.0, 1.1, and 2.2.x, 2,3.x, 2,4.x
27
29
  email:
@@ -30,11 +32,12 @@ executables: []
30
32
  extensions: []
31
33
  extra_rdoc_files: []
32
34
  files:
33
- - .gitignore
35
+ - ".gitignore"
34
36
  - CHANGES
35
37
  - LICENSE.html
36
38
  - README.md
37
39
  - Rakefile
40
+ - docs/API
38
41
  - docs/Class_AudioFile.html
39
42
  - docs/Class_Frame.html
40
43
  - docs/Class_Tag1.html
@@ -87,29 +90,27 @@ files:
87
90
  - lib/id3/version.rb
88
91
  homepage: http://www.unixgods.org/~tilo/Ruby/ID3
89
92
  licenses: []
90
- post_install_message:
93
+ metadata: {}
94
+ post_install_message:
91
95
  rdoc_options:
92
- - --title
96
+ - "--title"
93
97
  - Native ID3 Ruby Library - uniform acecss to ID3v1 and ID3v2 tags
94
98
  require_paths:
95
99
  - lib
96
100
  required_ruby_version: !ruby/object:Gem::Requirement
97
- none: false
98
101
  requirements:
99
- - - ! '>='
102
+ - - ">="
100
103
  - !ruby/object:Gem::Version
101
104
  version: '0'
102
105
  required_rubygems_version: !ruby/object:Gem::Requirement
103
- none: false
104
106
  requirements:
105
- - - ! '>'
107
+ - - ">="
106
108
  - !ruby/object:Gem::Version
107
- version: 1.3.1
109
+ version: '0'
108
110
  requirements: []
109
- rubyforge_project: id3
110
- rubygems_version: 1.8.15
111
- signing_key:
112
- specification_version: 3
111
+ rubygems_version: 3.5.4
112
+ signing_key:
113
+ specification_version: 4
113
114
  summary: A native ID3 tag library for Ruby, which does not depend on architecture-dependent
114
115
  C-libraries. It supports reading and writing ID3-tag versions 1.0, 1.1, and 2.2.x,
115
116
  2,3.x, 2,4.x\n http://www.unixgods.org/~tilo/Ruby/ID3