songkickr 0.3.3 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (162) hide show
  1. checksums.yaml +7 -0
  2. data/.bundle/config +2 -0
  3. data/.gitignore +1 -0
  4. data/.travis.yml +8 -0
  5. data/Gemfile.lock +42 -22
  6. data/LICENSE +1 -1
  7. data/README.rdoc +14 -9
  8. data/Rakefile +3 -4
  9. data/lib/songkickr/artist.rb +2 -2
  10. data/lib/songkickr/artist_result.rb +4 -24
  11. data/lib/songkickr/calendar_entry.rb +23 -0
  12. data/lib/songkickr/calendar_result.rb +10 -0
  13. data/lib/songkickr/concert_setlist_result.rb +5 -27
  14. data/lib/songkickr/event.rb +8 -14
  15. data/lib/songkickr/event_result.rb +5 -23
  16. data/lib/songkickr/location.rb +4 -4
  17. data/lib/songkickr/location_result.rb +5 -30
  18. data/lib/songkickr/metro_area.rb +28 -0
  19. data/lib/songkickr/metro_area_result.rb +12 -0
  20. data/lib/songkickr/performance.rb +17 -12
  21. data/lib/songkickr/remote.rb +18 -198
  22. data/lib/songkickr/remote_api/artist_details.rb +17 -0
  23. data/lib/songkickr/remote_api/event_details.rb +17 -0
  24. data/lib/songkickr/remote_api/past_events.rb +48 -0
  25. data/lib/songkickr/remote_api/similar_artists.rb +14 -0
  26. data/lib/songkickr/remote_api/upcoming_events.rb +125 -0
  27. data/lib/songkickr/remote_api/user_events_and_trackings.rb +143 -0
  28. data/lib/songkickr/remote_api/venue_details.rb +16 -0
  29. data/lib/songkickr/result_set.rb +27 -0
  30. data/lib/songkickr/setlist.rb +7 -12
  31. data/lib/songkickr/setlist_item.rb +1 -1
  32. data/lib/songkickr/tracking.rb +18 -0
  33. data/lib/songkickr/tracking_result.rb +24 -0
  34. data/lib/songkickr/venue.rb +10 -2
  35. data/lib/songkickr/venue_result.rb +32 -0
  36. data/lib/songkickr/version.rb +1 -1
  37. data/lib/songkickr.rb +24 -17
  38. data/songkickr.gemspec +17 -44
  39. data/test/fixtures/event_7391451.json +732 -1
  40. data/test/fixtures/location_search.json +38 -0
  41. data/test/fixtures/metro_area.json +11 -0
  42. data/test/fixtures/users_attendance_calendar.json +243 -0
  43. data/test/fixtures/vcr/artist_events.yml +1394 -0
  44. data/test/fixtures/vcr/artist_search.yml +38 -0
  45. data/test/fixtures/vcr/artists_gigography.yml +187 -0
  46. data/test/fixtures/vcr/concert_setlists.yml +47 -0
  47. data/test/fixtures/vcr/event_search.yml +110 -0
  48. data/test/fixtures/vcr/invalid_api_key.yml +6 -36
  49. data/test/fixtures/vcr/invalid_artist_id.yml +6 -6
  50. data/test/fixtures/vcr/invalid_event_id.yml +6 -6
  51. data/test/fixtures/vcr/invalid_user.yml +6 -6
  52. data/test/fixtures/vcr/invalid_venue_id.yml +6 -6
  53. data/test/fixtures/vcr/location_search.yml +42 -0
  54. data/test/fixtures/vcr/metro_areas_events.yml +1535 -0
  55. data/test/fixtures/vcr/similar_artists.yml +64 -0
  56. data/test/fixtures/vcr/users_artist_tracking.yml +99 -0
  57. data/test/fixtures/vcr/users_attendance.yml +66 -0
  58. data/test/fixtures/vcr/users_attendance_calendar.yml +51 -0
  59. data/test/fixtures/vcr/users_events.yml +809 -0
  60. data/test/fixtures/vcr/users_gigography.yml +2782 -0
  61. data/test/fixtures/vcr/users_metro_area_tracking.yml +66 -0
  62. data/test/fixtures/vcr/users_muted_artists.yml +66 -0
  63. data/test/fixtures/vcr/users_tracked_artists.yml +75 -0
  64. data/test/fixtures/vcr/users_tracked_events_calendar.yml +1901 -0
  65. data/test/fixtures/vcr/users_tracked_metro_areas.yml +37 -0
  66. data/test/fixtures/vcr/valid_artist.yml +9 -9
  67. data/test/fixtures/vcr/valid_event.yml +103 -38
  68. data/test/fixtures/vcr/valid_user.yml +634 -44
  69. data/test/fixtures/vcr/valid_venue.yml +25 -26
  70. data/test/fixtures/vcr/venue_calendar.yml +500 -0
  71. data/test/fixtures/vcr/venue_search.yml +42 -0
  72. data/test/helper.rb +1 -27
  73. data/test/songkickr/test_calendar_entry.rb +15 -0
  74. data/test/songkickr/test_event.rb +8 -9
  75. data/test/songkickr/test_location.rb +11 -11
  76. data/test/songkickr/test_metro_area.rb +17 -0
  77. data/test/songkickr/test_remote.rb +149 -3
  78. data/test/songkickr/test_setlist_item.rb +20 -0
  79. data/test/songkickr/test_venue.rb +1 -2
  80. data/test.rb +3 -5
  81. metadata +120 -152
  82. data/bin/autospec +0 -16
  83. data/bin/convert_to_should_syntax +0 -16
  84. data/bin/guard +0 -16
  85. data/bin/htmldiff +0 -16
  86. data/bin/httparty +0 -16
  87. data/bin/jeweler +0 -16
  88. data/bin/ldiff +0 -16
  89. data/bin/rake +0 -16
  90. data/bin/rake2thor +0 -16
  91. data/bin/rg +0 -16
  92. data/bin/ri +0 -16
  93. data/bin/rspec +0 -16
  94. data/bin/thor +0 -16
  95. data/doc/APIError.html +0 -241
  96. data/doc/APIKeyNotSet.html +0 -203
  97. data/doc/LICENSE.html +0 -133
  98. data/doc/README_rdoc.html +0 -173
  99. data/doc/ResourceNotFound.html +0 -203
  100. data/doc/Songkickr/Artist.html +0 -278
  101. data/doc/Songkickr/ArtistResult.html +0 -308
  102. data/doc/Songkickr/ConcertSetlistResult.html +0 -283
  103. data/doc/Songkickr/Event.html +0 -491
  104. data/doc/Songkickr/EventResult.html +0 -306
  105. data/doc/Songkickr/Location.html +0 -299
  106. data/doc/Songkickr/LocationResult.html +0 -309
  107. data/doc/Songkickr/Performance.html +0 -295
  108. data/doc/Songkickr/Remote.html +0 -864
  109. data/doc/Songkickr/Setlist.html +0 -360
  110. data/doc/Songkickr/SetlistItem.html +0 -244
  111. data/doc/Songkickr/Venue.html +0 -265
  112. data/doc/Songkickr.html +0 -261
  113. data/doc/created.rid +0 -16
  114. data/doc/images/add.png +0 -0
  115. data/doc/images/brick.png +0 -0
  116. data/doc/images/brick_link.png +0 -0
  117. data/doc/images/bug.png +0 -0
  118. data/doc/images/bullet_black.png +0 -0
  119. data/doc/images/bullet_toggle_minus.png +0 -0
  120. data/doc/images/bullet_toggle_plus.png +0 -0
  121. data/doc/images/date.png +0 -0
  122. data/doc/images/delete.png +0 -0
  123. data/doc/images/find.png +0 -0
  124. data/doc/images/loadingAnimation.gif +0 -0
  125. data/doc/images/macFFBgHack.png +0 -0
  126. data/doc/images/package.png +0 -0
  127. data/doc/images/page_green.png +0 -0
  128. data/doc/images/page_white_text.png +0 -0
  129. data/doc/images/page_white_width.png +0 -0
  130. data/doc/images/plugin.png +0 -0
  131. data/doc/images/ruby.png +0 -0
  132. data/doc/images/tag_blue.png +0 -0
  133. data/doc/images/tag_green.png +0 -0
  134. data/doc/images/transparent.png +0 -0
  135. data/doc/images/wrench.png +0 -0
  136. data/doc/images/wrench_orange.png +0 -0
  137. data/doc/images/zoom.png +0 -0
  138. data/doc/index.html +0 -110
  139. data/doc/js/darkfish.js +0 -153
  140. data/doc/js/jquery.js +0 -18
  141. data/doc/js/navigation.js +0 -142
  142. data/doc/js/quicksearch.js +0 -114
  143. data/doc/js/search.js +0 -94
  144. data/doc/js/search_index.js +0 -1
  145. data/doc/js/searcher.js +0 -228
  146. data/doc/js/thickbox-compressed.js +0 -10
  147. data/doc/lib/songkickr/artist_rb.html +0 -52
  148. data/doc/lib/songkickr/artist_result_rb.html +0 -52
  149. data/doc/lib/songkickr/concert_setlist_result_rb.html +0 -52
  150. data/doc/lib/songkickr/event_rb.html +0 -52
  151. data/doc/lib/songkickr/event_result_rb.html +0 -52
  152. data/doc/lib/songkickr/location_rb.html +0 -52
  153. data/doc/lib/songkickr/location_result_rb.html +0 -52
  154. data/doc/lib/songkickr/performance_rb.html +0 -52
  155. data/doc/lib/songkickr/remote_rb.html +0 -52
  156. data/doc/lib/songkickr/setlist_item_rb.html +0 -52
  157. data/doc/lib/songkickr/setlist_rb.html +0 -52
  158. data/doc/lib/songkickr/venue_rb.html +0 -52
  159. data/doc/lib/songkickr_rb.html +0 -56
  160. data/doc/rdoc.css +0 -543
  161. data/doc/table_of_contents.html +0 -185
  162. data/test/fixtures/locations_bar.json +0 -1
