rest-ftp-daemon 0.423.2 → 0.423.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 574b7740dac3623bf874dfaa020b2b32a7e69599
4
- data.tar.gz: 07e5c8bb2014f318032fee854435eafad377ddcd
3
+ metadata.gz: f2802c64bdd28d6bd4e0101b91bc66899c0e4b3c
4
+ data.tar.gz: a1c767f0d1238a66424626d2923711dab7ba78e4
5
5
  SHA512:
6
- metadata.gz: d5fbd5de91ff1d85ccf8e3361fe10f74a21886ea11e15f679977b7e3acaf73a8ea3c902784ea9d58a9017adfd89ba654e4df407936ddab850a50018673cf2292
7
- data.tar.gz: f6a2603ea38780e4558e0b3b87a6364e0b5a09676e49cf8fa5155689ee657ca288f7cb799385d72a7bc1d87a117156f94379aa27ab18e30058e4068d50ce250b
6
+ metadata.gz: f995227ffb577e2b80946cdbbd3c0fa27b275ee855daada08502e0ee39c471a12a62c98ac3cf77afcb5ed07d8313dede12f29a6a7a6d66f8742041a14b10e64d
7
+ data.tar.gz: 8307a7e971a9a24bc40f59a257258ef9b700131918170cb208129a42e626eb9e3969b3e6a796224ec5809dccc2391719694eedb49550badc44212bdf3b6c0a0d
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rest-ftp-daemon (0.423.2)
4
+ rest-ftp-daemon (0.423.3)
5
5
  activesupport (~> 4.2)
6
6
  api-auth
7
7
  aws-sdk-resources (~> 2)
@@ -17,6 +17,7 @@ module RestFtpDaemon
17
17
  config = Conf.to_hash
18
18
  config[:users] = Conf[:users].keys if Conf[:users]
19
19
  config[:endpoints] = Conf[:endpoints].keys if Conf[:endpoints]
20
+ config[:credentials] = Conf[:credentials].keys if Conf[:credentials]
20
21
  config
21
22
  end
22
23
 
@@ -10,6 +10,7 @@ module RestFtpDaemon
10
10
  # Common errors
11
11
  ERRORS = {
12
12
  invalid_argument: Errno::EINVAL,
13
+ runtime_error: RuntimeError,
13
14
 
14
15
  source_not_supported: RestFtpDaemon::SourceNotSupported,
15
16
  source_not_found: RestFtpDaemon::SourceNotFound,
@@ -41,6 +42,18 @@ module RestFtpDaemon
41
42
 
42
43
  ffmpeg_error: FFMPEG::Error,
43
44
 
45
+ s3_no_such_waiter: Aws::Waiters::Errors::NoSuchWaiterError,
46
+ s3_failure_state_error: Aws::Waiters::Errors::FailureStateError,
47
+ s3_too_many_attempts: Aws::Waiters::Errors::TooManyAttemptsError,
48
+ s3_waiter_unexpected: Aws::Waiters::Errors::UnexpectedError,
49
+ s3_waiter_failed: Aws::Waiters::Errors::WaiterFailed,
50
+
51
+ s3_permanent_redirect: Aws::S3::Errors::PermanentRedirect,
52
+ s3_no_such_key: Aws::S3::Errors::NoSuchKey,
53
+ s3_no_such_bucket: Aws::S3::Errors::NoSuchBucket,
54
+ s3_no_such_upload: Aws::S3::Errors::NoSuchUpload,
55
+ s3_error: Aws::S3::Errors::ServiceError,
56
+
44
57
  sftp_exception: Net::SFTP::StatusException,
45
58
  sftp_key_mismatch: Net::SSH::HostKeyMismatch,
46
59
  sftp_auth_failed: Net::SSH::AuthenticationFailed,
@@ -35,6 +35,9 @@
35
35
  .col-md-12
36
36
  = render :dashboard_tokens
37
37
 
38
+ %br
39
+ %br
40
+
38
41
  .footer
39
42
  .container-fluid
40
43
  = render :dashboard_footer
@@ -2,7 +2,7 @@
2
2
  Gem::Specification.new do |spec|
3
3
 
4
4
  # Project version
5
- spec.version = "0.423.2"
5
+ spec.version = "0.423.3"
6
6
 
7
7
  # Project description
8
8
  spec.name = "rest-ftp-daemon"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rest-ftp-daemon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.423.2
4
+ version: 0.423.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bruno MEDICI