id3tag 0.5.3 → 0.5.4
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 +4 -4
- data/.travis.yml +1 -0
- data/VERSION +1 -1
- data/id3tag.gemspec +6 -7
- data/lib/id3tag/frames/v2/text_frame.rb +2 -2
- data/spec/lib/id3tag/frames/v2/text_frame_spec.rb +1 -1
- metadata +20 -21
- data/tags +0 -331
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d6070311fcc298129810ab266e7f7a228b4892a7
|
|
4
|
+
data.tar.gz: 602481959264282b4d6ae18146e0126664734043
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60dc4ec5d9ea949c893dc18d22a1709bffbda2289c596a2f8856bf5ef8c531ea99ff896a2966efbdd2347e81e9957aecbc416a68f14442212e024d5714084909
|
|
7
|
+
data.tar.gz: 514344e13fe552594e56640775e47df18621b5930725a2e75586f0ef05cfe679bd3d32ecb349374afec944a05ee6fb08b82b382e09366dcfd7ef7addcdfbce62
|
data/.travis.yml
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
1
|
+
0.5.4
|
data/id3tag.gemspec
CHANGED
|
@@ -2,15 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: id3tag 0.5.
|
|
5
|
+
# stub: id3tag 0.5.4 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "id3tag"
|
|
9
|
-
s.version = "0.5.
|
|
9
|
+
s.version = "0.5.4"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
|
+
s.require_paths = ["lib"]
|
|
12
13
|
s.authors = ["Krists Ozols"]
|
|
13
|
-
s.date = "2013-
|
|
14
|
+
s.date = "2013-12-28"
|
|
14
15
|
s.description = "Native Ruby ID3 tag reader that aims for 100% covarage of ID3v2.x and ID3v1.x standards"
|
|
15
16
|
s.email = "krists@iesals.lv"
|
|
16
17
|
s.extra_rdoc_files = [
|
|
@@ -99,14 +100,12 @@ Gem::Specification.new do |s|
|
|
|
99
100
|
"standard_documents/id3v2-00.txt",
|
|
100
101
|
"standard_documents/id3v2.3.0.txt",
|
|
101
102
|
"standard_documents/id3v2.4.0-frames.txt",
|
|
102
|
-
"standard_documents/id3v2.4.0-structure.txt"
|
|
103
|
-
"tags"
|
|
103
|
+
"standard_documents/id3v2.4.0-structure.txt"
|
|
104
104
|
]
|
|
105
105
|
s.homepage = "http://github.com/krists/id3tag"
|
|
106
106
|
s.licenses = ["MIT"]
|
|
107
|
-
s.require_paths = ["lib"]
|
|
108
107
|
s.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
|
|
109
|
-
s.rubygems_version = "2.
|
|
108
|
+
s.rubygems_version = "2.2.0"
|
|
110
109
|
s.summary = "Native Ruby ID3 tag reader that aims for 100% covarage of ID3v2.x and ID3v1.x standards"
|
|
111
110
|
|
|
112
111
|
if s.respond_to? :specification_version then
|
|
@@ -25,11 +25,11 @@ module ID3Tag
|
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
def source_encoding
|
|
28
|
-
ENCODING_MAP.fetch(get_encoding_byte) { raise UnsupportedTextEncoding }
|
|
28
|
+
ENCODING_MAP.fetch(get_encoding_byte) { raise UnsupportedTextEncoding }.to_s
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
def destination_encoding
|
|
32
|
-
Encoding::UTF_8
|
|
32
|
+
Encoding::UTF_8.to_s
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
def get_encoding_byte
|
|
@@ -3,7 +3,7 @@ require 'spec_helper'
|
|
|
3
3
|
|
|
4
4
|
describe ID3Tag::Frames::V2::TextFrame do
|
|
5
5
|
let(:id) { "artist" }
|
|
6
|
-
let(:raw_content) { text.encode(target_encoding).prepend(encoding_byte.force_encoding(target_encoding)) }
|
|
6
|
+
let(:raw_content) { text.encode(target_encoding.to_s).prepend(encoding_byte.force_encoding(target_encoding)) }
|
|
7
7
|
let(:flags) { nil }
|
|
8
8
|
let(:major_version_number) { 4 }
|
|
9
9
|
|
metadata
CHANGED
|
@@ -1,97 +1,97 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: id3tag
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Krists Ozols
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-12-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jeweler
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - ~>
|
|
17
|
+
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: 1.8.4
|
|
20
20
|
type: :development
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - ~>
|
|
24
|
+
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 1.8.4
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rake
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- -
|
|
31
|
+
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: '0'
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- -
|
|
38
|
+
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rdoc
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- - ~>
|
|
45
|
+
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: '3.12'
|
|
48
48
|
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- - ~>
|
|
52
|
+
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '3.12'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: rspec
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
|
-
- - ~>
|
|
59
|
+
- - "~>"
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
61
|
version: 2.13.0
|
|
62
62
|
type: :development
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
|
-
- - ~>
|
|
66
|
+
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: 2.13.0
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: simplecov
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
|
-
- -
|
|
73
|
+
- - ">="
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
75
|
version: '0'
|
|
76
76
|
type: :development
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
|
-
- -
|
|
80
|
+
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: coveralls
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements:
|
|
87
|
-
- -
|
|
87
|
+
- - ">="
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
89
|
version: '0'
|
|
90
90
|
type: :development
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
|
-
- -
|
|
94
|
+
- - ">="
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: '0'
|
|
97
97
|
description: Native Ruby ID3 tag reader that aims for 100% covarage of ID3v2.x and
|
|
@@ -103,9 +103,9 @@ extra_rdoc_files:
|
|
|
103
103
|
- LICENSE.txt
|
|
104
104
|
- README.md
|
|
105
105
|
files:
|
|
106
|
-
- .document
|
|
107
|
-
- .rspec
|
|
108
|
-
- .travis.yml
|
|
106
|
+
- ".document"
|
|
107
|
+
- ".rspec"
|
|
108
|
+
- ".travis.yml"
|
|
109
109
|
- Gemfile
|
|
110
110
|
- Gemfile.lock
|
|
111
111
|
- LICENSE.txt
|
|
@@ -185,7 +185,6 @@ files:
|
|
|
185
185
|
- standard_documents/id3v2.3.0.txt
|
|
186
186
|
- standard_documents/id3v2.4.0-frames.txt
|
|
187
187
|
- standard_documents/id3v2.4.0-structure.txt
|
|
188
|
-
- tags
|
|
189
188
|
homepage: http://github.com/krists/id3tag
|
|
190
189
|
licenses:
|
|
191
190
|
- MIT
|
|
@@ -196,17 +195,17 @@ require_paths:
|
|
|
196
195
|
- lib
|
|
197
196
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
198
197
|
requirements:
|
|
199
|
-
- -
|
|
198
|
+
- - ">="
|
|
200
199
|
- !ruby/object:Gem::Version
|
|
201
200
|
version: 1.9.2
|
|
202
201
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
203
202
|
requirements:
|
|
204
|
-
- -
|
|
203
|
+
- - ">="
|
|
205
204
|
- !ruby/object:Gem::Version
|
|
206
205
|
version: '0'
|
|
207
206
|
requirements: []
|
|
208
207
|
rubyforge_project:
|
|
209
|
-
rubygems_version: 2.
|
|
208
|
+
rubygems_version: 2.2.0
|
|
210
209
|
signing_key:
|
|
211
210
|
specification_version: 4
|
|
212
211
|
summary: Native Ruby ID3 tag reader that aims for 100% covarage of ID3v2.x and ID3v1.x
|
data/tags
DELETED
|
@@ -1,331 +0,0 @@
|
|
|
1
|
-
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
|
|
2
|
-
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
|
|
3
|
-
!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/
|
|
4
|
-
!_TAG_PROGRAM_NAME Exuberant Ctags //
|
|
5
|
-
!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
|
|
6
|
-
!_TAG_PROGRAM_VERSION 5.8 //
|
|
7
|
-
AudioFile lib/id3tag/audio_file.rb /^ class AudioFile$/;" c class:ID3Tag
|
|
8
|
-
BasicFrame lib/id3tag/frames/v2/basic_frame.rb /^ class BasicFrame$/;" c class:ID3Tag.Frames.V2
|
|
9
|
-
CommentsFrame lib/id3tag/frames/v1/comments_frame.rb /^ class CommentsFrame < TextFrame$/;" c class:ID3Tag.Frames.V1
|
|
10
|
-
CommentsFrame lib/id3tag/frames/v2/comments_frame.rb /^ class CommentsFrame < TextFrame$/;" c class:ID3Tag.Frames.V2
|
|
11
|
-
FrameFabricator lib/id3tag/frames/v2/frame_fabricator.rb /^ class FrameFabricator$/;" c class:ID3Tag.Frames.V2
|
|
12
|
-
FrameFlags lib/id3tag/frames/v2/frame_flags.rb /^ class FrameFlags$/;" c class:ID3Tag.Frames.V2
|
|
13
|
-
FrameFlags lib/id3tag/frames/v2/frame_header_flags.rb /^ class FrameFlags$/;" c class:ID3Tag.Frames.V2
|
|
14
|
-
FrameIdAdvisor lib/id3tag/frame_id_advisor.rb /^ class FrameIdAdvisor$/;" c class:ID3Tag
|
|
15
|
-
Frames lib/id3tag/frames/util/genre_names.rb /^ module Frames$/;" m class:ID3Tag
|
|
16
|
-
Frames lib/id3tag/frames/v1/comments_frame.rb /^ module Frames$/;" m class:ID3Tag
|
|
17
|
-
Frames lib/id3tag/frames/v1/genre_frame.rb /^ module Frames$/;" m class:ID3Tag
|
|
18
|
-
Frames lib/id3tag/frames/v1/text_frame.rb /^ module Frames$/;" m class:ID3Tag
|
|
19
|
-
Frames lib/id3tag/frames/v1/track_nr_frame.rb /^ module Frames$/;" m class:ID3Tag
|
|
20
|
-
Frames lib/id3tag/frames/v2/basic_frame.rb /^ module Frames$/;" m class:ID3Tag
|
|
21
|
-
Frames lib/id3tag/frames/v2/comments_frame.rb /^ module Frames$/;" m class:ID3Tag
|
|
22
|
-
Frames lib/id3tag/frames/v2/frame_fabricator.rb /^ module Frames$/;" m class:ID3Tag
|
|
23
|
-
Frames lib/id3tag/frames/v2/frame_flags.rb /^ module Frames$/;" m class:ID3Tag
|
|
24
|
-
Frames lib/id3tag/frames/v2/frame_header_flags.rb /^ module Frames$/;" m class:ID3Tag
|
|
25
|
-
Frames lib/id3tag/frames/v2/genre_frame.rb /^ module Frames$/;" m class:ID3Tag
|
|
26
|
-
Frames lib/id3tag/frames/v2/genre_frame/genre_parser.rb /^ module Frames$/;" m class:ID3Tag
|
|
27
|
-
Frames lib/id3tag/frames/v2/genre_frame/genre_parser_24.rb /^ module Frames$/;" m class:ID3Tag
|
|
28
|
-
Frames lib/id3tag/frames/v2/genre_frame/genre_parser_pre_24.rb /^ module Frames$/;" m class:ID3Tag
|
|
29
|
-
Frames lib/id3tag/frames/v2/involved_people_list.rb /^ module Frames$/;" m class:ID3Tag
|
|
30
|
-
Frames lib/id3tag/frames/v2/involved_people_list_frame.rb /^ module Frames$/;" m class:ID3Tag
|
|
31
|
-
Frames lib/id3tag/frames/v2/private_frame.rb /^ module Frames$/;" m class:ID3Tag
|
|
32
|
-
Frames lib/id3tag/frames/v2/text_frame.rb /^ module Frames$/;" m class:ID3Tag
|
|
33
|
-
Frames lib/id3tag/frames/v2/unique_file_id_frame.rb /^ module Frames$/;" m class:ID3Tag
|
|
34
|
-
Frames lib/id3tag/frames/v2/user_text_frame.rb /^ module Frames$/;" m class:ID3Tag
|
|
35
|
-
GenreFrame lib/id3tag/frames/v1/genre_frame.rb /^ class GenreFrame$/;" c class:ID3Tag.Frames.V1
|
|
36
|
-
GenreFrame lib/id3tag/frames/v2/genre_frame.rb /^ class GenreFrame < BasicFrame$/;" c class:ID3Tag.Frames.V2
|
|
37
|
-
GenreFrame lib/id3tag/frames/v2/genre_frame/genre_parser.rb /^ class GenreFrame$/;" c class:ID3Tag.Frames.V2
|
|
38
|
-
GenreFrame lib/id3tag/frames/v2/genre_frame/genre_parser_24.rb /^ class GenreFrame$/;" c class:ID3Tag.Frames.V2
|
|
39
|
-
GenreFrame lib/id3tag/frames/v2/genre_frame/genre_parser_pre_24.rb /^ class GenreFrame$/;" c class:ID3Tag.Frames.V2
|
|
40
|
-
GenreNames lib/id3tag/frames/util/genre_names.rb /^ class GenreNames$/;" c class:ID3Tag.Frames.Util
|
|
41
|
-
GenreParser lib/id3tag/frames/v2/genre_frame/genre_parser.rb /^ class GenreParser$/;" c class:ID3Tag.Frames.V2.GenreFrame
|
|
42
|
-
GenreParser24 lib/id3tag/frames/v2/genre_frame/genre_parser_24.rb /^ class GenreParser24 < GenreParser$/;" c class:ID3Tag.Frames.V2.GenreFrame
|
|
43
|
-
GenreParserPre24 lib/id3tag/frames/v2/genre_frame/genre_parser_pre_24.rb /^ class GenreParserPre24 < GenreParser$/;" c class:ID3Tag.Frames.V2.GenreFrame
|
|
44
|
-
ID3Tag lib/id3tag.rb /^module ID3Tag$/;" m
|
|
45
|
-
ID3Tag lib/id3tag/audio_file.rb /^module ID3Tag$/;" m
|
|
46
|
-
ID3Tag lib/id3tag/frame_id_advisor.rb /^module ID3Tag$/;" m
|
|
47
|
-
ID3Tag lib/id3tag/frames/util/genre_names.rb /^module ID3Tag$/;" m
|
|
48
|
-
ID3Tag lib/id3tag/frames/v1/comments_frame.rb /^module ID3Tag$/;" m
|
|
49
|
-
ID3Tag lib/id3tag/frames/v1/genre_frame.rb /^module ID3Tag$/;" m
|
|
50
|
-
ID3Tag lib/id3tag/frames/v1/text_frame.rb /^module ID3Tag$/;" m
|
|
51
|
-
ID3Tag lib/id3tag/frames/v1/track_nr_frame.rb /^module ID3Tag$/;" m
|
|
52
|
-
ID3Tag lib/id3tag/frames/v2/basic_frame.rb /^module ID3Tag$/;" m
|
|
53
|
-
ID3Tag lib/id3tag/frames/v2/comments_frame.rb /^module ID3Tag$/;" m
|
|
54
|
-
ID3Tag lib/id3tag/frames/v2/frame_fabricator.rb /^module ID3Tag$/;" m
|
|
55
|
-
ID3Tag lib/id3tag/frames/v2/frame_flags.rb /^module ID3Tag$/;" m
|
|
56
|
-
ID3Tag lib/id3tag/frames/v2/frame_header_flags.rb /^module ID3Tag$/;" m
|
|
57
|
-
ID3Tag lib/id3tag/frames/v2/genre_frame.rb /^module ID3Tag$/;" m
|
|
58
|
-
ID3Tag lib/id3tag/frames/v2/genre_frame/genre_parser.rb /^module ID3Tag$/;" m
|
|
59
|
-
ID3Tag lib/id3tag/frames/v2/genre_frame/genre_parser_24.rb /^module ID3Tag$/;" m
|
|
60
|
-
ID3Tag lib/id3tag/frames/v2/genre_frame/genre_parser_pre_24.rb /^module ID3Tag$/;" m
|
|
61
|
-
ID3Tag lib/id3tag/frames/v2/involved_people_list.rb /^module ID3Tag$/;" m
|
|
62
|
-
ID3Tag lib/id3tag/frames/v2/involved_people_list_frame.rb /^module ID3Tag$/;" m
|
|
63
|
-
ID3Tag lib/id3tag/frames/v2/private_frame.rb /^module ID3Tag$/;" m
|
|
64
|
-
ID3Tag lib/id3tag/frames/v2/text_frame.rb /^module ID3Tag$/;" m
|
|
65
|
-
ID3Tag lib/id3tag/frames/v2/unique_file_id_frame.rb /^module ID3Tag$/;" m
|
|
66
|
-
ID3Tag lib/id3tag/frames/v2/user_text_frame.rb /^module ID3Tag$/;" m
|
|
67
|
-
ID3Tag lib/id3tag/id3_v1_frame_parser.rb /^module ID3Tag$/;" m
|
|
68
|
-
ID3Tag lib/id3tag/id3_v2_extended_header.rb /^module ID3Tag$/;" m
|
|
69
|
-
ID3Tag lib/id3tag/id3_v2_frame_parser.rb /^module ID3Tag$/;" m
|
|
70
|
-
ID3Tag lib/id3tag/id3_v2_tag_header.rb /^module ID3Tag$/;" m
|
|
71
|
-
ID3Tag lib/id3tag/number_util.rb /^module ID3Tag$/;" m
|
|
72
|
-
ID3Tag lib/id3tag/scope.rb /^module ID3Tag$/;" m
|
|
73
|
-
ID3Tag lib/id3tag/string_util.rb /^module ID3Tag$/;" m
|
|
74
|
-
ID3Tag lib/id3tag/synchsafe_integer.rb /^module ID3Tag$/;" m
|
|
75
|
-
ID3Tag lib/id3tag/tag.rb /^module ID3Tag$/;" m
|
|
76
|
-
ID3Tag lib/id3tag/unsynchronization.rb /^module ID3Tag$/;" m
|
|
77
|
-
ID3V1FrameParser lib/id3tag/id3_v1_frame_parser.rb /^ class ID3V1FrameParser$/;" c class:ID3Tag
|
|
78
|
-
ID3V2FrameParser lib/id3tag/id3_v2_frame_parser.rb /^ class ID3V2FrameParser$/;" c class:ID3Tag
|
|
79
|
-
ID3v2ExtendedHeader lib/id3tag/id3_v2_extended_header.rb /^ class ID3v2ExtendedHeader$/;" c class:ID3Tag
|
|
80
|
-
ID3v2TagHeader lib/id3tag/id3_v2_tag_header.rb /^ class ID3v2TagHeader$/;" c class:ID3Tag
|
|
81
|
-
InvolvedPeopleList lib/id3tag/frames/v2/involved_people_list.rb /^ class InvolvedPeopleList < TextFrame$/;" c class:ID3Tag.Frames.V2
|
|
82
|
-
InvolvedPeopleListFrame lib/id3tag/frames/v2/involved_people_list_frame.rb /^ class InvolvedPeopleListFrame < TextFrame$/;" c class:ID3Tag.Frames.V2
|
|
83
|
-
MissingGenreParser lib/id3tag/frames/v2/genre_frame.rb /^ class MissingGenreParser < StandardError; end$/;" c class:ID3Tag.Frames.V2.GenreFrame
|
|
84
|
-
NumberUtil lib/id3tag/number_util.rb /^ module NumberUtil$/;" m class:ID3Tag
|
|
85
|
-
PrivateFrame lib/id3tag/frames/v2/private_frame.rb /^ class PrivateFrame < UniqueFileIdFrame$/;" c class:ID3Tag.Frames.V2
|
|
86
|
-
Scope lib/id3tag/scope.rb /^ class Scope$/;" c class:ID3Tag
|
|
87
|
-
StringUtil lib/id3tag/string_util.rb /^ module StringUtil$/;" m class:ID3Tag
|
|
88
|
-
SynchsafeInteger lib/id3tag/synchsafe_integer.rb /^ class SynchsafeInteger$/;" c class:ID3Tag
|
|
89
|
-
Tag lib/id3tag/tag.rb /^ class Tag$/;" c class:ID3Tag
|
|
90
|
-
TextFrame lib/id3tag/frames/v1/text_frame.rb /^ class TextFrame$/;" c class:ID3Tag.Frames.V1
|
|
91
|
-
TextFrame lib/id3tag/frames/v2/text_frame.rb /^ class TextFrame < BasicFrame$/;" c class:ID3Tag.Frames.V2
|
|
92
|
-
TrackNrFrame lib/id3tag/frames/v1/track_nr_frame.rb /^ class TrackNrFrame$/;" c class:ID3Tag.Frames.V1
|
|
93
|
-
UniqueFileIdFrame lib/id3tag/frames/v2/unique_file_id_frame.rb /^ class UniqueFileIdFrame < BasicFrame$/;" c class:ID3Tag.Frames.V2
|
|
94
|
-
Unsynchronization lib/id3tag/unsynchronization.rb /^ class Unsynchronization$/;" c class:ID3Tag
|
|
95
|
-
UserTextFrame lib/id3tag/frames/v2/user_text_frame.rb /^ class UserTextFrame < TextFrame$/;" c class:ID3Tag.Frames.V2
|
|
96
|
-
Util lib/id3tag/frames/util/genre_names.rb /^ module Util$/;" m class:ID3Tag.Frames
|
|
97
|
-
V1 lib/id3tag/frames/v1/comments_frame.rb /^ module V1$/;" m class:ID3Tag.Frames
|
|
98
|
-
V1 lib/id3tag/frames/v1/genre_frame.rb /^ module V1$/;" m class:ID3Tag.Frames
|
|
99
|
-
V1 lib/id3tag/frames/v1/text_frame.rb /^ module V1$/;" m class:ID3Tag.Frames
|
|
100
|
-
V1 lib/id3tag/frames/v1/track_nr_frame.rb /^ module V1$/;" m class:ID3Tag.Frames
|
|
101
|
-
V2 lib/id3tag/frames/v2/basic_frame.rb /^ module V2$/;" m class:ID3Tag.Frames
|
|
102
|
-
V2 lib/id3tag/frames/v2/comments_frame.rb /^ module V2$/;" m class:ID3Tag.Frames
|
|
103
|
-
V2 lib/id3tag/frames/v2/frame_fabricator.rb /^ module V2$/;" m class:ID3Tag.Frames
|
|
104
|
-
V2 lib/id3tag/frames/v2/frame_flags.rb /^ module V2$/;" m class:ID3Tag.Frames
|
|
105
|
-
V2 lib/id3tag/frames/v2/frame_header_flags.rb /^ module V2$/;" m class:ID3Tag.Frames
|
|
106
|
-
V2 lib/id3tag/frames/v2/genre_frame.rb /^ module V2$/;" m class:ID3Tag.Frames
|
|
107
|
-
V2 lib/id3tag/frames/v2/genre_frame/genre_parser.rb /^ module V2$/;" m class:ID3Tag.Frames
|
|
108
|
-
V2 lib/id3tag/frames/v2/genre_frame/genre_parser_24.rb /^ module V2$/;" m class:ID3Tag.Frames
|
|
109
|
-
V2 lib/id3tag/frames/v2/genre_frame/genre_parser_pre_24.rb /^ module V2$/;" m class:ID3Tag.Frames
|
|
110
|
-
V2 lib/id3tag/frames/v2/involved_people_list.rb /^ module V2$/;" m class:ID3Tag.Frames
|
|
111
|
-
V2 lib/id3tag/frames/v2/involved_people_list_frame.rb /^ module V2$/;" m class:ID3Tag.Frames
|
|
112
|
-
V2 lib/id3tag/frames/v2/private_frame.rb /^ module V2$/;" m class:ID3Tag.Frames
|
|
113
|
-
V2 lib/id3tag/frames/v2/text_frame.rb /^ module V2$/;" m class:ID3Tag.Frames
|
|
114
|
-
V2 lib/id3tag/frames/v2/unique_file_id_frame.rb /^ module V2$/;" m class:ID3Tag.Frames
|
|
115
|
-
V2 lib/id3tag/frames/v2/user_text_frame.rb /^ module V2$/;" m class:ID3Tag.Frames
|
|
116
|
-
additional_info_byte_count lib/id3tag/frames/v2/basic_frame.rb /^ def additional_info_byte_count$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
117
|
-
additional_info_byte_count lib/id3tag/frames/v2/frame_flags.rb /^ def additional_info_byte_count$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
118
|
-
additional_info_flags_in_effect lib/id3tag/frames/v2/frame_flags.rb /^ def additional_info_flags_in_effect$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
119
|
-
advise lib/id3tag/frame_id_advisor.rb /^ def advise(frame_name)$/;" f class:ID3Tag.FrameIdAdvisor
|
|
120
|
-
album_frame lib/id3tag/id3_v1_frame_parser.rb /^ def album_frame$/;" f class:ID3Tag.ID3V1FrameParser
|
|
121
|
-
all_frames_by_id lib/id3tag/tag.rb /^ def all_frames_by_id(*ids)$/;" f class:ID3Tag
|
|
122
|
-
apply lib/id3tag/unsynchronization.rb /^ def apply$/;" f class:ID3Tag.Unsynchronization
|
|
123
|
-
artist_frame lib/id3tag/id3_v1_frame_parser.rb /^ def artist_frame$/;" f class:ID3Tag.ID3V1FrameParser
|
|
124
|
-
audio_file lib/id3tag/tag.rb /^ def audio_file$/;" f class:ID3Tag
|
|
125
|
-
blank lib/id3tag/string_util.rb /^ def self.blank?(string)$/;" F class:ID3Tag.StringUtil
|
|
126
|
-
comment_frame lib/id3tag/id3_v1_frame_parser.rb /^ def comment_frame$/;" f class:ID3Tag.ID3V1FrameParser
|
|
127
|
-
comment_frame_size lib/id3tag/id3_v1_frame_parser.rb /^ def comment_frame_size$/;" f class:ID3Tag.ID3V1FrameParser
|
|
128
|
-
compressed? lib/id3tag/frames/v2/basic_frame.rb /^ def compressed?$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
129
|
-
compressed? lib/id3tag/frames/v2/frame_flags.rb /^ def compressed?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
130
|
-
compressed? lib/id3tag/frames/v2/frame_header_flags.rb /^ def compressed?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
131
|
-
content lib/id3tag/frames/v1/comments_frame.rb /^ def content$/;" f class:ID3Tag.Frames.V1.CommentsFrame
|
|
132
|
-
content lib/id3tag/frames/v1/genre_frame.rb /^ def content$/;" f class:ID3Tag.Frames.V1.GenreFrame
|
|
133
|
-
content lib/id3tag/frames/v1/text_frame.rb /^ def content$/;" f class:ID3Tag.Frames.V1.TextFrame
|
|
134
|
-
content lib/id3tag/frames/v1/track_nr_frame.rb /^ def content$/;" f class:ID3Tag.Frames.V1.TrackNrFrame
|
|
135
|
-
content lib/id3tag/frames/v2/basic_frame.rb /^ def content$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
136
|
-
content lib/id3tag/frames/v2/comments_frame.rb /^ def content$/;" f class:ID3Tag.Frames.V2.CommentsFrame
|
|
137
|
-
content lib/id3tag/frames/v2/genre_frame.rb /^ def content$/;" f class:ID3Tag.Frames.V2.GenreFrame
|
|
138
|
-
content lib/id3tag/frames/v2/text_frame.rb /^ def content$/;" f class:ID3Tag.Frames.V2.TextFrame
|
|
139
|
-
content lib/id3tag/frames/v2/unique_file_id_frame.rb /^ def content$/;" f class:ID3Tag.Frames.V2.UniqueFileIdFrame
|
|
140
|
-
content lib/id3tag/frames/v2/user_text_frame.rb /^ def content$/;" f class:ID3Tag.Frames.V2.UserTextFrame
|
|
141
|
-
content_of_first_frame lib/id3tag/tag.rb /^ def content_of_first_frame(name)$/;" f class:ID3Tag
|
|
142
|
-
content_of_first_frame_with_language lib/id3tag/tag.rb /^ def content_of_first_frame_with_language(name, lang)$/;" f class:ID3Tag
|
|
143
|
-
content_parts lib/id3tag/frames/v2/user_text_frame.rb /^ def content_parts$/;" f class:ID3Tag.Frames.V2.UserTextFrame
|
|
144
|
-
content_split_apart_by_null_byte lib/id3tag/frames/v2/unique_file_id_frame.rb /^ def content_split_apart_by_null_byte$/;" f class:ID3Tag.Frames.V2.UniqueFileIdFrame
|
|
145
|
-
content_without_encoding_byte lib/id3tag/frames/v2/text_frame.rb /^ def content_without_encoding_byte$/;" f class:ID3Tag.Frames.V2.TextFrame
|
|
146
|
-
content_without_encoding_byte_and_language lib/id3tag/frames/v2/comments_frame.rb /^ def content_without_encoding_byte_and_language$/;" f class:ID3Tag.Frames.V2.CommentsFrame
|
|
147
|
-
convert_32bit_integer_to_string lib/id3tag/number_util.rb /^ def self.convert_32bit_integer_to_string(integer)$/;" F class:ID3Tag.NumberUtil
|
|
148
|
-
convert_string_to_32bit_integer lib/id3tag/number_util.rb /^ def self.convert_string_to_32bit_integer(string)$/;" F class:ID3Tag.NumberUtil
|
|
149
|
-
current_additional_info_map lib/id3tag/frames/v2/frame_flags.rb /^ def current_additional_info_map$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
150
|
-
current_flag_map lib/id3tag/frames/v2/frame_flags.rb /^ def current_flag_map$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
151
|
-
cut_at_null_byte lib/id3tag/string_util.rb /^ def self.cut_at_null_byte(string)$/;" F class:ID3Tag.StringUtil
|
|
152
|
-
data_length_indicator? lib/id3tag/frames/v2/basic_frame.rb /^ def data_length_indicator?$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
153
|
-
data_length_indicator? lib/id3tag/frames/v2/frame_flags.rb /^ def data_length_indicator?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
154
|
-
decode lib/id3tag/synchsafe_integer.rb /^ def decode(synchsafe_int)$/;" f class:ID3Tag.SynchsafeInteger.encode
|
|
155
|
-
desciption lib/id3tag/frames/v1/comments_frame.rb /^ def desciption$/;" f class:ID3Tag.Frames.V1.CommentsFrame
|
|
156
|
-
description lib/id3tag/frames/v2/comments_frame.rb /^ def description$/;" f class:ID3Tag.Frames.V2.CommentsFrame
|
|
157
|
-
description lib/id3tag/frames/v2/user_text_frame.rb /^ def description$/;" f class:ID3Tag.Frames.V2.UserTextFrame
|
|
158
|
-
destination_encoding lib/id3tag/frames/v1/text_frame.rb /^ def destination_encoding$/;" f class:ID3Tag.Frames.V1.TextFrame
|
|
159
|
-
destination_encoding lib/id3tag/frames/v2/text_frame.rb /^ def destination_encoding$/;" f class:ID3Tag.Frames.V2.TextFrame
|
|
160
|
-
do_unsynchronization lib/id3tag/string_util.rb /^ def self.do_unsynchronization(input)$/;" F class:ID3Tag.StringUtil
|
|
161
|
-
encode lib/id3tag/synchsafe_integer.rb /^ def encode(int)$/;" f class:ID3Tag.SynchsafeInteger
|
|
162
|
-
encoded_content lib/id3tag/frames/v2/comments_frame.rb /^ def encoded_content$/;" f class:ID3Tag.Frames.V2.CommentsFrame
|
|
163
|
-
encoded_content lib/id3tag/frames/v2/text_frame.rb /^ def encoded_content$/;" f class:ID3Tag.Frames.V2.TextFrame
|
|
164
|
-
encoding_byte_from_flags lib/id3tag/frames/v2/frame_header_flags.rb /^ def encoding_byte_from_flags$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
165
|
-
encrypted? lib/id3tag/frames/v2/basic_frame.rb /^ def encrypted?$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
166
|
-
encrypted? lib/id3tag/frames/v2/frame_flags.rb /^ def encrypted?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
167
|
-
encrypted? lib/id3tag/frames/v2/frame_header_flags.rb /^ def encrypted?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
168
|
-
encryption_id lib/id3tag/frames/v2/basic_frame.rb /^ def encryption_id$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
169
|
-
expand_abbreviation lib/id3tag/frames/v2/genre_frame/genre_parser.rb /^ def expand_abbreviation(abbreviation)$/;" f class:ID3Tag.Frames.V2.GenreFrame.GenreParser
|
|
170
|
-
experimental? lib/id3tag/id3_v2_extended_header.rb /^ def experimental?$/;" f class:ID3Tag.ID3v2ExtendedHeader
|
|
171
|
-
experimental? lib/id3tag/id3_v2_tag_header.rb /^ def experimental?$/;" f class:ID3Tag.ID3v2TagHeader
|
|
172
|
-
extended_header? lib/id3tag/id3_v2_extended_header.rb /^ def extended_header?$/;" f class:ID3Tag.ID3v2ExtendedHeader
|
|
173
|
-
extended_header? lib/id3tag/id3_v2_tag_header.rb /^ def extended_header?$/;" f class:ID3Tag.ID3v2TagHeader
|
|
174
|
-
fabricate lib/id3tag/frames/v2/frame_fabricator.rb /^ def fabricate(id, content, flags, major_version_number)$/;" f class:ID3Tag.Frames.V2.FrameFabricator
|
|
175
|
-
fabricate lib/id3tag/frames/v2/frame_fabricator.rb /^ def fabricate$/;" f class:ID3Tag.Frames.V2
|
|
176
|
-
final_size lib/id3tag/frames/v2/basic_frame.rb /^ def final_size$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
177
|
-
find_by_id lib/id3tag/frames/util/genre_names.rb /^ def self.find_by_id(id)$/;" F class:ID3Tag.Frames.Util.GenreNames
|
|
178
|
-
find_position_and_length_for_additional_info lib/id3tag/frames/v2/frame_flags.rb /^ def find_position_and_length_for_additional_info(*methods_of_interest)$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
179
|
-
first_frame_by_id lib/id3tag/tag.rb /^ def first_frame_by_id(*ids)$/;" f class:ID3Tag
|
|
180
|
-
flag lib/id3tag/frames/v2/frame_flags.rb /^ def flag(scope, name)$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
181
|
-
flags_byte lib/id3tag/id3_v2_extended_header.rb /^ def flags_byte$/;" f class:ID3Tag.ID3v2ExtendedHeader
|
|
182
|
-
flags_byte lib/id3tag/id3_v2_tag_header.rb /^ def flags_byte$/;" f class:ID3Tag.ID3v2TagHeader
|
|
183
|
-
flags_byte_pair lib/id3tag/frames/v2/frame_header_flags.rb /^ def flags_byte_pair$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
184
|
-
flags_for_scope lib/id3tag/frames/v2/frame_flags.rb /^ def flags_for_scope(scope)$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
185
|
-
footer_present? lib/id3tag/id3_v2_extended_header.rb /^ def footer_present?$/;" f class:ID3Tag.ID3v2ExtendedHeader
|
|
186
|
-
footer_present? lib/id3tag/id3_v2_tag_header.rb /^ def footer_present?$/;" f class:ID3Tag.ID3v2TagHeader
|
|
187
|
-
frame_class lib/id3tag/frames/v2/frame_fabricator.rb /^ def frame_class$/;" f class:ID3Tag.Frames.V2
|
|
188
|
-
frame_flags lib/id3tag/frames/v2/basic_frame.rb /^ def frame_flags$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
189
|
-
frame_id_length lib/id3tag/id3_v2_frame_parser.rb /^ def frame_id_length$/;" f class:ID3Tag.ID3V2FrameParser
|
|
190
|
-
frame_ids lib/id3tag/tag.rb /^ def frame_ids$/;" f class:ID3Tag
|
|
191
|
-
frames lib/id3tag/id3_v1_frame_parser.rb /^ def frames$/;" f class:ID3Tag.ID3V1FrameParser
|
|
192
|
-
frames lib/id3tag/id3_v2_frame_parser.rb /^ def frames$/;" f class:ID3Tag.ID3V2FrameParser
|
|
193
|
-
frames lib/id3tag/tag.rb /^ def frames$/;" f class:ID3Tag
|
|
194
|
-
frames_has_flags? lib/id3tag/id3_v2_frame_parser.rb /^ def frames_has_flags?$/;" f class:ID3Tag.ID3V2FrameParser
|
|
195
|
-
genre_frame lib/id3tag/id3_v1_frame_parser.rb /^ def genre_frame$/;" f class:ID3Tag.ID3V1FrameParser
|
|
196
|
-
genre_parser lib/id3tag/frames/v2/genre_frame.rb /^ def genre_parser$/;" f class:ID3Tag.Frames.V2.GenreFrame
|
|
197
|
-
genres lib/id3tag/frames/v2/genre_frame.rb /^ def genres$/;" f class:ID3Tag.Frames.V2.GenreFrame
|
|
198
|
-
genres lib/id3tag/frames/v2/genre_frame/genre_parser.rb /^ def genres$/;" f class:ID3Tag.Frames.V2.GenreFrame.GenreParser
|
|
199
|
-
genres lib/id3tag/frames/v2/genre_frame/genre_parser_24.rb /^ def genres$/;" f class:ID3Tag.Frames.V2.GenreFrame.GenreParser24
|
|
200
|
-
genres lib/id3tag/frames/v2/genre_frame/genre_parser_pre_24.rb /^ def genres$/;" f class:ID3Tag.Frames.V2.GenreFrame.GenreParserPre24
|
|
201
|
-
get_encoding_byte lib/id3tag/frames/v2/text_frame.rb /^ def get_encoding_byte$/;" f class:ID3Tag.Frames.V2.TextFrame
|
|
202
|
-
get_flags_byte lib/id3tag/id3_v2_extended_header.rb /^ def get_flags_byte$/;" f class:ID3Tag.ID3v2ExtendedHeader
|
|
203
|
-
get_flags_byte lib/id3tag/id3_v2_tag_header.rb /^ def get_flags_byte$/;" f class:ID3Tag.ID3v2TagHeader
|
|
204
|
-
get_frame lib/id3tag/tag.rb /^ def get_frame(frame_id)$/;" f class:ID3Tag
|
|
205
|
-
get_frames lib/id3tag/id3_v1_frame_parser.rb /^ def get_frames$/;" f class:ID3Tag.ID3V1FrameParser
|
|
206
|
-
get_frames lib/id3tag/id3_v2_frame_parser.rb /^ def get_frames$/;" f class:ID3Tag.ID3V2FrameParser
|
|
207
|
-
get_frames lib/id3tag/tag.rb /^ def get_frames(frame_id)$/;" f class:ID3Tag
|
|
208
|
-
get_genres lib/id3tag/frames/v2/genre_frame.rb /^ def get_genres$/;" f class:ID3Tag.Frames.V2.GenreFrame
|
|
209
|
-
get_language lib/id3tag/frames/v2/comments_frame.rb /^ def get_language$/;" f class:ID3Tag.Frames.V2.CommentsFrame
|
|
210
|
-
get_tag_size lib/id3tag/id3_v2_extended_header.rb /^ def get_tag_size$/;" f class:ID3Tag.ID3v2ExtendedHeader
|
|
211
|
-
get_tag_size lib/id3tag/id3_v2_tag_header.rb /^ def get_tag_size$/;" f class:ID3Tag.ID3v2TagHeader
|
|
212
|
-
get_tag_version_1_1? lib/id3tag/id3_v1_frame_parser.rb /^ def get_tag_version_1_1?$/;" f class:ID3Tag.ID3V1FrameParser
|
|
213
|
-
get_v2_extended_header_size lib/id3tag/audio_file.rb /^ def get_v2_extended_header_size$/;" f class:ID3Tag.AudioFile
|
|
214
|
-
get_v2_tag_header lib/id3tag/audio_file.rb /^ def get_v2_tag_header$/;" f class:ID3Tag.AudioFile
|
|
215
|
-
group_id lib/id3tag/frames/v2/basic_frame.rb /^ def group_id$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
216
|
-
grouped? lib/id3tag/frames/v2/basic_frame.rb /^ def grouped?$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
217
|
-
grouped? lib/id3tag/frames/v2/frame_flags.rb /^ def grouped?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
218
|
-
grouped? lib/id3tag/frames/v2/frame_header_flags.rb /^ def grouped?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
219
|
-
include? lib/id3tag/scope.rb /^ def include?(version)$/;" f class:ID3Tag.Scope
|
|
220
|
-
index_of_flag lib/id3tag/frames/v2/frame_flags.rb /^ def index_of_flag(scope, name)$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
221
|
-
initialize lib/id3tag/audio_file.rb /^ def initialize(file)$/;" f class:ID3Tag.AudioFile
|
|
222
|
-
initialize lib/id3tag/frame_id_advisor.rb /^ def initialize(version, major_version)$/;" f class:ID3Tag.FrameIdAdvisor
|
|
223
|
-
initialize lib/id3tag/frames/v1/genre_frame.rb /^ def initialize(id, content)$/;" f class:ID3Tag.Frames.V1.GenreFrame
|
|
224
|
-
initialize lib/id3tag/frames/v1/text_frame.rb /^ def initialize(id, content)$/;" f class:ID3Tag.Frames.V1.TextFrame
|
|
225
|
-
initialize lib/id3tag/frames/v1/track_nr_frame.rb /^ def initialize(id, content)$/;" f class:ID3Tag.Frames.V1.TrackNrFrame
|
|
226
|
-
initialize lib/id3tag/frames/v2/basic_frame.rb /^ def initialize(id, content, flags, major_version_number)$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
227
|
-
initialize lib/id3tag/frames/v2/frame_fabricator.rb /^ def initialize(id, content, flags, major_version_number)$/;" f class:ID3Tag.Frames.V2
|
|
228
|
-
initialize lib/id3tag/frames/v2/frame_flags.rb /^ def initialize(flag_bytes, major_version_number)$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
229
|
-
initialize lib/id3tag/frames/v2/frame_header_flags.rb /^ def initialize(flag_bytes, major_version_number)$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
230
|
-
initialize lib/id3tag/frames/v2/genre_frame/genre_parser.rb /^ def initialize(genre_string)$/;" f class:ID3Tag.Frames.V2.GenreFrame.GenreParser
|
|
231
|
-
initialize lib/id3tag/id3_v1_frame_parser.rb /^ def initialize(input)$/;" f class:ID3Tag.ID3V1FrameParser
|
|
232
|
-
initialize lib/id3tag/id3_v2_extended_header.rb /^ def initialize(header_chunk)$/;" f class:ID3Tag.ID3v2ExtendedHeader
|
|
233
|
-
initialize lib/id3tag/id3_v2_frame_parser.rb /^ def initialize(input, major_version_number)$/;" f class:ID3Tag.ID3V2FrameParser
|
|
234
|
-
initialize lib/id3tag/id3_v2_tag_header.rb /^ def initialize(header_chunk)$/;" f class:ID3Tag.ID3v2TagHeader
|
|
235
|
-
initialize lib/id3tag/scope.rb /^ def initialize(version)$/;" f class:ID3Tag.Scope
|
|
236
|
-
initialize lib/id3tag/tag.rb /^ def initialize(source, scope = :all)$/;" f class:ID3Tag
|
|
237
|
-
initialize lib/id3tag/unsynchronization.rb /^ def initialize(input)$/;" f class:ID3Tag.Unsynchronization
|
|
238
|
-
input_bytes lib/id3tag/unsynchronization.rb /^ def input_bytes$/;" f class:ID3Tag.Unsynchronization
|
|
239
|
-
inspect lib/id3tag/frames/v2/basic_frame.rb /^ def inspect$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
240
|
-
inspect lib/id3tag/id3_v2_extended_header.rb /^ def inspect$/;" f class:ID3Tag.ID3v2ExtendedHeader
|
|
241
|
-
inspect lib/id3tag/id3_v2_tag_header.rb /^ def inspect$/;" f class:ID3Tag.ID3v2TagHeader
|
|
242
|
-
inspectable_content lib/id3tag/frames/v2/basic_frame.rb /^ def inspectable_content$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
243
|
-
inspectable_content lib/id3tag/frames/v2/comments_frame.rb /^ def inspectable_content$/;" f class:ID3Tag.Frames.V2.CommentsFrame
|
|
244
|
-
inspectable_content lib/id3tag/frames/v2/text_frame.rb /^ def inspectable_content$/;" f class:ID3Tag.Frames.V2.TextFrame
|
|
245
|
-
inspectable_content lib/id3tag/frames/v2/unique_file_id_frame.rb /^ def inspectable_content$/;" f class:ID3Tag.Frames.V2.UniqueFileIdFrame
|
|
246
|
-
just_genres lib/id3tag/frames/v2/genre_frame/genre_parser_pre_24.rb /^ def just_genres$/;" f class:ID3Tag.Frames.V2.GenreFrame.GenreParserPre24
|
|
247
|
-
just_requirements lib/id3tag/frames/v2/genre_frame/genre_parser_pre_24.rb /^ def just_requirements$/;" f class:ID3Tag.Frames.V2.GenreFrame.GenreParserPre24
|
|
248
|
-
language lib/id3tag/frames/v1/comments_frame.rb /^ def language$/;" f class:ID3Tag.Frames.V1.CommentsFrame
|
|
249
|
-
language lib/id3tag/frames/v2/comments_frame.rb /^ def language$/;" f class:ID3Tag.Frames.V2.CommentsFrame
|
|
250
|
-
major_version_number lib/id3tag/id3_v2_extended_header.rb /^ def major_version_number$/;" f class:ID3Tag.ID3v2ExtendedHeader
|
|
251
|
-
major_version_number lib/id3tag/id3_v2_tag_header.rb /^ def major_version_number$/;" f class:ID3Tag.ID3v2TagHeader
|
|
252
|
-
minor_version_number lib/id3tag/id3_v2_extended_header.rb /^ def minor_version_number$/;" f class:ID3Tag.ID3v2ExtendedHeader
|
|
253
|
-
minor_version_number lib/id3tag/id3_v2_tag_header.rb /^ def minor_version_number$/;" f class:ID3Tag.ID3v2TagHeader
|
|
254
|
-
mp3_fixture spec/support/mp3_fixtures.rb /^def mp3_fixture(filename)$/;" f
|
|
255
|
-
output lib/id3tag/unsynchronization.rb /^ def output$/;" f class:ID3Tag.Unsynchronization
|
|
256
|
-
output_bytes lib/id3tag/unsynchronization.rb /^ def output_bytes$/;" f class:ID3Tag.Unsynchronization
|
|
257
|
-
owner_identifier lib/id3tag/frames/v2/unique_file_id_frame.rb /^ def owner_identifier$/;" f class:ID3Tag.Frames.V2.UniqueFileIdFrame
|
|
258
|
-
padding_or_eof_reached? lib/id3tag/id3_v2_frame_parser.rb /^ def padding_or_eof_reached?$/;" f class:ID3Tag.ID3V2FrameParser
|
|
259
|
-
parts lib/id3tag/frames/v2/comments_frame.rb /^ def parts$/;" f class:ID3Tag.Frames.V2.CommentsFrame
|
|
260
|
-
position_and_count_of_data_length_bytes lib/id3tag/frames/v2/basic_frame.rb /^ def position_and_count_of_data_length_bytes$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
261
|
-
position_and_count_of_data_length_bytes lib/id3tag/frames/v2/frame_flags.rb /^ def position_and_count_of_data_length_bytes$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
262
|
-
position_and_count_of_encryption_id_bytes lib/id3tag/frames/v2/basic_frame.rb /^ def position_and_count_of_encryption_id_bytes$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
263
|
-
position_and_count_of_encryption_id_bytes lib/id3tag/frames/v2/frame_flags.rb /^ def position_and_count_of_encryption_id_bytes$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
264
|
-
position_and_count_of_group_id_bytes lib/id3tag/frames/v2/basic_frame.rb /^ def position_and_count_of_group_id_bytes$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
265
|
-
position_and_count_of_group_id_bytes lib/id3tag/frames/v2/frame_flags.rb /^ def position_and_count_of_group_id_bytes$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
266
|
-
possible_frame_ids_by_name lib/id3tag/tag.rb /^ def possible_frame_ids_by_name(name)$/;" f class:ID3Tag
|
|
267
|
-
possible_v1_frame_id_by_name lib/id3tag/tag.rb /^ def possible_v1_frame_id_by_name(name)$/;" f class:ID3Tag
|
|
268
|
-
possible_v2_frame_id_by_name lib/id3tag/tag.rb /^ def possible_v2_frame_id_by_name(name)$/;" f class:ID3Tag
|
|
269
|
-
preserve_on_file_alteration? lib/id3tag/frames/v2/basic_frame.rb /^ def preserve_on_file_alteration?$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
270
|
-
preserve_on_file_alteration? lib/id3tag/frames/v2/frame_flags.rb /^ def preserve_on_file_alteration?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
271
|
-
preserve_on_file_alteration? lib/id3tag/frames/v2/frame_header_flags.rb /^ def preserve_on_file_alteration?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
272
|
-
preserve_on_tag_alteration? lib/id3tag/frames/v2/basic_frame.rb /^ def preserve_on_tag_alteration?$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
273
|
-
preserve_on_tag_alteration? lib/id3tag/frames/v2/frame_flags.rb /^ def preserve_on_tag_alteration?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
274
|
-
preserve_on_tag_alteration? lib/id3tag/frames/v2/frame_header_flags.rb /^ def preserve_on_tag_alteration?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
275
|
-
raw_content_io lib/id3tag/frames/v2/basic_frame.rb /^ def raw_content_io$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
276
|
-
read lib/id3tag.rb /^ def self.read(source, scope = :all)$/;" F class:ID3Tag
|
|
277
|
-
read lib/id3tag/tag.rb /^ def read(source, scope = :all)$/;" f class:ID3Tag.Tag
|
|
278
|
-
read_additional_info_byte lib/id3tag/frames/v2/basic_frame.rb /^ def read_additional_info_byte(position, byte_count)$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
279
|
-
read_from_pos_till_limit lib/id3tag/id3_v1_frame_parser.rb /^ def read_from_pos_till_limit(position, limit)$/;" f class:ID3Tag.ID3V1FrameParser
|
|
280
|
-
read_from_pos_till_null_byte_or_limit lib/id3tag/id3_v1_frame_parser.rb /^ def read_from_pos_till_null_byte_or_limit(position, limit)$/;" f class:ID3Tag.ID3V1FrameParser
|
|
281
|
-
read_next_bytes lib/id3tag/id3_v2_frame_parser.rb /^ def read_next_bytes(limit)$/;" f class:ID3Tag.ID3V2FrameParser
|
|
282
|
-
read_next_frame_flags lib/id3tag/id3_v2_frame_parser.rb /^ def read_next_frame_flags$/;" f class:ID3Tag.ID3V2FrameParser
|
|
283
|
-
read_next_frame_id lib/id3tag/id3_v2_frame_parser.rb /^ def read_next_frame_id$/;" f class:ID3Tag.ID3V2FrameParser
|
|
284
|
-
read_next_frame_size lib/id3tag/id3_v2_frame_parser.rb /^ def read_next_frame_size$/;" f class:ID3Tag.ID3V2FrameParser
|
|
285
|
-
read_only? lib/id3tag/frames/v2/basic_frame.rb /^ def read_only?$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
286
|
-
read_only? lib/id3tag/frames/v2/frame_flags.rb /^ def read_only?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
287
|
-
read_only? lib/id3tag/frames/v2/frame_header_flags.rb /^ def read_only?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
288
|
-
remove lib/id3tag/unsynchronization.rb /^ def remove$/;" f class:ID3Tag.Unsynchronization
|
|
289
|
-
rewind_input lib/id3tag/id3_v2_frame_parser.rb /^ def rewind_input$/;" f class:ID3Tag.ID3V2FrameParser
|
|
290
|
-
should_and_could_read_v1_frames? lib/id3tag/tag.rb /^ def should_and_could_read_v1_frames?$/;" f class:ID3Tag
|
|
291
|
-
should_and_could_read_v2_frames? lib/id3tag/tag.rb /^ def should_and_could_read_v2_frames?$/;" f class:ID3Tag
|
|
292
|
-
source_encoding lib/id3tag/frames/v1/text_frame.rb /^ def source_encoding$/;" f class:ID3Tag.Frames.V1.TextFrame
|
|
293
|
-
source_encoding lib/id3tag/frames/v2/text_frame.rb /^ def source_encoding$/;" f class:ID3Tag.Frames.V2.TextFrame
|
|
294
|
-
split_by_null_byte lib/id3tag/string_util.rb /^ def self.split_by_null_byte(string)$/;" F class:ID3Tag.StringUtil
|
|
295
|
-
status_byte_from_flags lib/id3tag/frames/v2/frame_header_flags.rb /^ def status_byte_from_flags$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
296
|
-
tag_size lib/id3tag/id3_v2_extended_header.rb /^ def tag_size$/;" f class:ID3Tag.ID3v2ExtendedHeader
|
|
297
|
-
tag_size lib/id3tag/id3_v2_tag_header.rb /^ def tag_size$/;" f class:ID3Tag.ID3v2TagHeader
|
|
298
|
-
tag_size_bytes lib/id3tag/id3_v2_extended_header.rb /^ def tag_size_bytes$/;" f class:ID3Tag.ID3v2ExtendedHeader
|
|
299
|
-
tag_size_bytes lib/id3tag/id3_v2_tag_header.rb /^ def tag_size_bytes$/;" f class:ID3Tag.ID3v2TagHeader
|
|
300
|
-
tag_version_1_1? lib/id3tag/id3_v1_frame_parser.rb /^ def tag_version_1_1?$/;" f class:ID3Tag.ID3V1FrameParser
|
|
301
|
-
text lib/id3tag/frames/v1/comments_frame.rb /^ def text$/;" f class:ID3Tag.Frames.V1.CommentsFrame
|
|
302
|
-
text lib/id3tag/frames/v2/comments_frame.rb /^ def text$/;" f class:ID3Tag.Frames.V2.CommentsFrame
|
|
303
|
-
title_frame lib/id3tag/id3_v1_frame_parser.rb /^ def title_frame$/;" f class:ID3Tag.ID3V1FrameParser
|
|
304
|
-
track_nr_frame lib/id3tag/id3_v1_frame_parser.rb /^ def track_nr_frame$/;" f class:ID3Tag.ID3V1FrameParser
|
|
305
|
-
undo_unsynchronization lib/id3tag/string_util.rb /^ def self.undo_unsynchronization(input)$/;" F class:ID3Tag.StringUtil
|
|
306
|
-
unsynchronisation? lib/id3tag/id3_v2_extended_header.rb /^ def unsynchronisation?$/;" f class:ID3Tag.ID3v2ExtendedHeader
|
|
307
|
-
unsynchronisation? lib/id3tag/id3_v2_tag_header.rb /^ def unsynchronisation?$/;" f class:ID3Tag.ID3v2TagHeader
|
|
308
|
-
unsynchronised? lib/id3tag/frames/v2/basic_frame.rb /^ def unsynchronised?$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
309
|
-
unsynchronised? lib/id3tag/frames/v2/frame_flags.rb /^ def unsynchronised?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
310
|
-
usable_content lib/id3tag/frames/v2/basic_frame.rb /^ def usable_content$/;" f class:ID3Tag.Frames.V2.BasicFrame
|
|
311
|
-
usable_encoding_byte_from_flags? lib/id3tag/frames/v2/frame_header_flags.rb /^ def usable_encoding_byte_from_flags?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
312
|
-
usable_status_byte_from_flags? lib/id3tag/frames/v2/frame_header_flags.rb /^ def usable_status_byte_from_flags?$/;" f class:ID3Tag.Frames.V2.FrameFlags
|
|
313
|
-
v1_frames lib/id3tag/tag.rb /^ def v1_frames$/;" f class:ID3Tag
|
|
314
|
-
v1_tag_body lib/id3tag/audio_file.rb /^ def v1_tag_body$/;" f class:ID3Tag.AudioFile
|
|
315
|
-
v1_tag_present? lib/id3tag/audio_file.rb /^ def v1_tag_present?$/;" f class:ID3Tag.AudioFile
|
|
316
|
-
v2_extended_header_size lib/id3tag/audio_file.rb /^ def v2_extended_header_size$/;" f class:ID3Tag.AudioFile
|
|
317
|
-
v2_extended_header_size_bytes lib/id3tag/audio_file.rb /^ def v2_extended_header_size_bytes$/;" f class:ID3Tag.AudioFile
|
|
318
|
-
v2_frames lib/id3tag/tag.rb /^ def v2_frames$/;" f class:ID3Tag
|
|
319
|
-
v2_tag_body lib/id3tag/audio_file.rb /^ def v2_tag_body$/;" f class:ID3Tag.AudioFile
|
|
320
|
-
v2_tag_frame_and_padding_position lib/id3tag/audio_file.rb /^ def v2_tag_frame_and_padding_position$/;" f class:ID3Tag.AudioFile
|
|
321
|
-
v2_tag_frame_and_padding_size lib/id3tag/audio_file.rb /^ def v2_tag_frame_and_padding_size$/;" f class:ID3Tag.AudioFile
|
|
322
|
-
v2_tag_header lib/id3tag/audio_file.rb /^ def v2_tag_header$/;" f class:ID3Tag.AudioFile
|
|
323
|
-
v2_tag_major_version_number lib/id3tag/audio_file.rb /^ def v2_tag_major_version_number$/;" f class:ID3Tag.AudioFile
|
|
324
|
-
v2_tag_minor_version_number lib/id3tag/audio_file.rb /^ def v2_tag_minor_version_number$/;" f class:ID3Tag.AudioFile
|
|
325
|
-
v2_tag_present? lib/id3tag/audio_file.rb /^ def v2_tag_present?$/;" f class:ID3Tag.AudioFile
|
|
326
|
-
v2_tag_version lib/id3tag/audio_file.rb /^ def v2_tag_version$/;" f class:ID3Tag.AudioFile
|
|
327
|
-
version_ids lib/id3tag/frame_id_advisor.rb /^ def version_ids$/;" f class:ID3Tag.FrameIdAdvisor
|
|
328
|
-
version_number lib/id3tag/id3_v2_extended_header.rb /^ def version_number$/;" f class:ID3Tag.ID3v2ExtendedHeader
|
|
329
|
-
version_number lib/id3tag/id3_v2_tag_header.rb /^ def version_number$/;" f class:ID3Tag.ID3v2TagHeader
|
|
330
|
-
version_of_interest lib/id3tag/frame_id_advisor.rb /^ def version_of_interest$/;" f class:ID3Tag.FrameIdAdvisor
|
|
331
|
-
year_frame lib/id3tag/id3_v1_frame_parser.rb /^ def year_frame$/;" f class:ID3Tag.ID3V1FrameParser
|