metadata CHANGED
@@ -1,342 +1,310 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: songkickr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
5
- prerelease:
4
+ version: 0.4.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Jared Mehle
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-02-16 00:00:00.000000000 Z
11
+ date: 2013-08-10 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: shoulda
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - '>='
20
18
  - !ruby/object:Gem::Version
21
19
  version: 2.11.0
22
20
  type: :development
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - '>='
28
25
  - !ruby/object:Gem::Version
29
26
  version: 2.11.0
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: fakeweb
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - '>='
36
32
  - !ruby/object:Gem::Version
37
33
  version: 1.3.0
38
34
  type: :development
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - '>='
44
39
  - !ruby/object:Gem::Version
45
40
  version: 1.3.0
46
41
  - !ruby/object:Gem::Dependency
47
- name: redgreen
42
+ name: rdoc
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - ~>
52
46
  - !ruby/object:Gem::Version
53
- version: 1.2.2
47
+ version: 4.0.1
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - ~>
60
53
  - !ruby/object:Gem::Version
61
- version: 1.2.2
54
+ version: 4.0.1
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: crack
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ! '>='
59
+ - - '>='
68
60
  - !ruby/object:Gem::Version
69
61
  version: '0'
70
62
  type: :development
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ! '>='
66
+ - - '>='
76
67
  - !ruby/object:Gem::Version
