rapgenius 1.0.0 → 1.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cba91ddf9f2be805d1fdf8c884a3474b893ec741
4
- data.tar.gz: 41f02951bd8769319f5ed6a4f4a28a84e38baac3
3
+ metadata.gz: 5040f83a635c83e9f479628c49dc22355cc3ca06
4
+ data.tar.gz: f6eea1e71c64e84e5f5d5426e6f93dc4cf41ea9b
5
5
  SHA512:
6
- metadata.gz: 2632e2bac0a238c1d1f7989cbe3e3e72e34b7c8b7e4fb442cfa40473fc26472532220ad46b9007849ba630c1cf6cc94f765bcb967d4ac5d13256ff69f0314950
7
- data.tar.gz: d4f89f5534f08a6ee69a6abefef724ba659f5994dbe766ab58af6bd64dc2be4bb941231ded1ced2d409ce211252711d5e94b451c4c14562dc3508671660207ac
6
+ metadata.gz: b661931a5289f02611bc4c60e0325f006e5bda456a2f8106590640206c7b6beefb1fe0fbfab6a22b00e40eb3c2ad9ce000c274fd75942c7724a4e35b7e5f300a
7
+ data.tar.gz: 5792916e81cb115f397fe765130264d7feaf841cb03e30aa5b16d0561c91c790e77797abd0e13a30b51686678dfa83e63229df8e51e555df8caa02749bded69a
data/.gitignore CHANGED
@@ -1,4 +1,3 @@
1
1
  Gemfile.lock
2
- spec/support/cassettes
3
2
  .bundle/
4
3
  pkg/
data/README.md CHANGED
@@ -130,6 +130,10 @@ artist.description
130
130
 
131
131
  artist.songs
132
132
  # => [#<RapGenius::Song:0x007fccdb884398...]
