rest-ftp-daemon 0.400.0 → 0.410.0.pre.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +26 -6
  3. data/Rakefile +5 -3
  4. data/bin/rest-ftp-daemon +2 -1
  5. data/config.ru +8 -2
  6. data/lib/rest-ftp-daemon.rb +10 -2
  7. data/lib/rest-ftp-daemon/api/debug.rb +17 -5
  8. data/lib/rest-ftp-daemon/api/{job_presenter.rb → entities/job.rb} +25 -2
  9. data/lib/rest-ftp-daemon/api/entities/options.rb +15 -0
  10. data/lib/rest-ftp-daemon/api/jobs.rb +46 -13
  11. data/lib/rest-ftp-daemon/api/root-real.rb +80 -0
  12. data/lib/rest-ftp-daemon/api/root-test.rb +69 -0
  13. data/lib/rest-ftp-daemon/api/root.rb +21 -5
  14. data/lib/rest-ftp-daemon/constants.rb +18 -1
  15. data/lib/rest-ftp-daemon/counters.rb +0 -3
  16. data/lib/rest-ftp-daemon/exceptions.rb +16 -12
  17. data/lib/rest-ftp-daemon/helpers/api.rb +3 -3
  18. data/lib/rest-ftp-daemon/helpers/common.rb +12 -5
  19. data/lib/rest-ftp-daemon/helpers/views.rb +41 -11
  20. data/lib/rest-ftp-daemon/job.rb +118 -420
  21. data/lib/rest-ftp-daemon/job_queue.rb +34 -5
  22. data/lib/rest-ftp-daemon/jobs/dummy.rb +20 -0
  23. data/lib/rest-ftp-daemon/jobs/transfer.rb +319 -0
  24. data/lib/rest-ftp-daemon/jobs/video.rb +107 -0
  25. data/lib/rest-ftp-daemon/location.rb +125 -0
  26. data/lib/rest-ftp-daemon/path.rb +3 -0
  27. data/lib/rest-ftp-daemon/remote_ftp.rb +2 -2
  28. data/lib/rest-ftp-daemon/remote_sftp.rb +2 -2
  29. data/lib/rest-ftp-daemon/static/config.json +411 -0
  30. data/lib/rest-ftp-daemon/static/css/bootstrap.min.css +14 -0
  31. data/lib/rest-ftp-daemon/static/css/{bootstrap.css → bootstrap.old.css} +0 -0
  32. data/lib/rest-ftp-daemon/static/fonts/glyphicons-halflings-regular.eot +0 -0
  33. data/lib/rest-ftp-daemon/static/fonts/glyphicons-halflings-regular.svg +288 -0
  34. data/lib/rest-ftp-daemon/static/fonts/glyphicons-halflings-regular.ttf +0 -0
  35. data/lib/rest-ftp-daemon/static/fonts/glyphicons-halflings-regular.woff +0 -0
  36. data/lib/rest-ftp-daemon/static/fonts/glyphicons-halflings-regular.woff2 +0 -0
  37. data/lib/rest-ftp-daemon/static/swagger.html +83 -0
  38. data/lib/rest-ftp-daemon/static/swagger/css/print.css +1362 -0
  39. data/lib/rest-ftp-daemon/static/swagger/css/reset.css +125 -0
  40. data/lib/rest-ftp-daemon/static/swagger/css/screen.css +1489 -0
  41. data/lib/rest-ftp-daemon/static/swagger/css/style.css +250 -0
  42. data/lib/rest-ftp-daemon/static/swagger/css/typography.css +14 -0
  43. data/lib/rest-ftp-daemon/static/swagger/fonts/DroidSans-Bold.ttf +0 -0
  44. data/lib/rest-ftp-daemon/static/swagger/fonts/DroidSans.ttf +0 -0
  45. data/lib/rest-ftp-daemon/static/swagger/images/collapse.gif +0 -0
  46. data/lib/rest-ftp-daemon/static/swagger/images/expand.gif +0 -0
  47. data/lib/rest-ftp-daemon/static/swagger/images/explorer_icons.png +0 -0
  48. data/lib/rest-ftp-daemon/static/swagger/images/favicon-16x16.png +0 -0
  49. data/lib/rest-ftp-daemon/static/swagger/images/favicon-32x32.png +0 -0
  50. data/lib/rest-ftp-daemon/static/swagger/images/favicon.ico +0 -0
  51. data/lib/rest-ftp-daemon/static/swagger/images/logo_small.png +0 -0
  52. data/lib/rest-ftp-daemon/static/swagger/images/pet_store_api.png +0 -0
  53. data/lib/rest-ftp-daemon/static/swagger/images/throbber.gif +0 -0
  54. data/lib/rest-ftp-daemon/static/swagger/images/wordnik_api.png +0 -0
  55. data/lib/rest-ftp-daemon/static/swagger/lib/backbone-min.js +15 -0
  56. data/lib/rest-ftp-daemon/static/swagger/lib/es5-shim.js +2065 -0
  57. data/lib/rest-ftp-daemon/static/swagger/lib/handlebars-4.0.5.js +4608 -0
  58. data/lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack.js +2 -0
  59. data/lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack_extended.js +34 -0
  60. data/lib/rest-ftp-daemon/static/swagger/lib/jquery-1.8.0.min.js +2 -0
  61. data/lib/rest-ftp-daemon/static/swagger/lib/jquery.ba-bbq.min.js +18 -0
  62. data/lib/rest-ftp-daemon/static/swagger/lib/jquery.slideto.min.js +1 -0
  63. data/lib/rest-ftp-daemon/static/swagger/lib/jquery.wiggle.min.js +8 -0
  64. data/lib/rest-ftp-daemon/static/swagger/lib/js-yaml.min.js +3 -0
  65. data/lib/rest-ftp-daemon/static/swagger/lib/jsoneditor.min.js +11 -0
  66. data/lib/rest-ftp-daemon/static/swagger/lib/lodash.min.js +102 -0
  67. data/lib/rest-ftp-daemon/static/swagger/lib/marked.js +1272 -0
  68. data/lib/rest-ftp-daemon/static/swagger/lib/object-assign-pollyfill.js +23 -0
  69. data/lib/rest-ftp-daemon/static/swagger/lib/swagger-oauth.js +347 -0
  70. data/lib/rest-ftp-daemon/static/swagger/lib/swagger-ui.min.js +10 -0
  71. data/lib/rest-ftp-daemon/uri.rb +9 -1
  72. data/lib/rest-ftp-daemon/views/dashboard.haml +1 -1
  73. data/lib/rest-ftp-daemon/views/dashboard_footer.haml +6 -3
  74. data/lib/rest-ftp-daemon/views/dashboard_jobs.haml +3 -3
  75. data/lib/rest-ftp-daemon/views/dashboard_table.haml +25 -20
  76. data/lib/rest-ftp-daemon/workers/transfer.rb +14 -0
  77. data/rest-ftp-daemon.gemspec +14 -4
  78. data/spec/rest-ftp-daemon/features/swagger_spec.rb +24 -0
  79. data/spec/spec_helper.rb +4 -4
  80. metadata +119 -14