77
68
  version: '0'
78
69
  - !ruby/object:Gem::Dependency
79
- name: httparty
70
+ name: rake
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
- - - ! '>='
73
+ - - ~>
84
74
  - !ruby/object:Gem::Version
85
- version: '0'
75
+ version: 10.0.0
86
76
  type: :development
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
- - - ! '>='
80
+ - - ~>
92
81
  - !ruby/object:Gem::Version
93
- version: '0'
82
+ version: 10.0.0
94
83
  - !ruby/object:Gem::Dependency
95
84
  name: test-unit
96
85
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
86
  requirements:
99
- - - ! '>='
87
+ - - ~>
100
88
  - !ruby/object:Gem::Version
101
- version: '0'
89
+ version: 2.5.5
102
90
  type: :development
103
91
  prerelease: false
104
92
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
93
  requirements:
107
- - - ! '>='
94
+ - - ~>
108
95
  - !ruby/object:Gem::Version
109
- version: '0'
96
+ version: 2.5.5
110
97
  - !ruby/object:Gem::Dependency
111
- name: rake
98
+ name: vcr
112
99
  requirement: !ruby/object:Gem::Requirement
113
- none: false
114
100
  requirements:
115
- - - ! '>='
101
+ - - ~>
116
102
  - !ruby/object:Gem::Version