133
+
134
+ # Songs for an artist load in pages of 25
135
+ artist.songs(page: 2)
136
+ # => [#<RapGenius::Song:0x007fccdb884398...]
133
137
  ```
134
138
 
135
139
  ## Contributing
@@ -36,8 +36,13 @@ module RapGenius
36
36
  end.flatten.join("")
37
37
  end
38
38
 
39
- def songs
40
- @songs ||= fetch("/artists/#{@id}/songs")["response"]["songs"].map do |song|
39
+ # You seem to be able to load 25 songs at a time for an artist. I haven't
40
+ # found a way to vary the number you get back from the query, but you can
41
+ # paginate through in blocks of 25 songs.
42
+ def songs(options = {page: 1})
43
+ songs_url = "/artists/#{@id}/songs/?page=#{options[:page]}"
44
+
45
+ fetch(songs_url)["response"]["songs"].map do |song|
41
46
  Song.new(
42
47
  artist: Artist.new(
43
48
  name: song["primary_artist"]["name"],
@@ -1,3 +1,3 @@
1
1
  module RapGenius
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
@@ -13,12 +13,17 @@ module RapGenius
13
13
  context "#songs" do
14
14
  subject { artist.songs }
15
15
 
16
- # The iOS app only loads a certain number, and doesn't (appear to)
17
- # support pagination
18
- its(:count) { should eq 25}
19
-
16
+ its(:count) { should eq 25 }
20
17
  its(:last) { should be_a Song }
21
18
  its("last.title") { should eq "Bitch Is Crazy" }
19
+
20
+ context "pagination" do
21
+ subject { artist.songs(page: 3) }
22
+
23
+ its(:last) { should be_a Song }
24
+ its(:count) { should eq 25 }
25
+ its("last.title") { should eq "Versace" }
26
+ end
22
27
  end
23
28
 
24
29
  context "a non-existent artist ID" do
@@ -32,7 +32,7 @@ module RapGenius
32
32
 
33
33
  context "#media" do
34
34
  subject { song.media }
35
- its(:length) { should eq 2 }
35
+ its(:length) { should eq 3 }
36
36
  its(:first) { should be_a Media }
37
37
  its("first.provider") { should eq "soundcloud" }
38
38
  end
@@ -47,10 +47,10 @@ module RapGenius
47
47
  end
48
48
 
49
49
  its(:images) { should include "http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif" }
50
- its(:pyongs) { should eq 22 }
50
+ its(:pyongs) { should eq 30 }
51
51
  its(:hot?) { should eq false }
52
- its(:views) { should eq 1834811 }
53
- its(:concurrent_viewers) { should eq 9 }
52
+ its(:views) { should eq 1843565 }
53
+ its(:concurrent_viewers) { should eq 8 }
54
54
 
55
55
 
56
56
  context "a non-existent song ID" do
@@ -0,0 +1,268 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.rapgenius.com/artists/130/songs
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - rapgenius.rb v1.0.0
12
+ response:
13
+ status:
14
+ code: 200
15
+ message: OK
16
+ headers:
17
+ Cache-Control:
18
+ - private, max-age=0, must-revalidate
19
+ Content-Type:
20
+ - application/json; charset=utf-8
21
+ Date:
22
+ - Mon, 27 Jan 2014 22:10:14 GMT
23
+ Etag:
24
+ - '"d41131ec03f64d6149aac44dfb2760e9"'
25
+ Server:
26
+ - nginx/1.4.1
27
+ Status:
28
+ - 200 OK
29
+ X-Runtime:
30
+ - '75'
31
+ Content-Length:
32
+ - '9073'
33
+ Connection:
34
+ - keep-alive
35
+ body:
36
+ encoding: UTF-8
37
+ string: '{"response":{"songs":[{"updated_by_human_at":1379540523,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"title":"2011
38
+ Juno Awards In Toronto","stats":{"hot":false,"pageviews":1522},"annotation_count":3,"verified_annotation_count":0,"id":214614},{"updated_by_human_at":1390693486,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":44,"title":"All
39
+ Me","stats":{"concurrents":17,"hot":false,"pageviews":2201501},"annotation_count":87,"verified_annotation_count":2,"id":196551},{"updated_by_human_at":1388340209,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":3,"title":"Trust
40
+ Issues","stats":{"concurrents":4,"hot":false,"pageviews":241283},"annotation_count":34,"verified_annotation_count":0,"id":51360},{"updated_by_human_at":1385440338,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":3,"title":"Fireworks","stats":{"hot":false,"pageviews":150860},"annotation_count":46,"verified_annotation_count":0,"id":581},{"updated_by_human_at":1390541756,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":2,"title":"Over","stats":{"concurrents":3,"hot":false,"pageviews":238363},"annotation_count":36,"verified_annotation_count":0,"id":322},{"updated_by_human_at":1365880220,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"title":"Make
41
+ Things Right","stats":{"hot":false,"pageviews":5316},"annotation_count":19,"verified_annotation_count":0,"id":18066},{"updated_by_human_at":1387865621,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"title":"Come
42
+ Winter","stats":{"hot":false,"pageviews":24311},"annotation_count":53,"verified_annotation_count":0,"id":3100},{"updated_by_human_at":1365880200,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"title":"Thrill
43
+ Is Gone","stats":{"hot":false,"pageviews":6631},"annotation_count":40,"verified_annotation_count":0,"id":5168},{"updated_by_human_at":1389646403,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"title":"Try
44
+ Harder","stats":{"hot":false,"pageviews":5467},"annotation_count":20,"verified_annotation_count":0,"id":5166},{"updated_by_human_at":1378658552,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"title":"Mardi
45
+ Gras","stats":{"hot":false,"pageviews":7993},"annotation_count":14,"verified_annotation_count":0,"id":51146},{"updated_by_human_at":1390142872,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":10,"title":"The
46
+ Real Her","stats":{"concurrents":4,"hot":false,"pageviews":771087},"annotation_count":33,"verified_annotation_count":0,"id":55599},{"updated_by_human_at":1373263543,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"title":"Closer","stats":{"hot":false,"pageviews":43059},"annotation_count":62,"verified_annotation_count":0,"id":2387},{"updated_by_human_at":1365881919,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"title":"The
47
+ Last Hope","stats":{"hot":false,"pageviews":8782},"annotation_count":33,"verified_annotation_count":0,"id":2517},{"updated_by_human_at":1381595863,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":2,"title":"Apology
48
+ for Autism Line","stats":{"hot":false,"pageviews":2416},"annotation_count":5,"verified_annotation_count":0,"id":193900},{"updated_by_human_at":1390492881,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"title":"ATF
49
+ Radio freestyle","stats":{"hot":false,"pageviews":1153},"annotation_count":4,"verified_annotation_count":0,"id":68366},{"updated_by_human_at":1319586959,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"title":"Baby
50
+ Come With Me","stats":{"hot":false,"pageviews":10307},"annotation_count":9,"verified_annotation_count":0,"id":49098},{"updated_by_human_at":1362028629,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":2,"title":"Bag
51
+ Jackin Bitches","stats":{"hot":false,"pageviews":8207},"annotation_count":13,"verified_annotation_count":0,"id":57290},{"updated_by_human_at":1390366196,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":22,"title":"Bar
52
+ Mitzvah in 1999","stats":{"hot":false,"pageviews":6831},"annotation_count":15,"verified_annotation_count":0,"id":343015},{"updated_by_human_at":1389120705,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":1,"title":"Beautiful
53
+ Music","stats":{"hot":false,"pageviews":9734},"annotation_count":46,"verified_annotation_count":0,"id":1182},{"updated_by_human_at":1367805550,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"title":"Best
54
+ Friend","stats":{"hot":false,"pageviews":60273},"annotation_count":21,"verified_annotation_count":0,"id":65768},{"updated_by_human_at":1390470282,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":10,"title":"All
55
+ Of The Lights (Remix)","stats":{"hot":false,"pageviews":105441},"annotation_count":63,"verified_annotation_count":0,"id":5437},{"updated_by_human_at":1385869096,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":4,"title":"We''ll
56
+ Be Fine","stats":{"hot":false,"pageviews":495839},"annotation_count":26,"verified_annotation_count":0,"id":58341},{"updated_by_human_at":1355518523,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"title":"We''ll
57
+ be Fine (French Version)","stats":{"hot":false,"pageviews":1838},"annotation_count":15,"verified_annotation_count":0,"id":87595},{"updated_by_human_at":1389119873,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"title":"Good
58
+ Riddance (Aristo Diss)","stats":{"hot":false,"pageviews":14695},"annotation_count":30,"verified_annotation_count":0,"id":51974},{"updated_by_human_at":1372025575,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"title":"Bitch
59
+ Is Crazy","stats":{"hot":false,"pageviews":12069},"annotation_count":8,"verified_annotation_count":0,"id":18051}]},"meta":{"status":200}}'
60
+ http_version:
61
+ recorded_at: Mon, 27 Jan 2014 22:10:14 GMT
62
+ - request:
63
+ method: get
64
+ uri: https://api.rapgenius.com/artists/130/songs/?page=1
65
+ body:
66
+ encoding: US-ASCII
67
+ string: ''
68
+ headers:
69
+ User-Agent:
70
+ - rapgenius.rb v1.0.0
71
+ response:
72
+ status:
73
+ code: 200
74
+ message: OK
75
+ headers:
76
+ Cache-Control:
77
+ - private, max-age=0, must-revalidate
78
+ Content-Type:
79
+ - application/json; charset=utf-8
80
+ Date:
81
+ - Sat, 01 Feb 2014 22:05:04 GMT
82
+ Etag:
83
+ - '"f1b4a295d5d198ed2cdbaa73b7ec3bce"'
84
+ Server:
85
+ - nginx/1.4.1
86
+ Status:
87
+ - 200 OK
88
+ X-Runtime:
89
+ - '28'
90
+ Content-Length:
91
+ - '9057'
92
+ Connection:
93
+ - keep-alive
94
+ body:
95
+ encoding: UTF-8
96
+ string: '{"response":{"songs":[{"annotation_count":3,"verified_annotation_count":0,"title":"2011
97
+ Juno Awards In Toronto","updated_by_human_at":1379540523,"stats":{"pageviews":1555,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"id":214614},{"annotation_count":87,"verified_annotation_count":2,"title":"All
98
+ Me","updated_by_human_at":1390693486,"stats":{"pageviews":2227313,"concurrents":10,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":91,"id":196551},{"annotation_count":34,"verified_annotation_count":0,"title":"Trust
99
+ Issues","updated_by_human_at":1388340209,"stats":{"pageviews":243167,"concurrents":2,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":3,"id":51360},{"annotation_count":48,"verified_annotation_count":0,"title":"Fireworks","updated_by_human_at":1391017451,"stats":{"pageviews":151973,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":5,"id":581},{"annotation_count":37,"verified_annotation_count":0,"title":"Over","updated_by_human_at":1391017866,"stats":{"pageviews":239859,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":4,"id":322},{"annotation_count":19,"verified_annotation_count":0,"title":"Make
100
+ Things Right","updated_by_human_at":1365880220,"stats":{"pageviews":5346,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"id":18066},{"annotation_count":53,"verified_annotation_count":0,"title":"Come
101
+ Winter","updated_by_human_at":1387865621,"stats":{"pageviews":24503,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"id":3100},{"annotation_count":40,"verified_annotation_count":0,"title":"Thrill
102
+ Is Gone","updated_by_human_at":1365880200,"stats":{"pageviews":6667,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"id":5168},{"annotation_count":20,"verified_annotation_count":0,"title":"Try
103
+ Harder","updated_by_human_at":1389646403,"stats":{"pageviews":5516,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"id":5166},{"annotation_count":14,"verified_annotation_count":0,"title":"Mardi
104
+ Gras","updated_by_human_at":1378658552,"stats":{"pageviews":8053,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"id":51146},{"annotation_count":33,"verified_annotation_count":0,"title":"The
105
+ Real Her","updated_by_human_at":1390142872,"stats":{"pageviews":773942,"concurrents":2,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":12,"id":55599},{"annotation_count":62,"verified_annotation_count":0,"title":"Closer","updated_by_human_at":1373263543,"stats":{"pageviews":43447,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"id":2387},{"annotation_count":33,"verified_annotation_count":0,"title":"The
106
+ Last Hope","updated_by_human_at":1365881919,"stats":{"pageviews":8859,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"id":2517},{"annotation_count":5,"verified_annotation_count":0,"title":"Apology
107
+ for Autism Line","updated_by_human_at":1381595863,"stats":{"pageviews":2450,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":2,"id":193900},{"annotation_count":4,"verified_annotation_count":0,"title":"ATF
108
+ Radio freestyle","updated_by_human_at":1390492881,"stats":{"pageviews":1175,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"id":68366},{"annotation_count":9,"verified_annotation_count":0,"title":"Baby
109
+ Come With Me","updated_by_human_at":1319586959,"stats":{"pageviews":10366,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"id":49098},{"annotation_count":13,"verified_annotation_count":0,"title":"Bag
110
+ Jackin Bitches","updated_by_human_at":1362028629,"stats":{"pageviews":8229,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":2,"id":57290},{"annotation_count":15,"verified_annotation_count":0,"title":"Bar
111
+ Mitzvah in 1999","updated_by_human_at":1390924453,"stats":{"pageviews":7247,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":23,"id":343015},{"annotation_count":46,"verified_annotation_count":0,"title":"Beautiful
112
+ Music","updated_by_human_at":1389120705,"stats":{"pageviews":9796,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":1,"id":1182},{"annotation_count":21,"verified_annotation_count":0,"title":"Best
113
+ Friend","updated_by_human_at":1367805550,"stats":{"pageviews":60573,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"id":65768},{"annotation_count":63,"verified_annotation_count":0,"title":"All
114
+ Of The Lights (Remix)","updated_by_human_at":1390470282,"stats":{"pageviews":105990,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":10,"id":5437},{"annotation_count":26,"verified_annotation_count":0,"title":"We''ll
115
+ Be Fine","updated_by_human_at":1385869096,"stats":{"pageviews":497353,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":5,"id":58341},{"annotation_count":15,"verified_annotation_count":0,"title":"We''ll
116
+ be Fine (French Version)","updated_by_human_at":1355518523,"stats":{"pageviews":1844,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"id":87595},{"annotation_count":30,"verified_annotation_count":0,"title":"Good
117
+ Riddance (Aristo Diss)","updated_by_human_at":1389119873,"stats":{"pageviews":14827,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"id":51974},{"annotation_count":8,"verified_annotation_count":0,"title":"Bitch
118
+ Is Crazy","updated_by_human_at":1372025575,"stats":{"pageviews":12161,"hot":false},"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"pyongs_count":null,"id":18051}]},"meta":{"status":200}}'
119
+ http_version:
120
+ recorded_at: Sat, 01 Feb 2014 22:05:17 GMT
121
+ - request:
122
+ method: get
123
+ uri: https://api.rapgenius.com/artists/130
124
+ body:
125
+ encoding: US-ASCII
126
+ string: ''
127
+ headers:
128
+ User-Agent:
129
+ - rapgenius.rb v1.0.0
130
+ response:
131
+ status:
132
+ code: 200
133
+ message: OK
134
+ headers:
135
+ Cache-Control:
136
+ - private, max-age=0, must-revalidate
137
+ Content-Type:
138
+ - application/json; charset=utf-8
139
+ Date:
140
+ - Sat, 01 Feb 2014 22:05:07 GMT
141
+ Etag:
142
+ - '"2677ffefc8fdd2c0efa9fbf1e2b70c2b"'
143
+ Server:
144
+ - nginx/1.4.1
145
+ Status:
146
+ - 200 OK
147
+ X-Runtime:
148
+ - '9'
149
+ Content-Length:
150
+ - '2620'
151
+ Connection:
152
+ - keep-alive
153
+ body:
154
+ encoding: UTF-8
155
+ string: '{"response":{"artist":{"description":{"dom":{"tag":"root","children":[{"tag":"p","children":["Drake
156
+ is part of a generation of new rappers, along with ",{"tag":"a","attributes":{"href":"http://rapgenius.com/artists/Wiz-khalifa"},"children":["Wiz
157
+ Khalifa"]},", ",{"tag":"a","attributes":{"href":"http://rapgenius.com/artists/Kid-cudi"},"children":["Kid
158
+ Cudi"]}," and others, who came up through internet mixtapes. Drizzy put out
159
+ three mixtapes from 2006 to 2009. These mixtapes got him the attention of
160
+ ",{"tag":"a","attributes":{"href":"http://rapgenius.com/artists/Lil-wayne"},"children":["Lil
161
+ Wayne"]},", and spawned the hit singles ",{"tag":"a","attributes":{"href":"http://rapgenius.com/lyrics/Drake-ft-eminem-kanye-west-and-lil-wayne/Forever"},"data":{"api_path":"/songs/147"},"children":["\u201cForever\u201d"]},"
162
+ and ",{"tag":"a","attributes":{"href":"http://rapgenius.com/lyrics/Drake/Best-i-ever-had"},"data":{"api_path":"/songs/672"},"children":["\u201cBest
163
+ I Ever Had.\u201d"]}," During this period, Drake also made a slew of guest
164
+ appearances on tracks by artists from ",{"tag":"a","attributes":{"href":"http://rapgenius.com/lyrics/Dj-khaled-ft-drake-lil-wayne-rick-ross-usher-and-young-jeezy/Fed-up"},"data":{"api_path":"/songs/2687"},"children":["DJ
165
+ Khaled"]}," to ",{"tag":"a","attributes":{"href":"http://rapgenius.com/lyrics/Jay-z-ft-drake/Off-that"},"data":{"api_path":"/songs/674"},"children":["Jay-Z"]}]},"",{"tag":"p","children":["After
166
+ years without a record deal, Drake finally signed to Lil Wayne\u2019s Young
167
+ Money Entertainment label in 2009. And in 2010, Drake released his debut album
168
+ ",{"tag":"a","attributes":{"href":"http://rapgenius.com/posts/Drake-thank-me-later-all-the-lyrics-to-every-song-explained"},"children":[{"tag":"em","children":["Thank
169
+ Me Later"]}]}," to critical acclaim. His second album, ",{"tag":"em","children":[{"tag":"a","attributes":{"href":"http://rapgenius.com/albums/Drake/Take-care"},"children":["Take
170
+ Care"]}]},", dropped in November 2011 and ",{"tag":"a","attributes":{"href":"http://www.youtube.com/watch?v=5s5dLSu3pyc","rel":"nofollow"},"children":["celebrated"]},"
171
+ with his crew for earning his first Grammy Award (for Best Rap Album) for
172
+ the album. His third project ",{"tag":"em","children":[{"tag":"a","attributes":{"href":"http://rapgenius.com/albums/Drake/Nothing-was-the-same"},"children":["Nothing
173
+ Was The Same"]}]}," was released September 24th, 2013."]}]}},"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","user":null,"url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130}},"meta":{"status":200}}'
174
+ http_version:
175
+ recorded_at: Sat, 01 Feb 2014 22:05:20 GMT
176
+ - request:
177
+ method: get
178
+ uri: https://api.rapgenius.com/artists/130/songs/?page=3
179
+ body:
180
+ encoding: US-ASCII
181
+ string: ''
182
+ headers:
183
+ User-Agent:
184
+ - rapgenius.rb v1.0.0
185
+ response:
186
+ status:
187
+ code: 200
188
+ message: OK
189
+ headers:
190
+ Cache-Control:
191
+ - private, max-age=0, must-revalidate
192
+ Content-Type:
193
+ - application/json; charset=utf-8
194
+ Date:
195
+ - Sat, 01 Feb 2014 22:05:08 GMT
196
+ Etag:
197
+ - '"7279da41bd6d9d30263a9860e6b7d274"'
198
+ Server:
199
+ - nginx/1.4.1
200
+ Status:
201
+ - 200 OK
202
+ X-Runtime:
203
+ - '24'
204
+ Content-Length:
205
+ - '8897'
206
+ Connection:
207
+ - keep-alive
208
+ body:
209
+ encoding: UTF-8
210
+ string: '{"response":{"songs":[{"verified_annotation_count":0,"title":"Started
211
+ From The Bottom Remix","updated_by_human_at":1364255261,"stats":{"hot":false,"pageviews":2304},"pyongs_count":null,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":0,"id":124287},{"verified_annotation_count":0,"title":"Make
212
+ Daddy Proud","updated_by_human_at":1384388317,"stats":{"hot":false,"pageviews":51050},"pyongs_count":null,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":14,"id":112209},{"verified_annotation_count":0,"title":"Brand
213
+ New","updated_by_human_at":1378436149,"stats":{"hot":false,"pageviews":51160},"pyongs_count":null,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":17,"id":4090},{"verified_annotation_count":0,"title":"Sooner
214
+ Than Later","updated_by_human_at":1386470270,"stats":{"hot":false,"pageviews":59638},"pyongs_count":null,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":23,"id":3571},{"verified_annotation_count":0,"title":"Video
215
+ Girl","updated_by_human_at":1388864391,"stats":{"hot":false,"pageviews":6752},"pyongs_count":null,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":35,"id":5033},{"verified_annotation_count":0,"title":"Deceiving","updated_by_human_at":1389554612,"stats":{"hot":false,"pageviews":22461},"pyongs_count":null,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":40,"id":2612},{"verified_annotation_count":0,"title":"Del
216
+ it","updated_by_human_at":1379306887,"stats":{"hot":false},"pyongs_count":null,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":0,"id":18073},{"verified_annotation_count":0,"title":"Heat
217
+ of the Moment","updated_by_human_at":1387829987,"stats":{"hot":false,"pageviews":10401},"pyongs_count":3,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":2,"id":240199},{"verified_annotation_count":0,"title":"Jodeci
218
+ Freestyle","updated_by_human_at":1388490984,"stats":{"hot":false,"pageviews":264990},"pyongs_count":7,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":72,"id":176774},{"verified_annotation_count":0,"title":"305
219
+ to My City","updated_by_human_at":1388338117,"stats":{"hot":false,"pageviews":548250,"concurrents":2},"pyongs_count":14,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":26,"id":217281},{"verified_annotation_count":0,"title":"Worst
220
+ Behavior","updated_by_human_at":1390912607,"stats":{"hot":false,"pageviews":1067934,"concurrents":17},"pyongs_count":72,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":35,"id":217266},{"verified_annotation_count":0,"title":"Fear","updated_by_human_at":1390537543,"stats":{"hot":false,"pageviews":123699},"pyongs_count":3,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":50,"id":842},{"verified_annotation_count":0,"title":"Asthma
221
+ Team","updated_by_human_at":1365881377,"stats":{"hot":false,"pageviews":10543},"pyongs_count":null,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":34,"id":2931},{"verified_annotation_count":0,"title":"November
222
+ 18th","updated_by_human_at":1388234269,"stats":{"hot":false,"pageviews":108843},"pyongs_count":4,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":31,"id":2497},{"verified_annotation_count":0,"title":"Intro
223
+ (Room For Improvement)","updated_by_human_at":1389127438,"stats":{"hot":false},"pyongs_count":null,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":0,"id":333532},{"verified_annotation_count":0,"title":"Dlt
224
+ it","updated_by_human_at":1318012909,"stats":{"hot":false},"pyongs_count":null,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":0,"id":56664},{"verified_annotation_count":0,"title":"Do
225
+ It All","updated_by_human_at":1319046997,"stats":{"hot":false,"pageviews":24927},"pyongs_count":null,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":45,"id":841},{"verified_annotation_count":0,"title":"Do
226
+ It Now","updated_by_human_at":1319607562,"stats":{"hot":false,"pageviews":11286},"pyongs_count":null,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":30,"id":49497},{"verified_annotation_count":0,"title":"Do
227
+ What U Do","updated_by_human_at":1391218540,"stats":{"hot":false},"pyongs_count":null,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":6,"id":146202},{"verified_annotation_count":0,"title":"My
228
+ team","updated_by_human_at":1387778187,"stats":{"hot":false},"pyongs_count":null,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":0,"id":314025},{"verified_annotation_count":0,"title":"Cameras","updated_by_human_at":1389284431,"stats":{"hot":false,"pageviews":511965,"concurrents":3},"pyongs_count":6,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":27,"id":58342},{"verified_annotation_count":0,"title":"Good
229
+ Ones Go (Interlude)","updated_by_human_at":1383495627,"stats":{"hot":false,"pageviews":391108},"pyongs_count":3,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":12,"id":58665},{"verified_annotation_count":0,"title":"Practice","updated_by_human_at":1391189866,"stats":{"hot":false,"pageviews":431083,"concurrents":2},"pyongs_count":5,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":21,"id":58346},{"verified_annotation_count":0,"title":"Worst
230
+ behaviour","updated_by_human_at":1389185142,"stats":{"hot":false},"pyongs_count":12,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":0,"id":334106},{"verified_annotation_count":0,"title":"Versace","updated_by_human_at":1383970164,"stats":{"hot":false},"pyongs_count":1,"primary_artist":{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130},"annotation_count":0,"id":257833}]},"meta":{"status":200}}'
231
+ http_version:
232
+ recorded_at: Sat, 01 Feb 2014 22:05:20 GMT
233
+ - request:
234
+ method: get
235
+ uri: https://api.rapgenius.com/artists/bahahaha
236
+ body:
237
+ encoding: US-ASCII
238
+ string: ''
239
+ headers:
240
+ User-Agent:
241
+ - rapgenius.rb v1.0.0
242
+ response:
243
+ status:
244
+ code: 404
245
+ message: Not Found
246
+ headers:
247
+ Cache-Control:
248
+ - no-cache
249
+ Content-Type:
250
+ - application/json; charset=utf-8
251
+ Date:
252
+ - Sat, 01 Feb 2014 22:05:08 GMT
253
+ Server:
254
+ - nginx/1.4.1
255
+ Status:
256
+ - 404 Not Found
257
+ X-Runtime:
258
+ - '9'
259
+ Content-Length:
260
+ - '49'
261
+ Connection:
262
+ - keep-alive
263
+ body:
264
+ encoding: UTF-8
265
+ string: '{"meta":{"status":404,"message":"404 Not Found"}}'
266
+ http_version:
267
+ recorded_at: Sat, 01 Feb 2014 22:05:21 GMT
268
+ recorded_with: VCR 2.5.0
@@ -0,0 +1,200 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.rapgenius.com/songs/176872
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - rapgenius.rb v1.0.0
12
+ response:
13
+ status:
14
+ code: 200
15
+ message: OK
16
+ headers:
17
+ Cache-Control:
18
+ - private, max-age=0, must-revalidate
19
+ Content-Type:
20
+ - application/json; charset=utf-8
21
+ Date:
22
+ - Sat, 01 Feb 2014 22:01:59 GMT
23
+ Etag:
24
+ - '"20acd808e0bc8a4e2f63c30632781b2a"'
25
+ Server:
26
+ - nginx/1.4.1
27
+ Status:
28
+ - 200 OK
29
+ X-Runtime:
30
+ - '827'
31
+ Content-Length:
32
+ - '19328'
33
+ Connection:
34
+ - keep-alive
35
+ body:
36
+ encoding: UTF-8
37
+ string: '{"response":{"song":{"tracking_paths":{"aggregate":"/Migos-versace-lyrics","concurrent":"/Migos-versace-lyrics"},"primary_artist":{"image_url":"http://s3.amazonaws.com/rapgenius/1372663544_tumblr_mi9wzeHbPS1s459tno1_500.jpg","url":"http://rapgenius.com/artists/Migos","name":"Migos","id":44080},"description":{"dom":{"tag":"root","children":[{"tag":"p","children":["Released
38
+ in June 2013, not only did they take the beat from Soulja Boy\u2019s ",{"tag":"a","attributes":{"href":"http://www.youtube.com/watch?v=x-jJilb4HLo","rel":"nofollow"},"children":["OMG
39
+ part 2"]}," but they absolutely killed it."]},"",{"tag":"p","children":[{"tag":"img","attributes":{"alt":"","height":500,"width":500,"src":"http://images.rapgenius.com/cc9b2e445d9dd264e9f224f7f4aefde2.500x500x1.jpg"},"data":{"thumbnail":{"width":300,"height":300,"src":"http://images.rapgenius.com/cc9b2e445d9dd264e9f224f7f4aefde2.300x300x1.jpg"},"animated":"false"}}]}]}},"title":"Versace","updated_by_human_at":1390543197,"producer_artists":[{"image_url":"http://s3.amazonaws.com/rapgenius/Zaytoven_1-7-2011.jpg","url":"http://rapgenius.com/artists/Zaytoven","name":"Zaytoven","id":27822}],"media":[{"type":"audio","url":"https://soundcloud.com/mixtapemechaniks/migos-ft-drake-versace-remix","provider":"soundcloud"},{"type":"video","url":"http://www.youtube.com/watch?v=PAYpmylJCn0","provider":"youtube"},{"type":"audio","url":"spotify:track:6xhblLundMJAiG9jF7nlxs","provider":"spotify"}],"stats":{"hot":false,"pageviews":1843565,"concurrents":8},"featured_artists":[{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130}],"url":"http://rapgenius.com/Migos-versace-lyrics","pyongs_count":30,"lyrics":{"dom":{"tag":"root","children":[{"tag":"p","children":[{"tag":"a","attributes":{"href":"/1983907/Migos-versace/Verse-1-drake","class":"has_comments"},"data":{"editorial-state":"accepted","id":"1983907"},"children":["[Verse
40
+ 1: Drake]"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/2638695/Migos-versace/Versace-versace-medusa-head-on-me-like-im-luminati"},"data":{"editorial-state":"accepted","id":"2638695"},"children":["Versace,
41
+ Versace, Medusa head on me like I''m ''luminati"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896313/Migos-versace/This-is-a-gated-community-please-get-the-fuck-off-the-property"},"data":{"editorial-state":"accepted","id":"1896313"},"children":["This
42
+ is a gated community, please get the fuck off the property"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1899445/Migos-versace/Rap-must-be-changin-cause-im-at-the-top-and-aint-no-one-on-top-of-me"},"data":{"editorial-state":"accepted","id":"1899445"},"children":["Rap
43
+ must be changin'' cause I''m at the top and ain''t no one on top of me"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896335/Migos-versace/Niggas-be-wantin-a-verse-for-a-verse-but-man-thats-not-a-swap-to-me"},"data":{"editorial-state":"accepted","id":"1896335"},"children":["Niggas
44
+ be wantin'' a verse for a verse, but man that''s not a swap to me"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896339/Migos-versace/Drownin-in-compliments-pool-in-the-backyard-that-look-like-metropolis"},"data":{"editorial-state":"accepted","id":"1896339"},"children":["Drownin''
45
+ in compliments, pool in the backyard that look like Metropolis"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896350/Migos-versace/I-think-im-sellin-a-million-first-week-man-i-guess-im-a-optimist"},"data":{"editorial-state":"accepted","id":"1896350"},"children":["I
46
+ think I''m sellin'' a million first week, man I guess I''m a optimist"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896354/Migos-versace/Born-in-toronto-but-sometimes-i-feel-like-atlanta-adopted-us"},"data":{"editorial-state":"accepted","id":"1896354"},"children":["Born
47
+ in Toronto but sometimes I feel like Atlanta adopted us"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896592/Migos-versace/What-the-fuck-is-you-talkin-bout-saw-this-shit-comin-like-i-had-binoculars"},"data":{"editorial-state":"accepted","id":"1896592"},"children":["What
48
+ the fuck is you talkin'' ''bout? Saw this shit comin'' like I had binoculars"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1898529/Migos-versace/Boy-versace-versace"},"data":{"editorial-state":"accepted","id":"1898529"},"children":["Boy,
49
+ Versace, Versace,"]}," ",{"tag":"a","attributes":{"href":"/1897411/Migos-versace/We-stay-at-the-mansion-when-we-in-miami"},"data":{"editorial-state":"accepted","id":"1897411"},"children":["we
50
+ stay at the mansion when we in Miami"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1898530/Migos-versace/The-pillows-versace-the-sheets-are-versace"},"data":{"editorial-state":"accepted","id":"1898530"},"children":["The
51
+ pillows'' Versace, the sheets are Versace,"]}," ",{"tag":"a","attributes":{"href":"/1896616/Migos-versace/I-just-won-a-grammy"},"data":{"editorial-state":"accepted","id":"1896616"},"children":["I
52
+ just won a Grammy"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1900474/Migos-versace/Ive-been-so-quiet-i-got-the-world-like-what-the-fuck-is-he-plannin"},"data":{"editorial-state":"accepted","id":"1900474"},"children":["I''ve
53
+ been so quiet, I got the world like \"What the fuck is he plannin''?\""]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1900648/Migos-versace/Just-make-sure-that-you-got-a-back-up-plan-cause-that-shit-might-come-in-handy","class":"has_comments"},"data":{"editorial-state":"accepted","id":"1900648"},"children":["Just
54
+ make sure that you got a back up plan cause that shit might come in handy"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896324/Migos-versace/Started-a-label"},"data":{"editorial-state":"accepted","id":"1896324"},"children":["Started
55
+ a label,"]}," ",{"tag":"a","attributes":{"href":"/1896326/Migos-versace/The-album-is-comin-september-just-wait-on-it"},"data":{"editorial-state":"accepted","id":"1896326"},"children":["the
56
+ album is comin'' September, just wait on it"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896657/Migos-versace/This-year-im-eatin-your-food-and-my-table-got-so-many-plates-on-it"},"data":{"editorial-state":"accepted","id":"1896657"},"children":["This
57
+ year I''m eatin'' your food and my table got so many plates on it"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1897155/Migos-versace/Hundred-inch-tv-at-my-house-i-sit-back-like-damn-i-look-great-on-it"},"data":{"editorial-state":"accepted","id":"1897155"},"children":["Hundred
58
+ inch TV at my house, I sit back like \"damn I look great on it\""]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1897162/Migos-versace/I-do-not-fuck-with-your-new-shit-my-nigga-dont-ask-for-my-take-on-it"},"data":{"editorial-state":"accepted","id":"1897162"},"children":["I
59
+ do not fuck with your new shit, my nigga, don''t ask for my take on it"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/2012171/Migos-versace/Speakin-in-lingo-man-this-for-my-nigga-that-trap-out-the-bando","class":"has_comments"},"data":{"editorial-state":"accepted","id":"2012171"},"children":["Speakin''
60
+ in lingo, man this for my nigga that trap out the bando"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896916/Migos-versace/This-for-my-niggas-that-call-up-fernando-to-move-a-piano"},"data":{"editorial-state":"accepted","id":"1896916"},"children":["This
61
+ for my niggas that call up Fernando to move a piano"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896681/Migos-versace/Fuck-all-your-feelins-cause-business-is-business-its-strictly-financial"},"data":{"editorial-state":"accepted","id":"1896681"},"children":["Fuck
62
+ all your feelin''s cause business is business, its strictly financial"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1897633/Migos-versace/Im-always-the-first-one-to-get-it-man-thats-how-you-lead-by-example-versace-versace-versace-versace-versace-versace"},"data":{"editorial-state":"accepted","id":"1897633"},"children":["I''m
63
+ always the first one to get it, man that''s how you lead by example",{"tag":"br"},"Versace,
64
+ Versace, Versace, Versace, Versace, Versace"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1897144/Migos-versace/Word-to-new-york-cause-the-dyckman-and-heights-girls-are-callin-me-papi"},"data":{"editorial-state":"accepted","id":"1897144"},"children":["Word
65
+ to New York cause the Dyckman and Heights girls are callin'' me \"Papi\""]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1898521/Migos-versace/Im-all-on-the-low-take-a-famous-girl-out-where-theres-no-paparazzi"},"data":{"editorial-state":"accepted","id":"1898521"},"children":["I''m
66
+ all on the low, take a famous girl out where there''s no paparazzi"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1897136/Migos-versace/Im-tryna-give-halle-berry-a-baby-and-no-one-can-stop-me"},"data":{"editorial-state":"accepted","id":"1897136"},"children":["I''m
67
+ tryna give Halle Berry a baby and no one can stop me"]},{"tag":"br"},{"tag":"br"},"[Hook:
68
+ Quavo]",{"tag":"br"},{"tag":"a","attributes":{"href":"/1899433/Migos-versace/Versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace"},"data":{"editorial-state":"accepted","id":"1899433"},"children":["Versace,
69
+ Versace, Versace, Versace",{"tag":"br"},"Versace, Versace, Versace, Versace",{"tag":"br"},"Versace,
70
+ Versace Versace, Versace Versace",{"tag":"br"},"Versace, Versace Versace,
71
+ Versace Versace"]},{"tag":"br"},{"tag":"br"},"[Verse 2: Quavo]",{"tag":"br"},"Versace,
72
+ Versace, Medusa head on me like I''m ''Luminati",{"tag":"br"},{"tag":"a","attributes":{"href":"/1896374/Migos-versace/I-know-that-you-like-it-versace-my-neck-and-my-wrist-is-so-sloppy"},"data":{"editorial-state":"accepted","id":"1896374"},"children":["I
73
+ know that you like it, Versace, my neck and my wrist is so sloppy"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1901144/Migos-versace/Versace-versace-i-love-it-versace-the-top-of-my-audi"},"data":{"editorial-state":"accepted","id":"1901144"},"children":["Versace,
74
+ Versace, I love it, Versace the top of my Audi"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1899420/Migos-versace/My-plug-he-john-gotti-he-give-me-the-ducks-i-know-that-theyre-mighty"},"data":{"editorial-state":"accepted","id":"1899420"},"children":["My
75
+ plug, he John Gotti, he give me the ducks, I know that they''re mighty"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1900679/Migos-versace/Shoes-and-shirt-versace-your-bitch-want-in-on-my-pockets"},"data":{"editorial-state":"accepted","id":"1900679"},"children":["Shoes
76
+ and shirt Versace, your bitch want in on my pockets"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1899809/Migos-versace/She-ask-me-why-my-drawers-silk-i-told-that-bitch-versace"},"data":{"editorial-state":"accepted","id":"1899809"},"children":["She
77
+ ask me why my drawers silk, I told that bitch \"Versace\""]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1899427/Migos-versace/Cheetah-print-on-my-sleeve-but-i-aint-ever-been-in-the-jungle"},"data":{"editorial-state":"accepted","id":"1899427"},"children":["Cheetah
78
+ print on my sleeve, but I ain''t ever been in the jungle"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1899828/Migos-versace/Try-to-take-my-sack-better-run-with-it-nigga-dont-fumble"},"data":{"editorial-state":"accepted","id":"1899828"},"children":["Try
79
+ to take my sack, better run with it, nigga don''t fumble"]},{"tag":"br"},{"tag":"br"},"[Hook:
80
+ Quavo]",{"tag":"br"},{"tag":"br"},"[Verse 3: Takeoff]",{"tag":"br"},{"tag":"a","attributes":{"href":"/1904451/Migos-versace/You-can-do-truey-i-do-it-versace"},"data":{"editorial-state":"accepted","id":"1904451"},"children":["You
81
+ can do Truey, I do it Versace"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896403/Migos-versace/You-copped-the-honda-i-copped-the-mazi"},"data":{"editorial-state":"accepted","id":"1896403"},"children":["You
82
+ copped the Honda, I copped the Mazi"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896408/Migos-versace/You-smoke-the-mid-i-smoke-exotic"},"data":{"editorial-state":"accepted","id":"1896408"},"children":["You
83
+ smoke the mid, I smoke exotic"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1900713/Migos-versace/I-set-the-trend-you-niggas-copy"},"data":{"editorial-state":"accepted","id":"1900713"},"children":["I
84
+ set the trend, you niggas copy"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1900683/Migos-versace/Cookin-this-dope-like-i-work-at-hibachi"},"data":{"editorial-state":"accepted","id":"1900683"},"children":["Cookin''
85
+ this dope like I work at Hibachi"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896767/Migos-versace/Look-at-the-watch-blow-it-hot-like-some-taki"},"data":{"editorial-state":"accepted","id":"1896767"},"children":["Look
86
+ at the watch, blow it, hot like some Taki"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896530/Migos-versace/Come-in-my-room-my-sheet-versace"},"data":{"editorial-state":"accepted","id":"1896530"},"children":["Come
87
+ in my room, my sheet Versace"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896419/Migos-versace/Go-to-sleep-i-dream-versace"},"data":{"editorial-state":"accepted","id":"1896419"},"children":["Go
88
+ to sleep, I dream Versace"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896414/Migos-versace/Medusa-medusa-medusa"},"data":{"editorial-state":"accepted","id":"1896414"},"children":["Medusa,
89
+ Medusa, Medusa"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1950408/Migos-versace/These-niggas-they-wishin-they-knew-you","class":"has_comments"},"data":{"editorial-state":"accepted","id":"1950408"},"children":["These
90
+ niggas they wishin'' they knew you"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1901943/Migos-versace/They-coppin-the-truey-remixin-the-louis"},"data":{"editorial-state":"accepted","id":"1901943"},"children":["They
91
+ coppin'' the Truey, remixin'' the Louis"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1901946/Migos-versace/My-blunts-is-fat-as-rasputia"},"data":{"editorial-state":"accepted","id":"1901946"},"children":["My
92
+ blunts is fat as Rasputia"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1913879/Migos-versace/In-a-striped-shirt-like-im-tony-the-tiger"},"data":{"editorial-state":"accepted","id":"1913879"},"children":["In
93
+ a striped shirt like I\u2019m Tony the Tiger"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1911286/Migos-versace/Im-beatin-the-pot-call-me-michael"},"data":{"editorial-state":"accepted","id":"1911286"},"children":["I\u2019m
94
+ beatin'' the pot, call me Michael"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1902513/Migos-versace/Lot-of-you-niggas-that-copy-look-at-my-closet-versace-versace"},"data":{"editorial-state":"accepted","id":"1902513"},"children":["Lot
95
+ of you niggas that copy",{"tag":"br"},"Look at my closet Versace, Versace"]},{"tag":"br"},{"tag":"br"},"[Hook:
96
+ Quavo]",{"tag":"br"},{"tag":"br"},"[Verse 4: Offset]",{"tag":"br"},{"tag":"a","attributes":{"href":"/1902542/Migos-versace/King-of-versace-medusa-my-wifey"},"data":{"editorial-state":"accepted","id":"1902542"},"children":["King
97
+ of Versace, Medusa my wifey"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1902526/Migos-versace/My-car-is-versace-i-got-stripes-on-my-mazi"},"data":{"editorial-state":"accepted","id":"1902526"},"children":["My
98
+ car is Versace, I got stripes on my Mazi"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1904435/Migos-versace/Im-dressin-so-nicely-they-cant-even-copy"},"data":{"editorial-state":"accepted","id":"1904435"},"children":["I''m
99
+ dressin'' so nicely they can''t even copy"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1901516/Migos-versace/Youd-think-im-egyptian-this-gold-on-my-body"},"data":{"editorial-state":"accepted","id":"1901516"},"children":["You''d
100
+ think I''m Egyptian, this gold on my body"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1902556/Migos-versace/Money-my-mission-two-bitches-they-kissin"},"data":{"editorial-state":"accepted","id":"1902556"},"children":["Money
101
+ my mission, two bitches, they kissin''"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1924730/Migos-versace/My-diamonds-is-pissin"},"data":{"editorial-state":"accepted","id":"1924730"},"children":["My
102
+ diamonds is pissin''"]},", ",{"tag":"a","attributes":{"href":"/1936022/Migos-versace/My-swag-is-exquisite"},"data":{"editorial-state":"accepted","id":"1936022"},"children":["my
103
+ swag is exquisite"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1904437/Migos-versace/Young-offset-no-preacher-but-you-niggas-listen"},"data":{"editorial-state":"accepted","id":"1904437"},"children":["Young
104
+ Offset no preacher but you niggas listen"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1902669/Migos-versace/Them-blue-and-white-diamonds-they-look-like-the-pistons"},"data":{"editorial-state":"accepted","id":"1902669"},"children":["Them
105
+ blue and white diamonds, they look like the Pistons"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1902562/Migos-versace/Codeine-sippin-versace-im-grippin-them-bands-in-my-pocket"},"data":{"editorial-state":"accepted","id":"1902562"},"children":["Codeine
106
+ sippin, Versace I\u2019m grippin'' them bands in my pocket"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1950394/Migos-versace/You-know-that-im-livin"},"data":{"editorial-state":"accepted","id":"1950394"},"children":["You
107
+ know that I\u2019m livin''"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1930489/Migos-versace/Im-draped-up-in-gold-but-no-pharaoh"},"data":{"editorial-state":"accepted","id":"1930489"},"children":["I\u2019m
108
+ draped up in gold, but no Pharaoh"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1930391/Migos-versace/Rockin-handcuffs-thats-ferragamo"},"data":{"editorial-state":"accepted","id":"1930391"},"children":["Rockin''
109
+ handcuffs, that\u2019s Ferragamo"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1935937/Migos-versace/Bricks-by-the-boat-overload"},"data":{"editorial-state":"accepted","id":"1935937"},"children":["Bricks
110
+ by the boat, overload"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1903068/Migos-versace/I-think-im-the-don-but-no-rocco"},"data":{"editorial-state":"accepted","id":"1903068"},"children":["I
111
+ think I\u2019m the don, but no Rocco"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1902577/Migos-versace/This-the-life-that-i-chose"},"data":{"editorial-state":"accepted","id":"1902577"},"children":["This
112
+ the life that I chose"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1903071/Migos-versace/Bought-out-the-store-cant-go-back-no-more"},"data":{"editorial-state":"accepted","id":"1903071"},"children":["Bought
113
+ out the store, can\u2019t go back no more"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/2609403/Migos-versace/Versace-my-clothes-while-im-sellin-them-bows"},"data":{"editorial-state":"accepted","id":"2609403"},"children":["Versace
114
+ my clothes while I\u2019m sellin'' them bows"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1932794/Migos-versace/Versace-take-over-it-took-out-my-soul"},"data":{"editorial-state":"accepted","id":"1932794"},"children":["Versace
115
+ take over it took out my soul"]},{"tag":"br"},{"tag":"br"},"[Hook: Quavo]"]}]}},"annotation_count":69,"id":176872,"bop_url":"http://www.bop.fm/embed/Migos/Versace/http%3A%2F%2Frapgenius.com%2FMigos-versace-lyrics?pref_track%5B%5D=https%3A%2F%2Fsoundcloud.com%2Fmixtapemechaniks%2Fmigos-ft-drake-versace-remix&pref_track%5B%5D=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DPAYpmylJCn0","verified_annotation_count":0}},"meta":{"status":200}}'
116
+ http_version:
117
+ recorded_at: Sat, 01 Feb 2014 22:02:12 GMT
118
+ - request:
119
+ method: get
120
+ uri: https://api.rapgenius.com/referents/2638695
121
+ body:
122
+ encoding: US-ASCII
123
+ string: ''
124
+ headers:
125
+ User-Agent:
126
+ - rapgenius.rb v1.0.0
127
+ response:
128
+ status:
129
+ code: 200
130
+ message: OK
131
+ headers:
132
+ Cache-Control:
133
+ - private, max-age=0, must-revalidate
134
+ Content-Type:
135
+ - application/json; charset=utf-8
136
+ Date:
137
+ - Sat, 01 Feb 2014 22:02:02 GMT
138
+ Etag:
139
+ - '"04c063c67cb779f3943200beff0dcff3"'
140
+ Server:
141
+ - nginx/1.4.1
142
+ Status:
143
+ - 200 OK
144
+ X-Runtime:
145
+ - '43'
146
+ Content-Length:
147
+ - '2190'
148
+ Connection:
149
+ - keep-alive
150
+ body:
151
+ encoding: UTF-8
152
+ string: '{"response":{"referent":{"tracking_paths":{"aggregate":"/2638695/Migos-versace/Versace-versace-medusa-head-on-me-like-im-luminati","concurrent":"/Migos-versace-lyrics"},"song_id":176872,"annotations":[{"verified_by":null,"authors":[{"attribution":1.0,"user":{"avatar":{"tiny":{"bounding_box":{"height":16,"width":16},"url":"http://s3.amazonaws.com/rapgenius/avatars/tiny/MJLDklSFShqys2vAf1W7.gif"},"thumb":{"bounding_box":{"height":32,"width":32},"url":"http://s3.amazonaws.com/rapgenius/avatars/thumb/MJLDklSFShqys2vAf1W7.gif"}},"iq":26438.7376777,"name":"Curumno","id":11917,"role_for_display":"moderator"}}],"votes_total":1,"body":{"dom":{"tag":"root","children":[{"tag":"p","children":["Versace\u2019s
153
+ logo is the head of Medusa from Greek mythology (who had snakes for hair and
154
+ whose gaze turned onlookers to stone). Since supposed symbols of the ",{"tag":"a","attributes":{"href":"https://en.wikipedia.org/wiki/Illuminati","rel":"nofollow"},"children":["Illuminati"]},"
155
+ often incorporate classical imagery and indicators of wealth, a Versace Medusa
156
+ head would be very appropriate for Drake to wear if he were a member of the
157
+ Illuminati"]},"",{"tag":"p","children":["Furthermore, several other famous
158
+ rappers are accused as being associated with the Illuminati (especially ",{"tag":"a","attributes":{"href":"http://rapgenius.com/artists/Jay-z"},"children":["Jay
159
+ Z"]}," and ",{"tag":"a","attributes":{"href":"http://rapgenius.com/artists/Kanye-west"},"children":["Kanye
160
+ West"]},"), so Drake is subtly holding himself to their level of celebrity
161
+ by making similar pretensions about himself"]},"",{"tag":"p","children":[{"tag":"img","attributes":{"alt":"","height":1000,"width":807,"src":"http://images.rapgenius.com/bca36ab6f88cea01921575bb41c4e2f7.807x1000x1.png"},"data":{"thumbnail":{"width":300,"height":372,"src":"http://images.rapgenius.com/bca36ab6f88cea01921575bb41c4e2f7.300x372x1.png"},"animated":"false"}}]}]}},"url":"http://rapgenius.com/2638695/Migos-versace/Versace-versace-medusa-head-on-me-like-im-luminati","share_url":"http://rapgenius.com/2638695","id":2638695}],"fragment":"Versace,
162
+ Versace, Medusa head on me like I''m ''luminati","id":2638695}},"meta":{"status":200}}'
163
+ http_version:
164
+ recorded_at: Sat, 01 Feb 2014 22:02:15 GMT
165
+ - request:
166
+ method: get
167
+ uri: https://api.rapgenius.com/referents/bahahaha
168
+ body:
169
+ encoding: US-ASCII
170
+ string: ''
171
+ headers:
172
+ User-Agent:
173
+ - rapgenius.rb v1.0.0
174
+ response:
175
+ status:
176
+ code: 404
177
+ message: Not Found
178
+ headers:
179
+ Cache-Control:
180
+ - no-cache
181
+ Content-Type:
182
+ - application/json; charset=utf-8
183
+ Date:
184
+ - Sat, 01 Feb 2014 22:02:03 GMT
185
+ Server:
186
+ - nginx/1.4.1
187
+ Status:
188
+ - 404 Not Found
189
+ X-Runtime:
190
+ - '4'
191
+ Content-Length:
192
+ - '49'
193
+ Connection:
194
+ - keep-alive
195
+ body:
196
+ encoding: UTF-8
197
+ string: '{"meta":{"status":404,"message":"404 Not Found"}}'
198
+ http_version:
199
+ recorded_at: Sat, 01 Feb 2014 22:02:16 GMT
200
+ recorded_with: VCR 2.5.0
@@ -0,0 +1,193 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.rapgenius.com/referents/1983907
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - rapgenius.rb v1.0.0
12
+ response:
13
+ status:
14
+ code: 200
15
+ message: OK
16
+ headers:
17
+ Cache-Control:
18
+ - private, max-age=0, must-revalidate
19
+ Content-Type:
20
+ - application/json; charset=utf-8
21
+ Date:
22
+ - Sat, 01 Feb 2014 22:02:18 GMT
23
+ Etag:
24
+ - '"2764cddbb7d55a1a4d755cdcad3009bb"'
25
+ Server:
26
+ - nginx/1.4.1
27
+ Status:
28
+ - 200 OK
29
+ X-Runtime:
30
+ - '108'
31
+ Content-Length:
32
+ - '2115'
33
+ Connection:
34
+ - keep-alive
35
+ body:
36
+ encoding: UTF-8
37
+ string: '{"response":{"referent":{"tracking_paths":{"aggregate":"/1983907/Migos-versace/Verse-1-drake","concurrent":"/Migos-versace-lyrics"},"song_id":176872,"annotations":[{"share_url":"http://rapgenius.com/1983907","authors":[{"attribution":0.68561872909699,"user":{"avatar":{"tiny":{"bounding_box":{"height":16,"width":16},"url":"http://images.rapgenius.com/avatars/tiny/870f36a5131db2e474faecda75b1affa"},"thumb":{"bounding_box":{"height":32,"width":32},"url":"http://images.rapgenius.com/avatars/thumb/870f36a5131db2e474faecda75b1affa"}},"iq":120405.991878311,"name":"\u00adstreetlights","id":104344,"role_for_display":"moderator"}},{"attribution":0.180602006688963,"user":{"avatar":{"tiny":{"bounding_box":{"height":16,"width":16},"url":"http://s3.amazonaws.com/rapgenius/avatars/tiny/o7x8W33VSKoIJQCYL1r1.png"},"thumb":{"bounding_box":{"height":32,"width":32},"url":"http://s3.amazonaws.com/rapgenius/avatars/thumb/o7x8W33VSKoIJQCYL1r1.png"}},"iq":1359.27084943134,"name":"Socrates","id":90067,"role_for_display":null}},{"attribution":0.133779264214047,"user":{"avatar":{"tiny":{"bounding_box":{"height":16,"width":16},"url":"http://images.rapgenius.com/avatars/tiny/845fd01203157969bce194cbc8065f03"},"thumb":{"bounding_box":{"height":32,"width":32},"url":"http://images.rapgenius.com/avatars/thumb/845fd01203157969bce194cbc8065f03"}},"iq":66868.5747279018,"name":"123andtotha4","id":141291,"role_for_display":"editor"}}],"votes_total":6,"verified_by":null,"body":{"dom":{"tag":"root","children":[{"tag":"p","children":["Read
38
+ about how this collaboration came to pass ",{"tag":"a","attributes":{"href":"http://www.complex.com/music/2013/07/migos-drake-versace-verse","rel":"nofollow"},"children":["here"]}]},"",{"tag":"p","children":["Drake\u2019s
39
+ part seriously won; Versace used his verse in this runway show:",{"tag":"br"},{"tag":"a","attributes":{"href":"http://instagram.com/p/efaUrbMBkv/","rel":"nofollow"},"children":["http://instagram.com/p/efaUrbMBkv/"]}]}]}},"url":"http://rapgenius.com/1983907/Migos-versace/Verse-1-drake","id":1983907}],"fragment":"[Verse
40
+ 1: Drake]","id":1983907}},"meta":{"status":200}}'
41
+ http_version:
42
+ recorded_at: Sat, 01 Feb 2014 22:02:31 GMT
43
+ - request:
44
+ method: get
45
+ uri: https://api.rapgenius.com/songs/176872
46
+ body:
47
+ encoding: US-ASCII
48
+ string: ''
49
+ headers:
50
+ User-Agent:
51
+ - rapgenius.rb v1.0.0
52
+ response:
53
+ status:
54
+ code: 200
55
+ message: OK
56
+ headers:
57
+ Cache-Control:
58
+ - private, max-age=0, must-revalidate
59
+ Content-Type:
60
+ - application/json; charset=utf-8
61
+ Date:
62
+ - Sat, 01 Feb 2014 22:02:21 GMT
63
+ Etag:
64
+ - '"20acd808e0bc8a4e2f63c30632781b2a"'
65
+ Server:
66
+ - nginx/1.4.1
67
+ Status:
68
+ - 200 OK
69
+ X-Runtime:
70
+ - '37'
71
+ Content-Length:
72
+ - '19328'
73
+ Connection:
74
+ - keep-alive
75
+ body:
76
+ encoding: UTF-8
77
+ string: '{"response":{"song":{"tracking_paths":{"aggregate":"/Migos-versace-lyrics","concurrent":"/Migos-versace-lyrics"},"primary_artist":{"image_url":"http://s3.amazonaws.com/rapgenius/1372663544_tumblr_mi9wzeHbPS1s459tno1_500.jpg","url":"http://rapgenius.com/artists/Migos","name":"Migos","id":44080},"description":{"dom":{"tag":"root","children":[{"tag":"p","children":["Released
78
+ in June 2013, not only did they take the beat from Soulja Boy\u2019s ",{"tag":"a","attributes":{"href":"http://www.youtube.com/watch?v=x-jJilb4HLo","rel":"nofollow"},"children":["OMG
79
+ part 2"]}," but they absolutely killed it."]},"",{"tag":"p","children":[{"tag":"img","attributes":{"alt":"","height":500,"width":500,"src":"http://images.rapgenius.com/cc9b2e445d9dd264e9f224f7f4aefde2.500x500x1.jpg"},"data":{"thumbnail":{"width":300,"height":300,"src":"http://images.rapgenius.com/cc9b2e445d9dd264e9f224f7f4aefde2.300x300x1.jpg"},"animated":"false"}}]}]}},"title":"Versace","updated_by_human_at":1390543197,"producer_artists":[{"image_url":"http://s3.amazonaws.com/rapgenius/Zaytoven_1-7-2011.jpg","url":"http://rapgenius.com/artists/Zaytoven","name":"Zaytoven","id":27822}],"media":[{"type":"audio","url":"https://soundcloud.com/mixtapemechaniks/migos-ft-drake-versace-remix","provider":"soundcloud"},{"type":"video","url":"http://www.youtube.com/watch?v=PAYpmylJCn0","provider":"youtube"},{"type":"audio","url":"spotify:track:6xhblLundMJAiG9jF7nlxs","provider":"spotify"}],"stats":{"hot":false,"pageviews":1843565,"concurrents":8},"featured_artists":[{"image_url":"http://images.rapgenius.com/2b3fa8326a5277fa31f2012a7b581e2e.500x319x11.gif","url":"http://rapgenius.com/artists/Drake","name":"Drake","id":130}],"url":"http://rapgenius.com/Migos-versace-lyrics","pyongs_count":30,"lyrics":{"dom":{"tag":"root","children":[{"tag":"p","children":[{"tag":"a","attributes":{"href":"/1983907/Migos-versace/Verse-1-drake","class":"has_comments"},"data":{"editorial-state":"accepted","id":"1983907"},"children":["[Verse
80
+ 1: Drake]"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/2638695/Migos-versace/Versace-versace-medusa-head-on-me-like-im-luminati"},"data":{"editorial-state":"accepted","id":"2638695"},"children":["Versace,
81
+ Versace, Medusa head on me like I''m ''luminati"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896313/Migos-versace/This-is-a-gated-community-please-get-the-fuck-off-the-property"},"data":{"editorial-state":"accepted","id":"1896313"},"children":["This
82
+ is a gated community, please get the fuck off the property"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1899445/Migos-versace/Rap-must-be-changin-cause-im-at-the-top-and-aint-no-one-on-top-of-me"},"data":{"editorial-state":"accepted","id":"1899445"},"children":["Rap
83
+ must be changin'' cause I''m at the top and ain''t no one on top of me"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896335/Migos-versace/Niggas-be-wantin-a-verse-for-a-verse-but-man-thats-not-a-swap-to-me"},"data":{"editorial-state":"accepted","id":"1896335"},"children":["Niggas
84
+ be wantin'' a verse for a verse, but man that''s not a swap to me"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896339/Migos-versace/Drownin-in-compliments-pool-in-the-backyard-that-look-like-metropolis"},"data":{"editorial-state":"accepted","id":"1896339"},"children":["Drownin''
85
+ in compliments, pool in the backyard that look like Metropolis"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896350/Migos-versace/I-think-im-sellin-a-million-first-week-man-i-guess-im-a-optimist"},"data":{"editorial-state":"accepted","id":"1896350"},"children":["I
86
+ think I''m sellin'' a million first week, man I guess I''m a optimist"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896354/Migos-versace/Born-in-toronto-but-sometimes-i-feel-like-atlanta-adopted-us"},"data":{"editorial-state":"accepted","id":"1896354"},"children":["Born
87
+ in Toronto but sometimes I feel like Atlanta adopted us"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896592/Migos-versace/What-the-fuck-is-you-talkin-bout-saw-this-shit-comin-like-i-had-binoculars"},"data":{"editorial-state":"accepted","id":"1896592"},"children":["What
88
+ the fuck is you talkin'' ''bout? Saw this shit comin'' like I had binoculars"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1898529/Migos-versace/Boy-versace-versace"},"data":{"editorial-state":"accepted","id":"1898529"},"children":["Boy,
89
+ Versace, Versace,"]}," ",{"tag":"a","attributes":{"href":"/1897411/Migos-versace/We-stay-at-the-mansion-when-we-in-miami"},"data":{"editorial-state":"accepted","id":"1897411"},"children":["we
90
+ stay at the mansion when we in Miami"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1898530/Migos-versace/The-pillows-versace-the-sheets-are-versace"},"data":{"editorial-state":"accepted","id":"1898530"},"children":["The
91
+ pillows'' Versace, the sheets are Versace,"]}," ",{"tag":"a","attributes":{"href":"/1896616/Migos-versace/I-just-won-a-grammy"},"data":{"editorial-state":"accepted","id":"1896616"},"children":["I
92
+ just won a Grammy"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1900474/Migos-versace/Ive-been-so-quiet-i-got-the-world-like-what-the-fuck-is-he-plannin"},"data":{"editorial-state":"accepted","id":"1900474"},"children":["I''ve
93
+ been so quiet, I got the world like \"What the fuck is he plannin''?\""]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1900648/Migos-versace/Just-make-sure-that-you-got-a-back-up-plan-cause-that-shit-might-come-in-handy","class":"has_comments"},"data":{"editorial-state":"accepted","id":"1900648"},"children":["Just
94
+ make sure that you got a back up plan cause that shit might come in handy"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896324/Migos-versace/Started-a-label"},"data":{"editorial-state":"accepted","id":"1896324"},"children":["Started
95
+ a label,"]}," ",{"tag":"a","attributes":{"href":"/1896326/Migos-versace/The-album-is-comin-september-just-wait-on-it"},"data":{"editorial-state":"accepted","id":"1896326"},"children":["the
96
+ album is comin'' September, just wait on it"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896657/Migos-versace/This-year-im-eatin-your-food-and-my-table-got-so-many-plates-on-it"},"data":{"editorial-state":"accepted","id":"1896657"},"children":["This
97
+ year I''m eatin'' your food and my table got so many plates on it"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1897155/Migos-versace/Hundred-inch-tv-at-my-house-i-sit-back-like-damn-i-look-great-on-it"},"data":{"editorial-state":"accepted","id":"1897155"},"children":["Hundred
98
+ inch TV at my house, I sit back like \"damn I look great on it\""]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1897162/Migos-versace/I-do-not-fuck-with-your-new-shit-my-nigga-dont-ask-for-my-take-on-it"},"data":{"editorial-state":"accepted","id":"1897162"},"children":["I
99
+ do not fuck with your new shit, my nigga, don''t ask for my take on it"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/2012171/Migos-versace/Speakin-in-lingo-man-this-for-my-nigga-that-trap-out-the-bando","class":"has_comments"},"data":{"editorial-state":"accepted","id":"2012171"},"children":["Speakin''
100
+ in lingo, man this for my nigga that trap out the bando"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896916/Migos-versace/This-for-my-niggas-that-call-up-fernando-to-move-a-piano"},"data":{"editorial-state":"accepted","id":"1896916"},"children":["This
101
+ for my niggas that call up Fernando to move a piano"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896681/Migos-versace/Fuck-all-your-feelins-cause-business-is-business-its-strictly-financial"},"data":{"editorial-state":"accepted","id":"1896681"},"children":["Fuck
102
+ all your feelin''s cause business is business, its strictly financial"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1897633/Migos-versace/Im-always-the-first-one-to-get-it-man-thats-how-you-lead-by-example-versace-versace-versace-versace-versace-versace"},"data":{"editorial-state":"accepted","id":"1897633"},"children":["I''m
103
+ always the first one to get it, man that''s how you lead by example",{"tag":"br"},"Versace,
104
+ Versace, Versace, Versace, Versace, Versace"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1897144/Migos-versace/Word-to-new-york-cause-the-dyckman-and-heights-girls-are-callin-me-papi"},"data":{"editorial-state":"accepted","id":"1897144"},"children":["Word
105
+ to New York cause the Dyckman and Heights girls are callin'' me \"Papi\""]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1898521/Migos-versace/Im-all-on-the-low-take-a-famous-girl-out-where-theres-no-paparazzi"},"data":{"editorial-state":"accepted","id":"1898521"},"children":["I''m
106
+ all on the low, take a famous girl out where there''s no paparazzi"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1897136/Migos-versace/Im-tryna-give-halle-berry-a-baby-and-no-one-can-stop-me"},"data":{"editorial-state":"accepted","id":"1897136"},"children":["I''m
107
+ tryna give Halle Berry a baby and no one can stop me"]},{"tag":"br"},{"tag":"br"},"[Hook:
108
+ Quavo]",{"tag":"br"},{"tag":"a","attributes":{"href":"/1899433/Migos-versace/Versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace-versace"},"data":{"editorial-state":"accepted","id":"1899433"},"children":["Versace,
109
+ Versace, Versace, Versace",{"tag":"br"},"Versace, Versace, Versace, Versace",{"tag":"br"},"Versace,
110
+ Versace Versace, Versace Versace",{"tag":"br"},"Versace, Versace Versace,
111
+ Versace Versace"]},{"tag":"br"},{"tag":"br"},"[Verse 2: Quavo]",{"tag":"br"},"Versace,
112
+ Versace, Medusa head on me like I''m ''Luminati",{"tag":"br"},{"tag":"a","attributes":{"href":"/1896374/Migos-versace/I-know-that-you-like-it-versace-my-neck-and-my-wrist-is-so-sloppy"},"data":{"editorial-state":"accepted","id":"1896374"},"children":["I
113
+ know that you like it, Versace, my neck and my wrist is so sloppy"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1901144/Migos-versace/Versace-versace-i-love-it-versace-the-top-of-my-audi"},"data":{"editorial-state":"accepted","id":"1901144"},"children":["Versace,
114
+ Versace, I love it, Versace the top of my Audi"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1899420/Migos-versace/My-plug-he-john-gotti-he-give-me-the-ducks-i-know-that-theyre-mighty"},"data":{"editorial-state":"accepted","id":"1899420"},"children":["My
115
+ plug, he John Gotti, he give me the ducks, I know that they''re mighty"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1900679/Migos-versace/Shoes-and-shirt-versace-your-bitch-want-in-on-my-pockets"},"data":{"editorial-state":"accepted","id":"1900679"},"children":["Shoes
116
+ and shirt Versace, your bitch want in on my pockets"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1899809/Migos-versace/She-ask-me-why-my-drawers-silk-i-told-that-bitch-versace"},"data":{"editorial-state":"accepted","id":"1899809"},"children":["She
117
+ ask me why my drawers silk, I told that bitch \"Versace\""]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1899427/Migos-versace/Cheetah-print-on-my-sleeve-but-i-aint-ever-been-in-the-jungle"},"data":{"editorial-state":"accepted","id":"1899427"},"children":["Cheetah
118
+ print on my sleeve, but I ain''t ever been in the jungle"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1899828/Migos-versace/Try-to-take-my-sack-better-run-with-it-nigga-dont-fumble"},"data":{"editorial-state":"accepted","id":"1899828"},"children":["Try
119
+ to take my sack, better run with it, nigga don''t fumble"]},{"tag":"br"},{"tag":"br"},"[Hook:
120
+ Quavo]",{"tag":"br"},{"tag":"br"},"[Verse 3: Takeoff]",{"tag":"br"},{"tag":"a","attributes":{"href":"/1904451/Migos-versace/You-can-do-truey-i-do-it-versace"},"data":{"editorial-state":"accepted","id":"1904451"},"children":["You
121
+ can do Truey, I do it Versace"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896403/Migos-versace/You-copped-the-honda-i-copped-the-mazi"},"data":{"editorial-state":"accepted","id":"1896403"},"children":["You
122
+ copped the Honda, I copped the Mazi"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896408/Migos-versace/You-smoke-the-mid-i-smoke-exotic"},"data":{"editorial-state":"accepted","id":"1896408"},"children":["You
123
+ smoke the mid, I smoke exotic"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1900713/Migos-versace/I-set-the-trend-you-niggas-copy"},"data":{"editorial-state":"accepted","id":"1900713"},"children":["I
124
+ set the trend, you niggas copy"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1900683/Migos-versace/Cookin-this-dope-like-i-work-at-hibachi"},"data":{"editorial-state":"accepted","id":"1900683"},"children":["Cookin''
125
+ this dope like I work at Hibachi"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896767/Migos-versace/Look-at-the-watch-blow-it-hot-like-some-taki"},"data":{"editorial-state":"accepted","id":"1896767"},"children":["Look
126
+ at the watch, blow it, hot like some Taki"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896530/Migos-versace/Come-in-my-room-my-sheet-versace"},"data":{"editorial-state":"accepted","id":"1896530"},"children":["Come
127
+ in my room, my sheet Versace"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896419/Migos-versace/Go-to-sleep-i-dream-versace"},"data":{"editorial-state":"accepted","id":"1896419"},"children":["Go
128
+ to sleep, I dream Versace"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1896414/Migos-versace/Medusa-medusa-medusa"},"data":{"editorial-state":"accepted","id":"1896414"},"children":["Medusa,
129
+ Medusa, Medusa"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1950408/Migos-versace/These-niggas-they-wishin-they-knew-you","class":"has_comments"},"data":{"editorial-state":"accepted","id":"1950408"},"children":["These
130
+ niggas they wishin'' they knew you"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1901943/Migos-versace/They-coppin-the-truey-remixin-the-louis"},"data":{"editorial-state":"accepted","id":"1901943"},"children":["They
131
+ coppin'' the Truey, remixin'' the Louis"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1901946/Migos-versace/My-blunts-is-fat-as-rasputia"},"data":{"editorial-state":"accepted","id":"1901946"},"children":["My
132
+ blunts is fat as Rasputia"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1913879/Migos-versace/In-a-striped-shirt-like-im-tony-the-tiger"},"data":{"editorial-state":"accepted","id":"1913879"},"children":["In
133
+ a striped shirt like I\u2019m Tony the Tiger"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1911286/Migos-versace/Im-beatin-the-pot-call-me-michael"},"data":{"editorial-state":"accepted","id":"1911286"},"children":["I\u2019m
134
+ beatin'' the pot, call me Michael"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1902513/Migos-versace/Lot-of-you-niggas-that-copy-look-at-my-closet-versace-versace"},"data":{"editorial-state":"accepted","id":"1902513"},"children":["Lot
135
+ of you niggas that copy",{"tag":"br"},"Look at my closet Versace, Versace"]},{"tag":"br"},{"tag":"br"},"[Hook:
136
+ Quavo]",{"tag":"br"},{"tag":"br"},"[Verse 4: Offset]",{"tag":"br"},{"tag":"a","attributes":{"href":"/1902542/Migos-versace/King-of-versace-medusa-my-wifey"},"data":{"editorial-state":"accepted","id":"1902542"},"children":["King
137
+ of Versace, Medusa my wifey"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1902526/Migos-versace/My-car-is-versace-i-got-stripes-on-my-mazi"},"data":{"editorial-state":"accepted","id":"1902526"},"children":["My
138
+ car is Versace, I got stripes on my Mazi"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1904435/Migos-versace/Im-dressin-so-nicely-they-cant-even-copy"},"data":{"editorial-state":"accepted","id":"1904435"},"children":["I''m
139
+ dressin'' so nicely they can''t even copy"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1901516/Migos-versace/Youd-think-im-egyptian-this-gold-on-my-body"},"data":{"editorial-state":"accepted","id":"1901516"},"children":["You''d
140
+ think I''m Egyptian, this gold on my body"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1902556/Migos-versace/Money-my-mission-two-bitches-they-kissin"},"data":{"editorial-state":"accepted","id":"1902556"},"children":["Money
141
+ my mission, two bitches, they kissin''"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1924730/Migos-versace/My-diamonds-is-pissin"},"data":{"editorial-state":"accepted","id":"1924730"},"children":["My
142
+ diamonds is pissin''"]},", ",{"tag":"a","attributes":{"href":"/1936022/Migos-versace/My-swag-is-exquisite"},"data":{"editorial-state":"accepted","id":"1936022"},"children":["my
143
+ swag is exquisite"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1904437/Migos-versace/Young-offset-no-preacher-but-you-niggas-listen"},"data":{"editorial-state":"accepted","id":"1904437"},"children":["Young
144
+ Offset no preacher but you niggas listen"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1902669/Migos-versace/Them-blue-and-white-diamonds-they-look-like-the-pistons"},"data":{"editorial-state":"accepted","id":"1902669"},"children":["Them
145
+ blue and white diamonds, they look like the Pistons"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1902562/Migos-versace/Codeine-sippin-versace-im-grippin-them-bands-in-my-pocket"},"data":{"editorial-state":"accepted","id":"1902562"},"children":["Codeine
146
+ sippin, Versace I\u2019m grippin'' them bands in my pocket"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1950394/Migos-versace/You-know-that-im-livin"},"data":{"editorial-state":"accepted","id":"1950394"},"children":["You
147
+ know that I\u2019m livin''"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1930489/Migos-versace/Im-draped-up-in-gold-but-no-pharaoh"},"data":{"editorial-state":"accepted","id":"1930489"},"children":["I\u2019m
148
+ draped up in gold, but no Pharaoh"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1930391/Migos-versace/Rockin-handcuffs-thats-ferragamo"},"data":{"editorial-state":"accepted","id":"1930391"},"children":["Rockin''
149
+ handcuffs, that\u2019s Ferragamo"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1935937/Migos-versace/Bricks-by-the-boat-overload"},"data":{"editorial-state":"accepted","id":"1935937"},"children":["Bricks
150
+ by the boat, overload"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1903068/Migos-versace/I-think-im-the-don-but-no-rocco"},"data":{"editorial-state":"accepted","id":"1903068"},"children":["I
151
+ think I\u2019m the don, but no Rocco"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1902577/Migos-versace/This-the-life-that-i-chose"},"data":{"editorial-state":"accepted","id":"1902577"},"children":["This
152
+ the life that I chose"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1903071/Migos-versace/Bought-out-the-store-cant-go-back-no-more"},"data":{"editorial-state":"accepted","id":"1903071"},"children":["Bought
153
+ out the store, can\u2019t go back no more"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/2609403/Migos-versace/Versace-my-clothes-while-im-sellin-them-bows"},"data":{"editorial-state":"accepted","id":"2609403"},"children":["Versace
154
+ my clothes while I\u2019m sellin'' them bows"]},{"tag":"br"},{"tag":"a","attributes":{"href":"/1932794/Migos-versace/Versace-take-over-it-took-out-my-soul"},"data":{"editorial-state":"accepted","id":"1932794"},"children":["Versace
155
+ take over it took out my soul"]},{"tag":"br"},{"tag":"br"},"[Hook: Quavo]"]}]}},"annotation_count":69,"id":176872,"bop_url":"http://www.bop.fm/embed/Migos/Versace/http%3A%2F%2Frapgenius.com%2FMigos-versace-lyrics?pref_track%5B%5D=https%3A%2F%2Fsoundcloud.com%2Fmixtapemechaniks%2Fmigos-ft-drake-versace-remix&pref_track%5B%5D=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DPAYpmylJCn0","verified_annotation_count":0}},"meta":{"status":200}}'
156
+ http_version:
157
+ recorded_at: Sat, 01 Feb 2014 22:02:34 GMT
158
+ - request:
159
+ method: get
160
+ uri: https://api.rapgenius.com/songs/bahahaha
161
+ body:
162
+ encoding: US-ASCII
163
+ string: ''
164
+ headers:
165
+ User-Agent:
166
+ - rapgenius.rb v1.0.0
167
+ response:
168
+ status:
169
+ code: 404
170
+ message: Not Found
171
+ headers:
172
+ Cache-Control:
173
+ - no-cache
174
+ Content-Type:
175
+ - application/json; charset=utf-8
176
+ Date:
177
+ - Sat, 01 Feb 2014 22:02:21 GMT
178
+ Server:
179
+ - nginx/1.4.1
180
+ Status:
181
+ - 404 Not Found
182
+ X-Runtime:
183
+ - '4'
184
+ Content-Length:
185
+ - '49'
186
+ Connection:
187
+ - keep-alive
188
+ body:
189
+ encoding: UTF-8
190
+ string: '{"meta":{"status":404,"message":"404 Not Found"}}'
191
+ http_version:
192
+ recorded_at: Sat, 01 Feb 2014 22:02:34 GMT
193
+ recorded_with: VCR 2.5.0
data/spec/support/vcr.rb CHANGED
@@ -1,10 +1,6 @@
1
1
  require 'vcr'
2
2
 
3
3
  VCR.configure do |c|
4
- c.default_cassette_options = {
5
- record: :new_episodes,
6
- re_record_interval: 24 * 60 * 60
7
- }
8
4
  c.cassette_library_dir = File.expand_path('../cassettes/', __FILE__)
9
5
  c.hook_into :webmock
10
6
  c.configure_rspec_metadata!
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rapgenius
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Rogers
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-01-27 00:00:00.000000000 Z
12
+ date: 2014-02-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: httparty
@@ -117,6 +117,9 @@ files:
117
117
  - spec/rapgenius/media_spec.rb
118
118
  - spec/rapgenius/song_spec.rb
119
119
  - spec/spec_helper.rb
120
+ - spec/support/cassettes/artist-130.yml
121
+ - spec/support/cassettes/line-2638695.yml
122
+ - spec/support/cassettes/song-176872.yml
120
123
  - spec/support/vcr.rb
121
124
  homepage: https://github.com/timrogers/rapgenius
122
125
  licenses:
@@ -149,4 +152,7 @@ test_files:
149
152
  - spec/rapgenius/media_spec.rb
150
153
  - spec/rapgenius/song_spec.rb
151
154
  - spec/spec_helper.rb
155
+ - spec/support/cassettes/artist-130.yml
156
+ - spec/support/cassettes/line-2638695.yml
157
+ - spec/support/cassettes/song-176872.yml
152
158
  - spec/support/vcr.rb