@@ -1,10 +1,15 @@
1
1
  -# coding: utf-8
2
2
  - jobs.each do |job|
3
- - progress = job.get_info(:transfer, :progress)
4
- - source_count = job.get_info(:source, :count) || 0
5
- - source_processed = job.get_info(:source, :processed) || 0
6
- - source_current = job.get_info(:source, :current)
7
- - bitrate = job.get_info(:transfer, :bitrate)
3
+ - work_progress = job.get_info(:work, :progress)
4
+ - work_bitrate = job.get_info(:work, :bitrate)
5
+ - work_sent = job.get_info(:work, :sent)
6
+
7
+ - source_count = job.get_info(:source, :count) || 0
8
+ - source_processed = job.get_info(:source, :processed) || 0
9
+ - source_current = job.get_info(:source, :current)
10
+
11
+ - job_working = [JOB_STATUS_UPLOADING, JOB_STATUS_TRANSFORMING].include? job.status
12
+
8
13
  - trclass = JOB_STYLES[job.status]
9
14
  - runs = job.runs.to_i
10
15
 
@@ -16,21 +21,21 @@
16
21
  %a{href: dashboard_job_url(job)}
17
22
  %b= job.id
18
23
 
24
+ %td= job.pool
25
+
19
26
  %td= job.label
20
27
 
21
- %td= job.pool
28
+ %td= job_type job
22
29
 
23
30
  %td{title: job.get_info(:source, :path)}
31
+ = location_label job.source_uri
24
32
  = token_highlight job.source
25
33
 
26
- %td
27
- = job_method_label (job.get_info :target, :method)
28
-
29
- %td{title: job.get_info(:target, :url)}
34
+ %td{title: job.get_info(:target, :path)}
35
+ = location_label job.target_uri
30
36
  = token_highlight job.target