117
- version: '0'
103
+ version: 2.5.0
118
104
  type: :development
119
105
  prerelease: false
120
106
  version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
107
  requirements:
123
- - - ! '>='
108
+ - - ~>
124
109
  - !ruby/object:Gem::Version
125
- version: '0'
110
+ version: 2.5.0
126
111
  - !ruby/object:Gem::Dependency
127
- name: vcr
112
+ name: pry
128
113
  requirement: !ruby/object:Gem::Requirement
129
- none: false
130
114
  requirements:
131
- - - ! '>='
115
+ - - '>='
132
116
  - !ruby/object:Gem::Version
133
117
  version: '0'
134
118
  type: :development
135
119
  prerelease: false
136
120
  version_requirements: !ruby/object:Gem::Requirement
137
- none: false
138
121
  requirements:
139
- - - ! '>='
122
+ - - '>='
140
123
  - !ruby/object:Gem::Version
141
124
  version: '0'
142
- description: ! 'A Ruby wrapper around the Songkick API. Visit www.songkick.com/developer
125
+ - !ruby/object:Gem::Dependency
126
+ name: httparty
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ~>
130
+ - !ruby/object:Gem::Version
131
+ version: 0.8.3
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ~>
137
+ - !ruby/object:Gem::Version
138
+ version: 0.8.3
139
+ description: 'A Ruby wrapper around the Songkick API. Visit www.songkick.com/developer
143
140
  for documentation on the Songkick API. '
144
141
  email:
145
142
  - jrmehle@gmail.com
146
- executables:
147
- - autospec
148
- - convert_to_should_syntax
149
- - guard
150
- - htmldiff
151
- - httparty
152
- - ldiff
153
- - rake
154
- - rake2thor
155
- - rg
156
- - ri
157
- - rspec
158
- - thor
143
+ executables: []
159
144
  extensions: []
160
145
  extra_rdoc_files:
161
146
  - LICENSE
162
147
  - README.rdoc
163
148
  files:
149
+ - .bundle/config
164
150
  - .document
165
151
  - .gitignore
152
+ - .travis.yml
166
153
  - Gemfile
167
154
  - Gemfile.lock
168
155
  - LICENSE
169
156
  - README.rdoc
170
157
  - Rakefile
