crawlspace 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c30181064ed649cf7f18b05382ae2592c79adc16
4
+ data.tar.gz: 8f8919c6b243b456c1e2454ccb0be3d65bf46c82
5
+ SHA512:
6
+ metadata.gz: bcb409e949db1d30970655ac275a7c5d41ebf89e7a437938dcba0e78e8801b6e0a861e78a76dadaaf3a75a3c5d3ba341116e74fe9d7aade556cbdd1d1f79ecfb
7
+ data.tar.gz: 0e3690084133d5493bd8aed81539dd53c2a6781005bfd82d545f1698def4f71e738457349dbb1c6272bd7b73e49ec364f24f42662c61fbe90d61c8bde696d401
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "shoulda", ">= 0"
10
+ gem "rdoc", "~> 3.12"
11
+ gem "bundler", "~> 1.0"
12
+ gem "jeweler", "~> 2.0.1"
13
+ gem "simplecov", ">= 0"
14
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,80 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ activesupport (4.2.1)
5
+ i18n (~> 0.7)
6
+ json (~> 1.7, >= 1.7.7)
7
+ minitest (~> 5.1)
8
+ thread_safe (~> 0.3, >= 0.3.4)
9
+ tzinfo (~> 1.1)
10
+ addressable (2.3.8)
11
+ builder (3.2.2)
12
+ descendants_tracker (0.0.4)
13
+ thread_safe (~> 0.3, >= 0.3.1)
14
+ docile (1.1.5)
15
+ faraday (0.9.1)
16
+ multipart-post (>= 1.2, < 3)
17
+ git (1.2.9.1)
18
+ github_api (0.12.3)
19
+ addressable (~> 2.3)
20
+ descendants_tracker (~> 0.0.4)
21
+ faraday (~> 0.8, < 0.10)
22
+ hashie (>= 3.3)
23
+ multi_json (>= 1.7.5, < 2.0)
24
+ nokogiri (~> 1.6.3)
25
+ oauth2
26
+ hashie (3.4.2)
27
+ highline (1.7.2)
28
+ i18n (0.7.0)
29
+ jeweler (2.0.1)
30
+ builder
31
+ bundler (>= 1.0)
32
+ git (>= 1.2.5)
33
+ github_api
34
+ highline (>= 1.6.15)
35
+ nokogiri (>= 1.5.10)
36
+ rake
37
+ rdoc
38
+ json (1.8.3)
39
+ jwt (1.5.0)
40
+ mini_portile (0.6.2)
41
+ minitest (5.7.0)
42
+ multi_json (1.11.0)
43
+ multi_xml (0.5.5)
44
+ multipart-post (2.0.0)
45
+ nokogiri (1.6.6.2)
46
+ mini_portile (~> 0.6.0)
47
+ oauth2 (1.0.0)
48
+ faraday (>= 0.8, < 0.10)
49
+ jwt (~> 1.0)
50
+ multi_json (~> 1.3)
51
+ multi_xml (~> 0.5)
52
+ rack (~> 1.2)
53
+ rack (1.6.1)
54
+ rake (10.4.2)
55
+ rdoc (3.12.2)
56
+ json (~> 1.4)
57
+ shoulda (3.5.0)
58
+ shoulda-context (~> 1.0, >= 1.0.1)
59
+ shoulda-matchers (>= 1.4.1, < 3.0)
60
+ shoulda-context (1.2.1)
61
+ shoulda-matchers (2.8.0)
62
+ activesupport (>= 3.0.0)
63
+ simplecov (0.10.0)
64
+ docile (~> 1.1.0)
65
+ json (~> 1.8)
66
+ simplecov-html (~> 0.10.0)
67
+ simplecov-html (0.10.0)
68
+ thread_safe (0.3.5)
69
+ tzinfo (1.2.2)
70
+ thread_safe (~> 0.1)
71
+
72
+ PLATFORMS
73
+ ruby
74
+
75
+ DEPENDENCIES
76
+ bundler (~> 1.0)
77
+ jeweler (~> 2.0.1)
78
+ rdoc (~> 3.12)
79
+ shoulda
80
+ simplecov
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2015 James Hu
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,19 @@
1
+ = crawlspace
2
+
3
+ Description goes here.
4
+
5
+ == Contributing to crawlspace
6
+
7
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
8
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
9
+ * Fork the project.
10
+ * Start a feature/bugfix branch.
11
+ * Commit and push until you are happy with your contribution.
12
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2015 James Hu. See LICENSE.txt for
18
+ further details.
19
+
data/Rakefile ADDED
@@ -0,0 +1,51 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
17
+ gem.name = "crawlspace"
18
+ gem.homepage = "http://github.com/axsuul/crawlspace"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{Ruby Crawlspace client}
21
+ gem.description = %Q{Ruby Crawlspace client}
22
+ gem.email = "hello@james.hu"
23
+ gem.authors = ["James Hu"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rake/testtask'
29
+ Rake::TestTask.new(:test) do |test|
30
+ test.libs << 'lib' << 'test'
31
+ test.pattern = 'test/**/test_*.rb'
32
+ test.verbose = true
33
+ end
34
+
35
+ desc "Code coverage detail"
36
+ task :simplecov do
37
+ ENV['COVERAGE'] = "true"
38
+ Rake::Task['test'].execute
39
+ end
40
+
41
+ task :default => :test
42
+
43
+ require 'rdoc/task'
44
+ Rake::RDocTask.new do |rdoc|
45
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
46
+
47
+ rdoc.rdoc_dir = 'rdoc'
48
+ rdoc.title = "crawlspace #{version}"
49
+ rdoc.rdoc_files.include('README*')
50
+ rdoc.rdoc_files.include('lib/**/*.rb')
51
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
@@ -0,0 +1,8 @@
1
+ {
2
+ "folders":
3
+ [
4
+ {
5
+ "path": "."
6
+ }
7
+ ]
8
+ }
@@ -0,0 +1,1342 @@
1
+ {
2
+ "auto_complete":
3
+ {
4
+ "selected_items":
5
+ [
6
+ [
7
+ "pro",
8
+ "proxy_ip_address"
9
+ ],
10
+ [
11
+ "ce",
12
+ "credential"
13
+ ],
14
+ [
15
+ "o",
16
+ "oauth_access_token"
17
+ ],
18
+ [
19
+ "aut",
20
+ "authorization_header"
21
+ ],
22
+ [
23
+ "cre",
24
+ "credential"
25
+ ],
26
+ [
27
+ "exec",
28
+ "execute_with_credential"
29
+ ],
30
+ [
31
+ "spot",
32
+ "spotify_request"
33
+ ],
34
+ [
35
+ "desc",
36
+ "describe"
37
+ ],
38
+ [
39
+ "access",
40
+ "access_token"
41
+ ],
42
+ [
43
+ "acc",
44
+ "access_token"
45
+ ],
46
+ [
47
+ "authe",
48
+ "authenticates"
49
+ ],
50
+ [
51
+ "auth",
52
+ "authenticate"
53
+ ],
54
+ [
55
+ "create",
56
+ "create_collection_by_spotify"
57
+ ],
58
+ [
59
+ "request",
60
+ "request_count"
61
+ ],
62
+ [
63
+ "requet",
64
+ "request_count"
65
+ ],
66
+ [
67
+ "crawl_",
68
+ "crawl_tracks_from_spotify"
69
+ ],
70
+ [
71
+ "exe",
72
+ "execute_request_from_spotify"
73
+ ],
74
+ [
75
+ "spo",
76
+ "spotifyable_id"
77
+ ],
78
+ [
79
+ "spoti",
80
+ "spotifyable_callback"
81
+ ],
82
+ [
83
+ "find",
84
+ "find_by_endpoint_and_params"
85
+ ],
86
+ [
87
+ "Spot",
88
+ "SpotifyRequest"
89
+ ],
90
+ [
91
+ "Spotif",
92
+ "SpotifyRequest"
93
+ ],
94
+ [
95
+ "cate",
96
+ "categories"
97
+ ],
98
+ [
99
+ "Spe",
100
+ "SpotifyRequest"
101
+ ],
102
+ [
103
+ "requ",
104
+ "request_from_spotify"
105
+ ],
106
+ [
107
+ "sp",
108
+ "spotifyable_callback"
109
+ ],
110
+ [
111
+ "Spoti",
112
+ "SpotifyRequest"
113
+ ],
114
+ [
115
+ "play",
116
+ "playlist_data"
117
+ ],
118
+ [
119
+ "pll",
120
+ "playlist"
121
+ ],
122
+ [
123
+ "playli",
124
+ "playlists"
125
+ ],
126
+ [
127
+ "acces",
128
+ "access_token"
129
+ ],
130
+ [
131
+ "plaiy",
132
+ "playlist_tracks"
133
+ ],
134
+ [
135
+ "tra",
136
+ "track_data"
137
+ ],
138
+ [
139
+ "atr",
140
+ "attributes_from_spotify"
141
+ ],
142
+ [
143
+ "read",
144
+ "read_fixture"
145
+ ],
146
+ [
147
+ "art",
148
+ "artist_tracks"
149
+ ],
150
+ [
151
+ "create_",
152
+ "create_tracks_from_spotify"
153
+ ],
154
+ [
155
+ "build",
156
+ "build_by_spotify"
157
+ ],
158
+ [
159
+ "acce",
160
+ "access_header"
161
+ ],
162
+ [
163
+ "client",
164
+ "client_credentials"
165
+ ],
166
+ [
167
+ "toke",
168
+ "token_resource"
169
+ ],
170
+ [
171
+ "arti",
172
+ "artist_id"
173
+ ],
174
+ [
175
+ "track",
176
+ "track_connection"
177
+ ],
178
+ [
179
+ "conn",
180
+ "connection"
181
+ ],
182
+ [
183
+ "plat",
184
+ "platform_connect_url"
185
+ ],
186
+ [
187
+ "update_from",
188
+ "update_from_platform"
189
+ ],
190
+ [
191
+ "update",
192
+ "update_from_platform"
193
+ ],
194
+ [
195
+ "platfor",
196
+ "platform_id"
197
+ ],
198
+ [
199
+ "platform",
200
+ "platform_token"
201
+ ],
202
+ [
203
+ "patfo",
204
+ "platform_type"
205
+ ],
206
+ [
207
+ "Jarv",
208
+ "JarvisInputWorker"
209
+ ],
210
+ [
211
+ "messag",
212
+ "message_handler"
213
+ ],
214
+ [
215
+ "process",
216
+ "process_message"
217
+ ],
218
+ [
219
+ "connec",
220
+ "connections"
221
+ ],
222
+ [
223
+ "relat",
224
+ "relative_paths"
225
+ ],
226
+ [
227
+ "sour",
228
+ "source_urls"
229
+ ],
230
+ [
231
+ "delete_",
232
+ "delete_if"
233
+ ],
234
+ [
235
+ "Ban",
236
+ "BanFromVarnishRegularlyWorker"
237
+ ],
238
+ [
239
+ "rever",
240
+ "reverse_proxy_ok"
241
+ ],
242
+ [
243
+ "check",
244
+ "check_reverse_proxy"
245
+ ],
246
+ [
247
+ "cas",
248
+ "cassette_name"
249
+ ],
250
+ [
251
+ "ref",
252
+ "refresh_heartbeat"
253
+ ]
254
+ ]
255
+ },
256
+ "buffers":
257
+ [
258
+ ],
259
+ "build_system": "",
260
+ "build_system_choices":
261
+ [
262
+ ],
263
+ "build_varint": "",
264
+ "command_palette":
265
+ {
266
+ "height": 330.0,
267
+ "last_filter": "rename",
268
+ "selected_items":
269
+ [
270
+ [
271
+ "rename",
272
+ "File: Rename"
273
+ ],
274
+ [
275
+ "delete",
276
+ "File: Delete"
277
+ ],
278
+ [
279
+ "delte",
280
+ "File: Delete"
281
+ ],
282
+ [
283
+ "rena",
284
+ "File: Rename"
285
+ ],
286
+ [
287
+ "move",
288
+ "File: Move"
289
+ ],
290
+ [
291
+ "java",
292
+ "Set Syntax: JavaScript"
293
+ ],
294
+ [
295
+ "javascr",
296
+ "Set Syntax: JavaScript"
297
+ ],
298
+ [
299
+ "dele",
300
+ "File: Delete"
301
+ ],
302
+ [
303
+ "html",
304
+ "Set Syntax: HTML"
305
+ ],
306
+ [
307
+ "rece",
308
+ "Evernote: List recent notes"
309
+ ],
310
+ [
311
+ "recen",
312
+ "Evernote: List recent notes"
313
+ ],
314
+ [
315
+ "new",
316
+ "File: New File Relative to Project Root"
317
+ ],
318
+ [
319
+ "new file",
320
+ "File: New File Relative to Project Root"
321
+ ],
322
+ [
323
+ "update",
324
+ "Evernote: Update Evernote Note"
325
+ ],
326
+ [
327
+ "upd",
328
+ "Evernote: Update Evernote Note"
329
+ ],
330
+ [
331
+ "evernote rece",
332
+ "Evernote: List recent notes"
333
+ ],
334
+ [
335
+ "new fil",
336
+ "File: New File Relative to Current View"
337
+ ],
338
+ [
339
+ "copy",
340
+ "ANF: Copy Current File"
341
+ ],
342
+ [
343
+ "ever",
344
+ "Evernote: List recent notes"
345
+ ],
346
+ [
347
+ "renam",
348
+ "File: Rename"
349
+ ],
350
+ [
351
+ "dleete",
352
+ "File: Delete"
353
+ ],
354
+ [
355
+ "recent",
356
+ "Evernote: List recent notes"
357
+ ],
358
+ [
359
+ "evernote",
360
+ "Evernote: List recent notes"
361
+ ],
362
+ [
363
+ "up",
364
+ "Evernote: Update Evernote Note"
365
+ ],
366
+ [
367
+ "updat",
368
+ "Evernote: Update Evernote Note"
369
+ ],
370
+ [
371
+ "eve",
372
+ "Evernote: List recent notes"
373
+ ],
374
+ [
375
+ "diff",
376
+ "FileDiffs: Menu"
377
+ ],
378
+ [
379
+ "install pac",
380
+ "Package Control: Install Package"
381
+ ],
382
+ [
383
+ "emmet",
384
+ "Set Syntax: Emmet"
385
+ ],
386
+ [
387
+ "",
388
+ "ANF: Copy Current File"
389
+ ]
390
+ ],
391
+ "width": 601.0
392
+ },
393
+ "console":
394
+ {
395
+ "height": 0.0,
396
+ "history":
397
+ [
398
+ ]
399
+ },
400
+ "distraction_free":
401
+ {
402
+ "menu_visible": true,
403
+ "show_minimap": false,
404
+ "show_open_files": false,
405
+ "show_tabs": false,
406
+ "side_bar_visible": false,
407
+ "status_bar_visible": false
408
+ },
409
+ "expanded_folders":
410
+ [
411
+ ],
412
+ "file_history":
413
+ [
414
+ "/Users/axsuul/Dropbox/Projects/Web/Crawlspace/Vagrantfile",
415
+ "/Users/axsuul/Dropbox/Projects/Web/Crawlspace/kitchen/roles/db.json",
416
+ "/Users/axsuul/Dropbox/Projects/Web/Crawlspace/kitchen/data_bags/database/users.json",
417
+ "/Users/axsuul/Dropbox/Projects/Web/Crawlspace/config/database.yml",
418
+ "/Users/axsuul/Dropbox/Projects/Web/Crawlspace/config/deploy.rb",
419
+ "/Users/axsuul/Dropbox/Projects/Web/Crawlspace/config/unicorn.rb",
420
+ "/Users/axsuul/Dropbox/Projects/Web/Crawlspace/kitchen/roles/app.json",
421
+ "/Users/axsuul/Dropbox/Projects/Web/Crawlspace/kitchen/site-cookbooks/site-database/recipes/default.rb",
422
+ "/Users/axsuul/Dropbox/Projects/Web/Crawlspace/kitchen/site-cookbooks/site-nginx/templates/default/site.erb",
423
+ "/Users/axsuul/Dropbox/Projects/Web/Crawlspace/kitchen/site-cookbooks/site-rbenv/recipes/user.rb",
424
+ "/Users/axsuul/Dropbox/Projects/Web/Crawlspace/app/views/layouts/application.html.haml",
425
+ "/Users/axsuul/Dropbox/Projects/Web/Crawlspace/config/application.rb",
426
+ "/Users/axsuul/Dropbox/Projects/Web/Crawlspace/config/initializers/session_store.rb",
427
+ "/Users/axsuul/Application Data/Sublime Text 3/Crawlspace.sublime-project",
428
+ "/Users/axsuul/Dropbox/Projects/Web/Crawlspace/README.md",
429
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/workers/execute_next_spotify_requests_worker.rb",
430
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/vcr/lib/spotify/client/initialization/authenticate.yml",
431
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/lib/spotify/client_spec.rb",
432
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/Gemfile",
433
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/assets/javascripts/admin/_dashboard.js.coffee",
434
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/assets/javascripts/admin.js.coffee",
435
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/factories/spotify_requests.rb",
436
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/workers/execute_next_spotify_request_worker.rb",
437
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/models/concerns/asyncable.rb",
438
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/controllers/admin/stats_controller.rb",
439
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/assets/stylesheets/admin.css.scss",
440
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/config/initializers/assets.rb",
441
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/models/playlist_spec.rb",
442
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/config/application.rb",
443
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/README.md",
444
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/views/main/index.html.haml",
445
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/controllers/stats_controller.rb",
446
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/config/sidekiq.yml",
447
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/kitchen/site-cookbooks/site-monit/recipes/sidekiq.rb",
448
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/views/stats/index.html.haml",
449
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/controllers/main_controller.rb",
450
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/models/album.rb",
451
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/models/spotify_request.rb",
452
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/db/migrate/20150531075157_add_spotifyable_id_to_spotify_request.rb",
453
+ "/Volumes/Media/Movies/Spring, Summer, Fall, Winter... and Spring (2003)/Spring, Summer, Fall, Winter... and Spring.en.srt",
454
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/models/concerns/spotifyable.rb",
455
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/models/playlist.rb",
456
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/fixtures/spotify/playlists/search.json",
457
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/db/migrate/20150527203429_create_spotify_requests.rb",
458
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/db/migrate/20150521033311_create_tracks.rb",
459
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/db/migrate/20150521032445_create_playlists.rb",
460
+ "/Users/axsuul/Downloads/tilt-search 2/package.json",
461
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/spec_helper.rb",
462
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/lib/spotify.rb",
463
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/models/user_spec.rb",
464
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/models/playlist_track_spec.rb",
465
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/models/album_spec.rb",
466
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/models/artist_track_spec.rb",
467
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/models/artist_spec.rb",
468
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/models/artist_track.rb",
469
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/rails_helper.rb",
470
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/models/track.rb",
471
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/models/artist.rb",
472
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/lib/spotify/client.rb",
473
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/workers/spotify_worker.rb",
474
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/vcr/models/playlist/spotify_data/basic.yml",
475
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/support/helpers.rb",
476
+ "/Users/axsuul/Downloads/test.html",
477
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/fixtures/spotify/tracks/higher.json",
478
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/fixtures/spotify/playlists/kpop.json",
479
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/models/track_spec.rb",
480
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/models/user.rb",
481
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/fixtures/spotify/playlists/house.json",
482
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/factories/users.rb",
483
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/Berksfile",
484
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/app/models/playlist_track.rb",
485
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/db/migrate/20150521031658_create_users.rb",
486
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/db/migrate/20150521044927_create_playlist_tracks.rb",
487
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/db/migrate/20150521045004_create_artists.rb",
488
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/spec/support/vcr.rb",
489
+ "/Users/axsuul/Application Data/Sublime Text 3/Thump.sublime-project",
490
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/.env",
491
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/db/migrate/20150521045624_create_artist_tracks.rb",
492
+ "/Users/axsuul/Dropbox/Projects/Web/Thump/kitchen/roles/db.json",
493
+ "/Users/axsuul/Library/Application Support/Sublime Text 3/Packages/User/Default (OSX).sublime-keymap",
494
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/bin/slack-websocket",
495
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/app/models/user.rb",
496
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/app/workers/connect_team_to_platform_worker.rb",
497
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/app/models/concerns/asyncable.rb",
498
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/db/migrate/20150519233247_create_teams.rb",
499
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/lib/tasks/auto_annotate_models.rake",
500
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/db/migrate/20150519234501_create_users.rb",
501
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/app/workers/update_user_from_platform_worker.rb",
502
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/lib/slack/client.rb",
503
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/lib/platform/base.rb",
504
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/spec/vcr/models/team/after_create/sync_with_platform.yml",
505
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/spec/factories/teams.rb",
506
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/app/models/team.rb",
507
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/spec/models/team_spec.rb",
508
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/app/workers/update_team_from_platform_worker.rb",
509
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/.env",
510
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/lib/platform/slack.rb",
511
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/spec/support/vcr.rb",
512
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/lib/jarvis.rb",
513
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/lib/jarvis/listener.rb",
514
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/lib/slack.rb",
515
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/lib/jarvis/test.rb",
516
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/spec/lib/jarvis_spec.rb",
517
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/lib/tasks/annotate.rake",
518
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/config/initializers/annotate.rb",
519
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/app/workers/jarvis_bot_worker.rb",
520
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/bin/slack_websocket",
521
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/config/routes.rb",
522
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/kitchen/site-cookbooks/site-nginx/templates/default/site.erb",
523
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/config/application.rb",
524
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/bin/jarvis",
525
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/app/workers/jarvis_input_worker.rb",
526
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/lib/jarvis/platform/slack.rb",
527
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/README.md",
528
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/Gemfile",
529
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/lib/slack/bot.rb",
530
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/config/initializers/redis.rb",
531
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/kitchen/site-cookbooks/site-monit/recipes/redis.rb",
532
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/kitchen/site-cookbooks/site-application/templates/default/ssh_config.erb",
533
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/kitchen/roles/db.json",
534
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/config/database.yml",
535
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/kitchen/roles/app.json",
536
+ "/Users/axsuul/Dropbox/Projects/Web/Aboard/kitchen/site-cookbooks/site-database/recipes/default.rb",
537
+ "/Users/axsuul/Dropbox/Projects/Web/Web Estate/spec/models/site_spec.rb",
538
+ "/Users/axsuul/Dropbox/Projects/Web/Web Estate/app/models/concerns/entitable.rb",
539
+ "/Users/axsuul/Dropbox/Projects/Web/Web Estate/app/models/entity.rb",
540
+ "/Users/axsuul/Dropbox/Projects/Web/Web Estate/spec/models/wordpress_spec.rb",
541
+ "/Users/axsuul/Dropbox/Projects/Web/Web Estate/spec/models/private_server_spec.rb"
542
+ ],
543
+ "find":
544
+ {
545
+ "height": 28.0
546
+ },
547
+ "find_in_files":
548
+ {
549
+ "height": 109.0,
550
+ "where_history":
551
+ [
552
+ "<project>",
553
+ "/Users/axsuul/Dropbox/Projects/Web/Web Estate/spec",
554
+ "<project>",
555
+ ""
556
+ ]
557
+ },
558
+ "find_state":
559
+ {
560
+ "case_sensitive": true,
561
+ "find_history":
562
+ [
563
+ "organization_id",
564
+ "postgres_password",
565
+ "database_password",
566
+ "railyard.dev",
567
+ "crawlspace.com",
568
+ "railyard",
569
+ "Railyard",
570
+ "crawlspace",
571
+ "crawlspace.com",
572
+ "railyard",
573
+ "CLIENT_SECRET",
574
+ "client_secret",
575
+ "Spotify::Client.get",
576
+ "reset_access_token",
577
+ "reset_access_token!",
578
+ "reset_access_token",
579
+ "authenticate!",
580
+ "authenticate",
581
+ "spotfiyable_type",
582
+ "_async",
583
+ "asyncable_worker_class",
584
+ "SpotifyWorker",
585
+ "precompile",
586
+ "execute_",
587
+ "create_collection_by_spotify",
588
+ "request_from_spotify",
589
+ "limit",
590
+ "create_all_by",
591
+ "create_all_by_spotify",
592
+ "binding.pry",
593
+ "create_tracks_from_spotify",
594
+ ":create_all_by_spotify",
595
+ ":focus",
596
+ "endpoint",
597
+ "focus",
598
+ "execute_request_from_spotify",
599
+ ":focus",
600
+ "unexecuted",
601
+ "requests",
602
+ "create_by_spotify",
603
+ "request_from_spotify",
604
+ "images",
605
+ "(.+)\\\"id\\\".+",
606
+ "(.*)\\\"id\\\"",
607
+ "binding.pry",
608
+ "validates :spotify_id, presence: true",
609
+ "SpotifyRequest",
610
+ "binding.pry",
611
+ "mkbhd",
612
+ "4ffMvVkWjJ6ZKNNzLPfwt4",
613
+ "focus",
614
+ "track = ",
615
+ ":focus",
616
+ "valiates",
617
+ ":focus",
618
+ "\\\"",
619
+ "focus",
620
+ "\\\"",
621
+ ":images",
622
+ "array",
623
+ ":images",
624
+ "build",
625
+ "create_from_spotify",
626
+ "API_ENDPOINT",
627
+ "TOKEN_ENDPOINT",
628
+ "method",
629
+ "encoded",
630
+ "eager_load",
631
+ "external_id",
632
+ "service",
633
+ "spotify",
634
+ "ctrl",
635
+ "thump",
636
+ "railyard",
637
+ "10.10.10.10",
638
+ "1.2.3.4",
639
+ "puts",
640
+ "binding.pry",
641
+ "message",
642
+ "add_connection",
643
+ "unadd_connection",
644
+ "track_connection",
645
+ "add_connection",
646
+ "UpdateTeamFromPlatformWorker",
647
+ "platform_websocket_url",
648
+ "data",
649
+ " = ",
650
+ "self.",
651
+ "message(",
652
+ "binding.pry",
653
+ "(token",
654
+ "team",
655
+ "token",
656
+ "With",
657
+ "sync_with_platform",
658
+ "update_from_platform",
659
+ "update_from_platform_async",
660
+ "drain_all",
661
+ "sync_with_platform",
662
+ "# Requires supporting ruby files with custom matchers and macros, etc,\n# in spec/support/ and its subdirectories.\nDir[Rails.root.join(\"spec/support/**/*.rb\")].each {|f| require f}",
663
+ "populate_from_platform",
664
+ "Jarvis::Platform",
665
+ "Test",
666
+ "test_framework",
667
+ "slack_webhook",
668
+ "unicorn",
669
+ "site-monit::slack",
670
+ "upkeep",
671
+ "binind",
672
+ "data",
673
+ "0.0.0.0",
674
+ "connect",
675
+ "vcr",
676
+ "10.10.10.10",
677
+ "0.0.0.0",
678
+ "postgres_password",
679
+ "database_password",
680
+ "railyard",
681
+ "Railyard",
682
+ "build_wayback_source_urls!",
683
+ "match_array",
684
+ "tag",
685
+ "build_wayback_source_urls!",
686
+ "build_wayback_source",
687
+ "ia_archiver",
688
+ "attempt(",
689
+ "attempt",
690
+ "retry"
691
+ ],
692
+ "highlight": true,
693
+ "in_selection": false,
694
+ "preserve_case": false,
695
+ "regex": false,
696
+ "replace_history":
697
+ [
698
+ "crawlspace",
699
+ "Crawlspace",
700
+ "crawlspace",
701
+ "update_from_platform",
702
+ "allaboarddatrain",
703
+ "aboard",
704
+ "Aboard"
705
+ ],
706
+ "reverse": false,
707
+ "show_context": true,
708
+ "use_buffer2": true,
709
+ "whole_word": false,
710
+ "wrap": true
711
+ },
712
+ "groups":
713
+ [
714
+ {
715
+ "sheets":
716
+ [
717
+ ]
718
+ }
719
+ ],
720
+ "incremental_find":
721
+ {
722
+ "height": 28.0
723
+ },
724
+ "input":
725
+ {
726
+ "height": 39.0
727
+ },
728
+ "layout":
729
+ {
730
+ "cells":
731
+ [
732
+ [
733
+ 0,
734
+ 0,
735
+ 1,
736
+ 1
737
+ ]
738
+ ],
739
+ "cols":
740
+ [
741
+ 0.0,
742
+ 1.0
743
+ ],
744
+ "rows":
745
+ [
746
+ 0.0,
747
+ 1.0
748
+ ]
749
+ },
750
+ "menu_visible": true,
751
+ "output.find_results":
752
+ {
753
+ "height": 0.0
754
+ },
755
+ "output.sftp":
756
+ {
757
+ "height": 0.0
758
+ },
759
+ "pinned_build_system": "",
760
+ "project": "crawlspace-ruby.sublime-project",
761
+ "replace":
762
+ {
763
+ "height": 52.0
764
+ },
765
+ "save_all_on_build": true,
766
+ "select_file":
767
+ {
768
+ "height": 0.0,
769
+ "last_filter": "",
770
+ "selected_items":
771
+ [
772
+ [
773
+ "sidekiq.",
774
+ "config/sidekiq.yml"
775
+ ],
776
+ [
777
+ "createprox",
778
+ "db/migrate/20150603015612_create_proxies.rb"
779
+ ],
780
+ [
781
+ "creaor",
782
+ "db/migrate/20150603011305_create_organizations.rb"
783
+ ],
784
+ [
785
+ "createproj",
786
+ "db/migrate/20150603025850_create_projects.rb"
787
+ ],
788
+ [
789
+ "proj",
790
+ "app/models/project.rb"
791
+ ],
792
+ [
793
+ "orga",
794
+ "app/models/organization.rb"
795
+ ],
796
+ [
797
+ "crerequ",
798
+ "spec/factories/requests.rb"
799
+ ],
800
+ [
801
+ "appli",
802
+ "config/application.rb"
803
+ ],
804
+ [
805
+ "read",
806
+ "README.md"
807
+ ],
808
+ [
809
+ "secre",
810
+ "config/secrets.yml"
811
+ ],
812
+ [
813
+ "rea",
814
+ "README.md"
815
+ ],
816
+ [
817
+ "vagra",
818
+ "Vagrantfile"
819
+ ],
820
+ [
821
+ "cre",
822
+ "app/models/credential.rb"
823
+ ],
824
+ [
825
+ "creacre",
826
+ "db/migrate/20150602182120_create_credentials.rb"
827
+ ],
828
+ [
829
+ "sporesp",
830
+ "spec/models/spotify_request_spec.rb"
831
+ ],
832
+ [
833
+ "spocli",
834
+ "lib/spotify/client.rb"
835
+ ],
836
+ [
837
+ "",
838
+ "app/models/spotify_request.rb"
839
+ ],
840
+ [
841
+ "gem",
842
+ "Gemfile"
843
+ ],
844
+ [
845
+ "sporeq",
846
+ "app/models/spotify_request.rb"
847
+ ],
848
+ [
849
+ "spotreq",
850
+ "app/models/spotify_request.rb"
851
+ ],
852
+ [
853
+ "credenti",
854
+ "app/models/credential.rb"
855
+ ],
856
+ [
857
+ "client",
858
+ "app/models/client.rb"
859
+ ],
860
+ [
861
+ "clien",
862
+ "lib/spotify/client.rb"
863
+ ],
864
+ [
865
+ "creacli",
866
+ "db/migrate/20150602181823_create_clients.rb"
867
+ ],
868
+ [
869
+ "exec",
870
+ "app/workers/execute_next_spotify_requests_worker.rb"
871
+ ],
872
+ [
873
+ "spotrequ",
874
+ "app/models/spotify_request.rb"
875
+ ],
876
+ [
877
+ "spotclien",
878
+ "lib/spotify/client.rb"
879
+ ],
880
+ [
881
+ "playli",
882
+ "app/models/playlist.rb"
883
+ ],
884
+ [
885
+ "spotifyabl",
886
+ "app/models/concerns/spotifyable.rb"
887
+ ],
888
+ [
889
+ "sec",
890
+ "config/secrets.yml"
891
+ ],
892
+ [
893
+ "application.h",
894
+ "app/views/layouts/application.html.haml"
895
+ ],
896
+ [
897
+ "vag",
898
+ "Vagrantfile"
899
+ ],
900
+ [
901
+ "dashbocon",
902
+ "app/controllers/admin/dashboard_controller.rb"
903
+ ],
904
+ [
905
+ "dashinde",
906
+ "app/views/admin/dashboard/index.html.haml"
907
+ ],
908
+ [
909
+ "cloc",
910
+ "config/clock.rb"
911
+ ],
912
+ [
913
+ "request",
914
+ "app/models/spotify_request.rb"
915
+ ],
916
+ [
917
+ "clie",
918
+ "lib/spotify/client.rb"
919
+ ],
920
+ [
921
+ "iniauth",
922
+ "spec/vcr/lib/spotify/client/initialization/authenticate.yml"
923
+ ],
924
+ [
925
+ "spoticli",
926
+ "lib/spotify/client.rb"
927
+ ],
928
+ [
929
+ "berk",
930
+ "Berksfile"
931
+ ],
932
+ [
933
+ "_lay",
934
+ "app/assets/javascripts/admin/_layout.js.coffee"
935
+ ],
936
+ [
937
+ "admin.js",
938
+ "app/assets/javascripts/admin.js.coffee"
939
+ ],
940
+ [
941
+ "admin.html",
942
+ "app/views/layouts/admin.html.haml"
943
+ ],
944
+ [
945
+ "seed",
946
+ "db/seeds.rb"
947
+ ],
948
+ [
949
+ "seeds",
950
+ "db/seeds.rb"
951
+ ],
952
+ [
953
+ "sporeqcon",
954
+ "app/controllers/admin/spotify_requests_controller.rb"
955
+ ],
956
+ [
957
+ "spore",
958
+ "app/models/spotify_request.rb"
959
+ ],
960
+ [
961
+ "_dash",
962
+ "app/assets/javascripts/admin/_dashboard.js.coffee"
963
+ ],
964
+ [
965
+ "dashindex",
966
+ "app/views/admin/dashboard/index.html.haml"
967
+ ],
968
+ [
969
+ "rout",
970
+ "config/routes.rb"
971
+ ],
972
+ [
973
+ "dashin",
974
+ "app/views/admin/dashboard/index.html.haml"
975
+ ],
976
+ [
977
+ "dashbo",
978
+ "app/controllers/admin/dashboard_controller.rb"
979
+ ],
980
+ [
981
+ "spot",
982
+ "lib/spotify.rb"
983
+ ],
984
+ [
985
+ "web.j",
986
+ "kitchen/roles/web.json"
987
+ ],
988
+ [
989
+ "base.js",
990
+ "kitchen/roles/base.json"
991
+ ],
992
+ [
993
+ "clock.rb",
994
+ "config/clock.rb"
995
+ ],
996
+ [
997
+ "deploy",
998
+ "config/deploy.rb"
999
+ ],
1000
+ [
1001
+ "exenew",
1002
+ "spec/workers/execute_next_spotify_request_worker_spec.rb"
1003
+ ],
1004
+ [
1005
+ "facspo",
1006
+ "spec/factories/spotify_requests.rb"
1007
+ ],
1008
+ [
1009
+ "spotif",
1010
+ "app/models/concerns/spotifyable.rb"
1011
+ ],
1012
+ [
1013
+ "facspot",
1014
+ "spec/factories/spotify_requests.rb"
1015
+ ],
1016
+ [
1017
+ "exene",
1018
+ "app/workers/execute_next_spotify_request_worker.rb"
1019
+ ],
1020
+ [
1021
+ "spoti",
1022
+ "app/workers/spotify_worker.rb"
1023
+ ],
1024
+ [
1025
+ "dash",
1026
+ "app/views/admin/dashboard/index.html.haml"
1027
+ ],
1028
+ [
1029
+ "admincon",
1030
+ "app/controllers/admin_controller.rb"
1031
+ ],
1032
+ [
1033
+ "statindex",
1034
+ "app/views/admin/stats/index.html.haml"
1035
+ ],
1036
+ [
1037
+ "statscon",
1038
+ "app/controllers/admin/stats_controller.rb"
1039
+ ],
1040
+ [
1041
+ "_layou",
1042
+ "app/assets/javascripts/_layout.js.jsx"
1043
+ ],
1044
+ [
1045
+ "assets.rb",
1046
+ "config/initializers/assets.rb"
1047
+ ],
1048
+ [
1049
+ "appli.rb",
1050
+ "config/application.rb"
1051
+ ],
1052
+ [
1053
+ "applica.html",
1054
+ "app/views/layouts/application.html.haml"
1055
+ ],
1056
+ [
1057
+ "route",
1058
+ "config/routes.rb"
1059
+ ],
1060
+ [
1061
+ "spoiwor",
1062
+ "app/workers/spotify_worker.rb"
1063
+ ],
1064
+ [
1065
+ "idek",
1066
+ "config/sidekiq.yml"
1067
+ ],
1068
+ [
1069
+ "playlist_sp",
1070
+ "spec/models/playlist_spec.rb"
1071
+ ],
1072
+ [
1073
+ "playlist",
1074
+ "app/models/playlist.rb"
1075
+ ],
1076
+ [
1077
+ "plaiys_sp",
1078
+ "spec/models/playlist_spec.rb"
1079
+ ],
1080
+ [
1081
+ "play",
1082
+ "app/models/playlist.rb"
1083
+ ],
1084
+ [
1085
+ "facrequ",
1086
+ "spec/factories/spotify_requests.rb"
1087
+ ],
1088
+ [
1089
+ "sporsp",
1090
+ "spec/models/spotify_request_spec.rb"
1091
+ ],
1092
+ [
1093
+ "playlist_s",
1094
+ "spec/models/playlist_spec.rb"
1095
+ ],
1096
+ [
1097
+ "clock",
1098
+ "kitchen/site-cookbooks/site-monit/recipes/clockwork.rb"
1099
+ ],
1100
+ [
1101
+ "sptifyabl",
1102
+ "app/models/concerns/spotifyable.rb"
1103
+ ],
1104
+ [
1105
+ "spotf",
1106
+ "app/models/concerns/spotifyable.rb"
1107
+ ],
1108
+ [
1109
+ "spreq",
1110
+ "app/models/spotify_request.rb"
1111
+ ],
1112
+ [
1113
+ "sidek",
1114
+ "config/sidekiq.yml"
1115
+ ],
1116
+ [
1117
+ "sideki",
1118
+ "kitchen/site-cookbooks/site-monit/recipes/sidekiq.rb"
1119
+ ],
1120
+ [
1121
+ "maincon",
1122
+ "app/controllers/main_controller.rb"
1123
+ ],
1124
+ [
1125
+ "appl.ht",
1126
+ "app/views/layouts/application.html.haml"
1127
+ ],
1128
+ [
1129
+ "appl.cs",
1130
+ "app/assets/stylesheets/application.css.scss"
1131
+ ],
1132
+ [
1133
+ "index.",
1134
+ "app/views/main/index.html.haml"
1135
+ ],
1136
+ [
1137
+ "users.j",
1138
+ "kitchen/data_bags/database/users.json"
1139
+ ],
1140
+ [
1141
+ ".en",
1142
+ ".env"
1143
+ ],
1144
+ [
1145
+ "deplo",
1146
+ "config/deploy.rb"
1147
+ ],
1148
+ [
1149
+ "capf",
1150
+ "Capfile"
1151
+ ],
1152
+ [
1153
+ "siterbeuser",
1154
+ "kitchen/site-cookbooks/site-rbenv/recipes/user.rb"
1155
+ ],
1156
+ [
1157
+ "ssh_con",
1158
+ "kitchen/site-cookbooks/site-application/templates/default/ssh_config.erb"
1159
+ ],
1160
+ [
1161
+ "produ",
1162
+ "kitchen/nodes/production.json"
1163
+ ],
1164
+ [
1165
+ "playlist_p",
1166
+ "spec/models/playlist_spec.rb"
1167
+ ],
1168
+ [
1169
+ "asyc",
1170
+ "app/models/concerns/asyncable.rb"
1171
+ ],
1172
+ [
1173
+ "creatspot",
1174
+ "db/migrate/20150527203429_create_spotify_requests.rb"
1175
+ ],
1176
+ [
1177
+ "adds",
1178
+ "db/migrate/20150531075157_add_spotifyable_id_to_spotify_request.rb"
1179
+ ],
1180
+ [
1181
+ "spotifyal",
1182
+ "app/models/concerns/spotifyable.rb"
1183
+ ],
1184
+ [
1185
+ "spotcli",
1186
+ "lib/spotify/client.rb"
1187
+ ],
1188
+ [
1189
+ "spotreqsp",
1190
+ "spec/models/spotify_request_spec.rb"
1191
+ ],
1192
+ [
1193
+ "spot_sp",
1194
+ "spec/models/spotify_request_spec.rb"
1195
+ ],
1196
+ [
1197
+ "spotireqsp",
1198
+ "spec/models/spotify_request_spec.rb"
1199
+ ],
1200
+ [
1201
+ "boot.",
1202
+ "config/boot.rb"
1203
+ ],
1204
+ [
1205
+ "createspo",
1206
+ "db/migrate/20150527203429_create_spotify_requests.rb"
1207
+ ],
1208
+ [
1209
+ "spotireq",
1210
+ "app/models/spotify_request.rb"
1211
+ ],
1212
+ [
1213
+ "playlist.rb",
1214
+ "app/models/playlist.rb"
1215
+ ],
1216
+ [
1217
+ "createspot",
1218
+ "db/migrate/20150527203429_create_spotify_requests.rb"
1219
+ ],
1220
+ [
1221
+ "spotify_req",
1222
+ "spec/models/spotify_request_spec.rb"
1223
+ ],
1224
+ [
1225
+ "spotify",
1226
+ "app/models/concerns/spotifyable.rb"
1227
+ ],
1228
+ [
1229
+ "pl",
1230
+ "app/models/playlist.rb"
1231
+ ],
1232
+ [
1233
+ "main.html",
1234
+ "app/views/main/index.html.haml"
1235
+ ],
1236
+ [
1237
+ "layout.",
1238
+ "app/assets/javascripts/_layout.js.coffee"
1239
+ ],
1240
+ [
1241
+ "aplic.js",
1242
+ "app/assets/javascripts/application.js.coffee"
1243
+ ],
1244
+ [
1245
+ "appli.js",
1246
+ "app/assets/javascripts/application.js.coffee"
1247
+ ],
1248
+ [
1249
+ "boot.rb",
1250
+ "config/boot.rb"
1251
+ ],
1252
+ [
1253
+ ".env",
1254
+ ".env"
1255
+ ],
1256
+ [
1257
+ "secres",
1258
+ "config/secrets.yml"
1259
+ ],
1260
+ [
1261
+ "plalist",
1262
+ "app/models/playlist.rb"
1263
+ ],
1264
+ [
1265
+ "spotifyr",
1266
+ "lib/spotify.rb"
1267
+ ],
1268
+ [
1269
+ "user_sp",
1270
+ "spec/models/user_spec.rb"
1271
+ ],
1272
+ [
1273
+ "playlist_track",
1274
+ "spec/models/playlist_track_spec.rb"
1275
+ ],
1276
+ [
1277
+ "album_sp",
1278
+ "spec/models/album_spec.rb"
1279
+ ],
1280
+ [
1281
+ "track_sp",
1282
+ "spec/models/artist_track_spec.rb"
1283
+ ]
1284
+ ],
1285
+ "width": 0.0
1286
+ },
1287
+ "select_project":
1288
+ {
1289
+ "height": 500.0,
1290
+ "last_filter": "up",
1291
+ "selected_items":
1292
+ [
1293
+ [
1294
+ "up",
1295
+ "~/Application Data/Sublime Text 3/Upkeep.sublime-project"
1296
+ ],
1297
+ [
1298
+ "sumo",
1299
+ "~/Application Data/Sublime Text 3/Sumoshopper.sublime-project"
1300
+ ],
1301
+ [
1302
+ "upk",
1303
+ "~/Application Data/Sublime Text/Upkeep.sublime-workspace"
1304
+ ],
1305
+ [
1306
+ "bast",
1307
+ "~/Application Data/Sublime Text 3/Bastion.sublime-project"
1308
+ ],
1309
+ [
1310
+ "",
1311
+ "~/Application Data/Sublime Text 3/Upkeep.sublime-project"
1312
+ ],
1313
+ [
1314
+ "web",
1315
+ "~/Application Data/Sublime Text 3/Web Estate.sublime-project"
1316
+ ]
1317
+ ],
1318
+ "width": 380.0
1319
+ },
1320
+ "select_symbol":
1321
+ {
1322
+ "height": 0.0,
1323
+ "last_filter": "",
1324
+ "selected_items":
1325
+ [
1326
+ ],
1327
+ "width": 0.0
1328
+ },
1329
+ "selected_group": 0,
1330
+ "settings":
1331
+ {
1332
+ },
1333
+ "show_minimap": false,
1334
+ "show_open_files": false,
1335
+ "show_tabs": true,
1336
+ "side_bar_visible": true,
1337
+ "side_bar_width": 317.0,
1338
+ "status_bar_visible": true,
1339
+ "template_settings":
1340
+ {
1341
+ }
1342
+ }