31
37
 
32
- %td
33
- = datetime_short(job.queued_at)
38
+ %td= datetime_short(job.queued_at)
34
39
 
35
40
  %td
36
41
  %span.push-status
@@ -39,21 +44,21 @@
39
44
  - if (job.status != JOB_STATUS_FINISHED) && (source_processed < source_count)
40
45
  = " (#{source_processed}/#{source_count})"
41
46
 
42
- - if job.status == JOB_STATUS_UPLOADING
47
+ - if job_working
43
48
 
44
- - unless progress.nil?
49
+ - unless work_progress.nil?
45
50
  %span.push-progress
46
- = "#{progress}%"
51
+ = "#{work_progress}%"
47
52
  %br
48
53
  %span.push-filename
49
54
  %b= source_current unless source_current.nil?
50
55
 
51
56
  %td
52
57
  -# unless job.error || job.status == JOB_STATUS_FINISHED
53
- - if job.status == JOB_STATUS_UPLOADING
58
+ - if job_working
54
59
  .progress
55
- .progress-bar{style:"width: #{progress}%;"}
56
- = format_bytes(job.get_info(:transfer, :sent), "B")
60
+ .progress-bar{style:"width: #{work_progress}%;"}
61
+ = "#{work_progress} %"
57
62
 
58
63
  - else
59
64
  .error{title: job.get_info(:error, :message)}
@@ -63,9 +68,9 @@
63
68
  = format_bytes(job.get_info(:transfer, :total), "B")
64
69
 
65
70
  %td.nobr.text-right{title: "time: #{job.exectime} s"}
66
- - if bitrate
71
+ - if work_bitrate
67
72
  %span.push-bitrate
68
- = format_bytes(bitrate, "bps")
73
+ = format_bytes(work_bitrate, "bps")
69
74
 
70
75
  %td
71
76
  - unless job.wid.nil?
@@ -92,6 +92,20 @@ module RestFtpDaemon
92
92
  # Inform the job
93
93
  job.oops_you_stop_now ex unless job.nil?
94
94
 
95
+ rescue RestFtpDaemon::AttributeMissing => ex
96
+ log_error "JOB MISSING ATTRIBUTE", ex.backtrace
97
+ worker_status WORKER_STATUS_CRASHED
98
+
99
+ # Inform the job
100
+ job.oops_you_stop_now ex unless job.nil?
101
+
102
+ rescue RestFtpDaemon::AssertionFailed => ex
103
+ log_error "JOB ASSERTION FAILED", ex.backtrace
104
+ worker_status WORKER_STATUS_CRASHED
105
+
106
+ # Inform the job
107
+ job.oops_you_stop_now ex unless job.nil?
108
+
95
109
  rescue StandardError => ex
96
110
  log_error "JOB UNHANDLED EXCEPTION ex[#{ex.class}] #{ex.message}", ex.backtrace
97
111
  worker_status WORKER_STATUS_CRASHED
@@ -2,7 +2,7 @@
2
2
  Gem::Specification.new do |spec|
3
3
 
4
4
  # Project version
5
- spec.version = "0.400.0"
5
+ spec.version = "0.410.0-1"
6
6
 
7
7
  # Project description
8
8
  spec.name = "rest-ftp-daemon"
@@ -33,20 +33,30 @@ Gem::Specification.new do |spec|
33
33
  spec.add_development_dependency "http"
34
34
 
35
35
  # Runtime dependencies
36
- spec.add_runtime_dependency "bmc-daemon-lib", "~> 0.3.3"
36
+ spec.add_runtime_dependency "bmc-daemon-lib", "~> 0.3.4"
37
37
  spec.add_runtime_dependency "json", "~> 1.8"
38
38
  spec.add_runtime_dependency "thin", "~> 1.7"
39
39
  spec.add_runtime_dependency "activesupport", "~> 4.2"
40
+
40
41
  spec.add_runtime_dependency "grape"
41
42
  spec.add_runtime_dependency "grape-entity"
43
+ spec.add_runtime_dependency "grape-swagger"
44
+ spec.add_runtime_dependency "grape-swagger-entity"
45
+ spec.add_runtime_dependency "grape-swagger-representable"
46
+
42
47
  spec.add_runtime_dependency "settingslogic"
43
48
  spec.add_runtime_dependency "rest-client", "~> 1.8"
44
49
  spec.add_runtime_dependency "api-auth"