171
- - bin/autospec
172
- - bin/convert_to_should_syntax
173
- - bin/guard
174
- - bin/htmldiff
175
- - bin/httparty
176
- - bin/jeweler
177
- - bin/ldiff
178
- - bin/rake
179
- - bin/rake2thor
180
- - bin/rg
181
- - bin/ri
182
- - bin/rspec
183
- - bin/thor
184
- - doc/APIError.html
185
- - doc/APIKeyNotSet.html
186
- - doc/LICENSE.html
187
- - doc/README_rdoc.html
188
- - doc/ResourceNotFound.html
189
- - doc/Songkickr.html
190
- - doc/Songkickr/Artist.html
191
- - doc/Songkickr/ArtistResult.html
192
- - doc/Songkickr/ConcertSetlistResult.html
193
- - doc/Songkickr/Event.html
194
- - doc/Songkickr/EventResult.html
195
- - doc/Songkickr/Location.html
196
- - doc/Songkickr/LocationResult.html
197
- - doc/Songkickr/Performance.html
198
- - doc/Songkickr/Remote.html
199
- - doc/Songkickr/Setlist.html
200
- - doc/Songkickr/SetlistItem.html
201
- - doc/Songkickr/Venue.html
202
- - doc/created.rid
203
- - doc/images/add.png
204
- - doc/images/brick.png
205
- - doc/images/brick_link.png
206
- - doc/images/bug.png
207
- - doc/images/bullet_black.png
208
- - doc/images/bullet_toggle_minus.png
209
- - doc/images/bullet_toggle_plus.png
210
- - doc/images/date.png
211
- - doc/images/delete.png
212
- - doc/images/find.png
213
- - doc/images/loadingAnimation.gif
214
- - doc/images/macFFBgHack.png
215
- - doc/images/package.png
216
- - doc/images/page_green.png
217
- - doc/images/page_white_text.png
218
- - doc/images/page_white_width.png
219
- - doc/images/plugin.png
220
- - doc/images/ruby.png
221
- - doc/images/tag_blue.png
222
- - doc/images/tag_green.png
223
- - doc/images/transparent.png
224
- - doc/images/wrench.png
225
- - doc/images/wrench_orange.png
226
- - doc/images/zoom.png
227
- - doc/index.html
228
- - doc/js/darkfish.js
229
- - doc/js/jquery.js
230
- - doc/js/navigation.js
231
- - doc/js/quicksearch.js
232
- - doc/js/search.js
233
- - doc/js/search_index.js
234
- - doc/js/searcher.js
235
- - doc/js/thickbox-compressed.js
236
- - doc/lib/songkickr/artist_rb.html
237
- - doc/lib/songkickr/artist_result_rb.html
238
- - doc/lib/songkickr/concert_setlist_result_rb.html
239
- - doc/lib/songkickr/event_rb.html
240
- - doc/lib/songkickr/event_result_rb.html
241
- - doc/lib/songkickr/location_rb.html
242
- - doc/lib/songkickr/location_result_rb.html
243
- - doc/lib/songkickr/performance_rb.html
244
- - doc/lib/songkickr/remote_rb.html
245
- - doc/lib/songkickr/setlist_item_rb.html
246
- - doc/lib/songkickr/setlist_rb.html
247
- - doc/lib/songkickr/venue_rb.html
248
- - doc/lib/songkickr_rb.html
249
- - doc/rdoc.css
250
- - doc/table_of_contents.html
251
158
  - lib/songkickr.rb
252
159
  - lib/songkickr/artist.rb
253
160
  - lib/songkickr/artist_result.rb
161
+ - lib/songkickr/calendar_entry.rb
162
+ - lib/songkickr/calendar_result.rb
254
163
  - lib/songkickr/concert_setlist_result.rb
255
164
  - lib/songkickr/event.rb
256
165
  - lib/songkickr/event_result.rb
257
166
  - lib/songkickr/location.rb
258
167
  - lib/songkickr/location_result.rb
168
+ - lib/songkickr/metro_area.rb
169
+ - lib/songkickr/metro_area_result.rb
259
170
  - lib/songkickr/performance.rb
260
171
  - lib/songkickr/remote.rb
172
+ - lib/songkickr/remote_api/artist_details.rb
173
+ - lib/songkickr/remote_api/event_details.rb
174
+ - lib/songkickr/remote_api/past_events.rb
175
+ - lib/songkickr/remote_api/similar_artists.rb
176
+ - lib/songkickr/remote_api/upcoming_events.rb
177
+ - lib/songkickr/remote_api/user_events_and_trackings.rb
178
+ - lib/songkickr/remote_api/venue_details.rb
179
+ - lib/songkickr/result_set.rb
261
180
  - lib/songkickr/setlist.rb
262
181
  - lib/songkickr/setlist_item.rb
182
+ - lib/songkickr/tracking.rb
183
+ - lib/songkickr/tracking_result.rb
263
184
  - lib/songkickr/venue.rb
185
+ - lib/songkickr/venue_result.rb
264
186
  - lib/songkickr/version.rb
265
187
  - songkickr.gemspec
266
188
  - test.rb
