musix_match 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -4,7 +4,7 @@ module MusixMatch
4
4
  class APIKeyNotSpecifiedException < Exception; end
5
5
 
6
6
  class Base
7
- API_URL = 'http://api.musixmatch.com/ws/1.0'
7
+ API_URL = 'http://api.musixmatch.com/ws/1.1'
8
8
 
9
9
  def self.api_key=(value)
10
10
  @@api_key = value
@@ -3,7 +3,7 @@ module MusixMatch
3
3
  class Lyrics
4
4
  include Model
5
5
 
6
- model_with_attributes :lyrics_id, :lyrics_body, :track_name, :artist_name
6
+ model_with_attributes :lyrics_id, :lyrics_body, :track_name, :artist_name, :script_tracking_url
7
7
  end
8
8
  end
9
9
  end
@@ -0,0 +1,9 @@
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
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: musix_match
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 5
10
- version: 0.1.5
9
+ - 6
10
+ version: 0.1.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Andrea Franz
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-10-02 00:00:00 +02:00
18
+ date: 2010-11-09 00:00:00 -05:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -71,6 +71,7 @@ files:
71
71
  - lib/musix_match/lyrics_search_result.rb
72
72
  - lib/musix_match/models/lyrics.rb
73
73
  - lib/musix_match/models/model.rb
74
+ - lib/musix_match/models/subtitle.rb
74
75
  - lib/musix_match/models/track.rb
75
76
  - lib/musix_match/track_find_result.rb
76
77
  - lib/musix_match/track_search_result.rb