45
50
  spec.add_runtime_dependency "haml"
46
- spec.add_runtime_dependency "net-sftp"
47
- spec.add_runtime_dependency "double-bag-ftps"
48
51
  spec.add_runtime_dependency "facter"
49
52
  spec.add_runtime_dependency "sys-cpu"
50
53
  spec.add_runtime_dependency "get_process_mem"
51
54
  spec.add_runtime_dependency "newrelic_rpm"
55
+
56
+
57
+ spec.add_runtime_dependency "net-sftp"
58
+ spec.add_runtime_dependency "double-bag-ftps"
59
+
60
+ spec.add_runtime_dependency "streamio-ffmpeg"
61
+
52
62
  end
@@ -0,0 +1,24 @@
1
+ require "spec_helper"
2
+
3
+ describe "Swagger", feature: true do
4
+
5
+ describe "GET #{MOUNT_SWAGGER_JSON}" do
6
+ let!(:response) { get MOUNT_SWAGGER_JSON }
7
+
8
+ it "responds successfully" do
9
+ expect(response.status).to eq 200
10
+ end
11
+
12
+ it "exposes a JSON hash" do
13
+ expect(JSON.parse(response.body)).to be_an_instance_of(Hash)
14
+ end
15
+
16
+ it "writes the API doc" do
17
+ json_file = File.expand_path "../../swagger.json"
18
+ puts "YEAH: #{json_file}"
19
+ File.write(json_file, response.body)
20
+ end
21
+
22
+ end # GET /swagger.json
23
+
24
+ end
data/spec/spec_helper.rb CHANGED
@@ -58,16 +58,16 @@ RSpec.configure do |config|
58
58
  end
59
59
 
60
60
  config.before :suite do
61
- call_server(:start)
62
61
  puts
63
- puts ">> waiting for server to bootup"
62
+ puts ">> starting up server..."
64
63
  puts
65
- sleep 5
64
+ call_server(:start)
65
+ sleep 3
66
66
  end
67
67
 
68
68
  config.after :suite do
69
69
  puts
70
- puts ">> shutting sown server"
70
+ puts ">> shutting down server..."
71
71
  puts
72
72
  call_server(:stop)
73
73
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rest-ftp-daemon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.400.0
4
+ version: 0.410.0.pre.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bruno MEDICI
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-22 00:00:00.000000000 Z
11
+ date: 2016-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -100,14 +100,14 @@ dependencies:
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: 0.3.3
103
+ version: 0.3.4
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: 0.3.3
110
+ version: 0.3.4
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: json
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -178,6 +178,48 @@ dependencies:
178
178
  - - ">="
179
179
  - !ruby/object:Gem::Version
180
180
  version: '0'
181
+ - !ruby/object:Gem::Dependency
182
+ name: grape-swagger
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ">="
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ type: :runtime
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ - !ruby/object:Gem::Dependency
196
+ name: grape-swagger-entity
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ">="
200
+ - !ruby/object:Gem::Version
201
+ version: '0'
202
+ type: :runtime
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ">="
207
+ - !ruby/object:Gem::Version
208
+ version: '0'
209
+ - !ruby/object:Gem::Dependency
210
+ name: grape-swagger-representable
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - ">="
214
+ - !ruby/object:Gem::Version
215
+ version: '0'
216
+ type: :runtime
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - ">="
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
181
223
  - !ruby/object:Gem::Dependency
182
224
  name: settingslogic
183
225
  requirement: !ruby/object:Gem::Requirement
@@ -235,7 +277,7 @@ dependencies:
235
277
  - !ruby/object:Gem::Version
236
278
  version: '0'
237
279
  - !ruby/object:Gem::Dependency
238
- name: net-sftp
280
+ name: facter
239
281
  requirement: !ruby/object:Gem::Requirement
240
282
  requirements:
241
283
  - - ">="
@@ -249,7 +291,7 @@ dependencies:
249
291
  - !ruby/object:Gem::Version
250
292
  version: '0'
251
293
  - !ruby/object:Gem::Dependency
252
- name: double-bag-ftps
294
+ name: sys-cpu
253
295
  requirement: !ruby/object:Gem::Requirement
254
296
  requirements:
255
297
  - - ">="
@@ -263,7 +305,7 @@ dependencies:
263
305
  - !ruby/object:Gem::Version
264
306
  version: '0'
265
307
  - !ruby/object:Gem::Dependency
266
- name: facter
308
+ name: get_process_mem
267
309
  requirement: !ruby/object:Gem::Requirement