267
189
  - test/fixtures/event_7391451.json
268
190
  - test/fixtures/events.json
269
191
  - test/fixtures/invalid_api_key.json
270
- - test/fixtures/locations_bar.json
192
+ - test/fixtures/location_search.json
193
+ - test/fixtures/metro_area.json
271
194
  - test/fixtures/no_events.json
272
195
  - test/fixtures/resource_not_found.json
196
+ - test/fixtures/users_attendance_calendar.json
197
+ - test/fixtures/vcr/artist_events.yml
198
+ - test/fixtures/vcr/artist_search.yml
199
+ - test/fixtures/vcr/artists_gigography.yml
200
+ - test/fixtures/vcr/concert_setlists.yml
201
+ - test/fixtures/vcr/event_search.yml
273
202
  - test/fixtures/vcr/invalid_api_key.yml
274
203
  - test/fixtures/vcr/invalid_artist_id.yml
275
204
  - test/fixtures/vcr/invalid_event_id.yml
276
205
  - test/fixtures/vcr/invalid_user.yml
277
206
  - test/fixtures/vcr/invalid_venue_id.yml
207
+ - test/fixtures/vcr/location_search.yml
208
+ - test/fixtures/vcr/metro_areas_events.yml
209
+ - test/fixtures/vcr/similar_artists.yml
210
+ - test/fixtures/vcr/users_artist_tracking.yml
211
+ - test/fixtures/vcr/users_attendance.yml
212
+ - test/fixtures/vcr/users_attendance_calendar.yml
213
+ - test/fixtures/vcr/users_events.yml
214
+ - test/fixtures/vcr/users_gigography.yml
215
+ - test/fixtures/vcr/users_metro_area_tracking.yml
216
+ - test/fixtures/vcr/users_muted_artists.yml
217
+ - test/fixtures/vcr/users_tracked_artists.yml
218
+ - test/fixtures/vcr/users_tracked_events_calendar.yml
219
+ - test/fixtures/vcr/users_tracked_metro_areas.yml
278
220
  - test/fixtures/vcr/valid_artist.yml
279
221
  - test/fixtures/vcr/valid_event.yml
280
222
  - test/fixtures/vcr/valid_user.yml
281
223
  - test/fixtures/vcr/valid_venue.yml
224
+ - test/fixtures/vcr/venue_calendar.yml
225
+ - test/fixtures/vcr/venue_search.yml
282
226
  - test/fixtures/venue_1276231.json
283
227
  - test/helper.rb
284
228
  - test/songkickr/test_artist.rb
229
+ - test/songkickr/test_calendar_entry.rb
285
230
  - test/songkickr/test_event.rb
286
231
  - test/songkickr/test_location.rb
232
+ - test/songkickr/test_metro_area.rb
287
233
  - test/songkickr/test_remote.rb
234
+ - test/songkickr/test_setlist_item.rb
288
235
  - test/songkickr/test_venue.rb
289
236
  - test/test_songkickr.rb
290
237
  - test/vcr_helper.rb
291
238
  homepage: http://github.com/jrmehle/songkickr
292
239
  licenses: []
240
+ metadata: {}
293
241
  post_install_message:
294
242
  rdoc_options: []
295
243
  require_paths:
296
244
  - lib
297
245
  required_ruby_version: !ruby/object:Gem::Requirement
298
- none: false
299
246
  requirements:
300
- - - ! '>='
247
+ - - '>='
301
248
  - !ruby/object:Gem::Version
302
249
  version: '0'
303
- segments:
304
- - 0
305
- hash: -2563626011433407077
306
250
  required_rubygems_version: !ruby/object:Gem::Requirement
307
- none: false
308
251
  requirements:
309
- - - ! '>='
252
+ - - '>='
310
253
  - !ruby/object:Gem::Version
311
254
  version: '0'
312
255
  requirements: []
313
256
  rubyforge_project:
314
- rubygems_version: 1.8.25
257
+ rubygems_version: 2.0.6
315
258
  signing_key:
316
- specification_version: 3
259
+ specification_version: 4
317
260
  summary: A Ruby wrapper around the Songkick API.
