musix_match 0.1.12 → 0.1.13

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.
@@ -3,7 +3,9 @@ module MusixMatch
3
3
  class Track
4
4
  include Model
5
5
 
6
- model_with_attributes :track_id, :track_mbid, :lyrics_id, :track_name, :artist_id, :artist_mbid, :artist_name
6
+ model_with_attributes :track_id, :track_mbid, :track_name, :track_mbid, :track_length, :lyrics_id, :instrumental, :subtitle_id,
7
+ :artist_id, :artist_mbid, :artist_name, :artist_mbid,
8
+ :album_name, :album_id, :album_coverart_100x100
7
9
 
8
10
  def self.get_chart(options={})
9
11
  API::TrackChart.get_chart(options)
metadata CHANGED
@@ -1,12 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: musix_match
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 0
7
- - 1
8
- - 12
9
- version: 0.1.12
4
+ prerelease:
5
+ version: 0.1.13
10
6
  platform: ruby
11
7
  authors:
12
8
  - Andrea Franz
@@ -14,7 +10,7 @@ autorequire:
14
10
  bindir: bin
15
11
  cert_chain: []
16
12
 
17
- date: 2011-01-08 00:00:00 +01:00
13
+ date: 2011-04-19 00:00:00 +02:00
18
14
  default_executable:
19
15
  dependencies:
20
16
  - !ruby/object:Gem::Dependency
@@ -25,8 +21,6 @@ dependencies:
25
21
  requirements:
26
22
  - - ">="
27
23
  - !ruby/object:Gem::Version
28
- segments:
29
- - 0
30
24
  version: "0"
31
25
  type: :runtime
32
26
  version_requirements: *id001
@@ -38,10 +32,6 @@ dependencies:
38
32
  requirements:
39
33
  - - ">="
40
34
  - !ruby/object:Gem::Version
41
- segments:
42
- - 0
43
- - 6
44
- - 1
45
35
  version: 0.6.1
46
36
  type: :runtime
47
37
  version_requirements: *id002
@@ -70,7 +60,6 @@ files:
70
60
  - lib/musix_match/lyrics_search_result.rb
71
61
  - lib/musix_match/models/lyrics.rb
72
62
  - lib/musix_match/models/model.rb
73
- - lib/musix_match/models/subtitle.rb
74
63
  - lib/musix_match/models/track.rb
75
64
  - lib/musix_match/track_find_result.rb
76
65
  - lib/musix_match/track_search_result.rb
@@ -103,21 +92,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
103
92
  requirements:
104
93
  - - ">="
105
94
  - !ruby/object:Gem::Version
106
- segments:
107
- - 0
108
95
  version: "0"
109
96
  required_rubygems_version: !ruby/object:Gem::Requirement
110
97
  none: false
111
98
  requirements:
112
99
  - - ">="
113
100
  - !ruby/object:Gem::Version
114
- segments:
115
- - 0
116
101
  version: "0"
117
102
  requirements: []
118
103
 
119
104
  rubyforge_project:
120
- rubygems_version: 1.3.7
105
+ rubygems_version: 1.5.0
121
106
  signing_key:
122
107
  specification_version: 3
123
108
  summary: API wrapper for musixmatch.com API's
@@ -1,9 +0,0 @@
1
- module MusixMatch
2
- module Models
3
- class Subtitle
4
- include Model
5
-
6
- model_with_attributes :subtitle_id, :subtitle_body, :subtitle_language
7
- end
8
- end
9
- end