268
310
  requirements:
269
311
  - - ">="
@@ -277,7 +319,7 @@ dependencies:
277
319
  - !ruby/object:Gem::Version
278
320
  version: '0'
279
321
  - !ruby/object:Gem::Dependency
280
- name: sys-cpu
322
+ name: newrelic_rpm
281
323
  requirement: !ruby/object:Gem::Requirement
282
324
  requirements:
283
325
  - - ">="
@@ -291,7 +333,7 @@ dependencies:
291
333
  - !ruby/object:Gem::Version
292
334
  version: '0'
293
335
  - !ruby/object:Gem::Dependency
294
- name: get_process_mem
336
+ name: net-sftp
295
337
  requirement: !ruby/object:Gem::Requirement
296
338
  requirements:
297
339
  - - ">="
@@ -305,7 +347,21 @@ dependencies:
305
347
  - !ruby/object:Gem::Version
306
348
  version: '0'
307
349
  - !ruby/object:Gem::Dependency
308
- name: newrelic_rpm
350
+ name: double-bag-ftps
351
+ requirement: !ruby/object:Gem::Requirement
352
+ requirements:
353
+ - - ">="
354
+ - !ruby/object:Gem::Version
355
+ version: '0'
356
+ type: :runtime
357
+ prerelease: false
358
+ version_requirements: !ruby/object:Gem::Requirement
359
+ requirements:
360
+ - - ">="
361
+ - !ruby/object:Gem::Version
362
+ version: '0'
363
+ - !ruby/object:Gem::Dependency
364
+ name: streamio-ffmpeg
309
365
  requirement: !ruby/object:Gem::Requirement
310
366
  requirements:
311
367
  - - ">="
@@ -342,8 +398,11 @@ files:
342
398
  - lib/rest-ftp-daemon/api/config.rb
343
399
  - lib/rest-ftp-daemon/api/dashboard.rb
344
400
  - lib/rest-ftp-daemon/api/debug.rb
345
- - lib/rest-ftp-daemon/api/job_presenter.rb
401
+ - lib/rest-ftp-daemon/api/entities/job.rb
402
+ - lib/rest-ftp-daemon/api/entities/options.rb
346
403
  - lib/rest-ftp-daemon/api/jobs.rb
404
+ - lib/rest-ftp-daemon/api/root-real.rb
405
+ - lib/rest-ftp-daemon/api/root-test.rb
347
406
  - lib/rest-ftp-daemon/api/root.rb
348
407
  - lib/rest-ftp-daemon/api/status.rb
349
408
  - lib/rest-ftp-daemon/constants.rb
@@ -354,7 +413,11 @@ files:
354
413
  - lib/rest-ftp-daemon/helpers/views.rb
355
414
  - lib/rest-ftp-daemon/job.rb
356
415
  - lib/rest-ftp-daemon/job_queue.rb
416
+ - lib/rest-ftp-daemon/jobs/dummy.rb
417
+ - lib/rest-ftp-daemon/jobs/transfer.rb
418
+ - lib/rest-ftp-daemon/jobs/video.rb
357
419
  - lib/rest-ftp-daemon/launcher.rb
420
+ - lib/rest-ftp-daemon/location.rb
358
421
  - lib/rest-ftp-daemon/metrics.rb
359
422
  - lib/rest-ftp-daemon/notification.rb
360
423
  - lib/rest-ftp-daemon/paginate.rb
@@ -362,10 +425,51 @@ files:
362
425
  - lib/rest-ftp-daemon/remote.rb
363
426
  - lib/rest-ftp-daemon/remote_ftp.rb
364
427
  - lib/rest-ftp-daemon/remote_sftp.rb
365
- - lib/rest-ftp-daemon/static/css/bootstrap.css
428
+ - lib/rest-ftp-daemon/static/config.json
429
+ - lib/rest-ftp-daemon/static/css/bootstrap.min.css
430
+ - lib/rest-ftp-daemon/static/css/bootstrap.old.css
366
431
  - lib/rest-ftp-daemon/static/css/main.css
432
+ - lib/rest-ftp-daemon/static/fonts/glyphicons-halflings-regular.eot
433
+ - lib/rest-ftp-daemon/static/fonts/glyphicons-halflings-regular.svg
434
+ - lib/rest-ftp-daemon/static/fonts/glyphicons-halflings-regular.ttf
435
+ - lib/rest-ftp-daemon/static/fonts/glyphicons-halflings-regular.woff
436
+ - lib/rest-ftp-daemon/static/fonts/glyphicons-halflings-regular.woff2
367
437
  - lib/rest-ftp-daemon/static/images/feature_newrelic.png