318
261
  test_files:
319
262
  - test/fixtures/event_7391451.json
320
263
  - test/fixtures/events.json
321
264
  - test/fixtures/invalid_api_key.json
322
- - test/fixtures/locations_bar.json
265
+ - test/fixtures/location_search.json
266
+ - test/fixtures/metro_area.json
323
267
  - test/fixtures/no_events.json
324
268
  - test/fixtures/resource_not_found.json
269
+ - test/fixtures/users_attendance_calendar.json
270
+ - test/fixtures/vcr/artist_events.yml
271
+ - test/fixtures/vcr/artist_search.yml
272
+ - test/fixtures/vcr/artists_gigography.yml
273
+ - test/fixtures/vcr/concert_setlists.yml
274
+ - test/fixtures/vcr/event_search.yml
325
275
  - test/fixtures/vcr/invalid_api_key.yml
326
276
  - test/fixtures/vcr/invalid_artist_id.yml
327
277
  - test/fixtures/vcr/invalid_event_id.yml
328
278
  - test/fixtures/vcr/invalid_user.yml
329
279
  - test/fixtures/vcr/invalid_venue_id.yml
280
+ - test/fixtures/vcr/location_search.yml
281
+ - test/fixtures/vcr/metro_areas_events.yml
282
+ - test/fixtures/vcr/similar_artists.yml
283
+ - test/fixtures/vcr/users_artist_tracking.yml
284
+ - test/fixtures/vcr/users_attendance.yml
285
+ - test/fixtures/vcr/users_attendance_calendar.yml
286
+ - test/fixtures/vcr/users_events.yml
287
+ - test/fixtures/vcr/users_gigography.yml
288
+ - test/fixtures/vcr/users_metro_area_tracking.yml
289
+ - test/fixtures/vcr/users_muted_artists.yml
290
+ - test/fixtures/vcr/users_tracked_artists.yml
291
+ - test/fixtures/vcr/users_tracked_events_calendar.yml
292
+ - test/fixtures/vcr/users_tracked_metro_areas.yml
330
293
  - test/fixtures/vcr/valid_artist.yml
331
294
  - test/fixtures/vcr/valid_event.yml
332
295
  - test/fixtures/vcr/valid_user.yml
333
296
  - test/fixtures/vcr/valid_venue.yml
297
+ - test/fixtures/vcr/venue_calendar.yml
298
+ - test/fixtures/vcr/venue_search.yml
334
299
  - test/fixtures/venue_1276231.json
335
300
  - test/helper.rb
336
301
  - test/songkickr/test_artist.rb
302
+ - test/songkickr/test_calendar_entry.rb
337
303
  - test/songkickr/test_event.rb
338
304
  - test/songkickr/test_location.rb
305
+ - test/songkickr/test_metro_area.rb
339
306
  - test/songkickr/test_remote.rb
307
+ - test/songkickr/test_setlist_item.rb
340
308
  - test/songkickr/test_venue.rb
341
309
  - test/test_songkickr.rb
342
310
  - test/vcr_helper.rb
data/bin/autospec DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'autospec' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('songkickr', 'autospec')
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'convert_to_should_syntax' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('songkickr', 'convert_to_should_syntax')
data/bin/guard DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'guard' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('songkickr', 'guard')
data/bin/htmldiff DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'htmldiff' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('songkickr', 'htmldiff')
data/bin/httparty DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'httparty' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('songkickr', 'httparty')
data/bin/jeweler DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'jeweler' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('songkickr', 'jeweler')
data/bin/ldiff DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'ldiff' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('songkickr', 'ldiff')
data/bin/rake DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'rake' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('songkickr', 'rake')
data/bin/rake2thor DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'rake2thor' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('songkickr', 'rake2thor')
data/bin/rg DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'rg' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('songkickr', 'rg')
data/bin/ri DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'ri' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('songkickr', 'ri')
data/bin/rspec DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'rspec' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('songkickr', 'rspec')
data/bin/thor DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'thor' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('songkickr', 'thor')