368
438
  - lib/rest-ftp-daemon/static/images/feature_reload.png
439
+ - lib/rest-ftp-daemon/static/swagger.html
440
+ - lib/rest-ftp-daemon/static/swagger/css/print.css
441
+ - lib/rest-ftp-daemon/static/swagger/css/reset.css
442
+ - lib/rest-ftp-daemon/static/swagger/css/screen.css
443
+ - lib/rest-ftp-daemon/static/swagger/css/style.css
444
+ - lib/rest-ftp-daemon/static/swagger/css/typography.css
445
+ - lib/rest-ftp-daemon/static/swagger/fonts/DroidSans-Bold.ttf
446
+ - lib/rest-ftp-daemon/static/swagger/fonts/DroidSans.ttf
447
+ - lib/rest-ftp-daemon/static/swagger/images/collapse.gif
448
+ - lib/rest-ftp-daemon/static/swagger/images/expand.gif
449
+ - lib/rest-ftp-daemon/static/swagger/images/explorer_icons.png
450
+ - lib/rest-ftp-daemon/static/swagger/images/favicon-16x16.png
451
+ - lib/rest-ftp-daemon/static/swagger/images/favicon-32x32.png
452
+ - lib/rest-ftp-daemon/static/swagger/images/favicon.ico
453
+ - lib/rest-ftp-daemon/static/swagger/images/logo_small.png
454
+ - lib/rest-ftp-daemon/static/swagger/images/pet_store_api.png
455
+ - lib/rest-ftp-daemon/static/swagger/images/throbber.gif
456
+ - lib/rest-ftp-daemon/static/swagger/images/wordnik_api.png
457
+ - lib/rest-ftp-daemon/static/swagger/lib/backbone-min.js
458
+ - lib/rest-ftp-daemon/static/swagger/lib/es5-shim.js
459
+ - lib/rest-ftp-daemon/static/swagger/lib/handlebars-4.0.5.js
460
+ - lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack.js
461
+ - lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack_extended.js
462
+ - lib/rest-ftp-daemon/static/swagger/lib/jquery-1.8.0.min.js
463
+ - lib/rest-ftp-daemon/static/swagger/lib/jquery.ba-bbq.min.js
464
+ - lib/rest-ftp-daemon/static/swagger/lib/jquery.slideto.min.js
465
+ - lib/rest-ftp-daemon/static/swagger/lib/jquery.wiggle.min.js
466
+ - lib/rest-ftp-daemon/static/swagger/lib/js-yaml.min.js
467
+ - lib/rest-ftp-daemon/static/swagger/lib/jsoneditor.min.js
468
+ - lib/rest-ftp-daemon/static/swagger/lib/lodash.min.js
469
+ - lib/rest-ftp-daemon/static/swagger/lib/marked.js
470
+ - lib/rest-ftp-daemon/static/swagger/lib/object-assign-pollyfill.js
471
+ - lib/rest-ftp-daemon/static/swagger/lib/swagger-oauth.js
472
+ - lib/rest-ftp-daemon/static/swagger/lib/swagger-ui.min.js
369
473
  - lib/rest-ftp-daemon/uri.rb
370
474
  - lib/rest-ftp-daemon/views/dashboard.haml
371
475
  - lib/rest-ftp-daemon/views/dashboard_counters.haml
@@ -388,6 +492,7 @@ files:
388
492
  - spec/rest-ftp-daemon/features/debug_spec.rb
389
493
  - spec/rest-ftp-daemon/features/jobs_spec.rb
390
494
  - spec/rest-ftp-daemon/features/status_spec.rb
495
+ - spec/rest-ftp-daemon/features/swagger_spec.rb
391
496
  - spec/spec_helper.rb
392
497
  - spec/support/request_helpers.rb
393
498
  homepage: http://github.com/bmedici/rest-ftp-daemon
@@ -405,9 +510,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
405
510
  version: 2.2.2
406
511
  required_rubygems_version: !ruby/object:Gem::Requirement
407
512
  requirements:
408
- - - ">="
513
+ - - ">"
409
514
  - !ruby/object:Gem::Version
410
- version: '0'
515
+ version: 1.3.1
411
516
  requirements: []
412
517
  rubyforge_project:
413
518
  rubygems_version: 2.4.5