rest-ftp-daemon 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/lib/rest-ftp-daemon/api/jobs.rb +3 -4
- data/rest-ftp-daemon.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: efa9383e05431a1d58ca0e6b57c144f51ac0bf6d
|
|
4
|
+
data.tar.gz: 187b0e1b61ef6ee338dda5659c70bbc3333777ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5e4f7c48107b3b25c64542684e3cb0b1ec48fd6fdeb6bf61affb2412b9501d3d02b78559e36ba244e7377626f5afa824598c8fea4a83c3cab85d1bbc904a927
|
|
7
|
+
data.tar.gz: b150aee88ec711ab79da7567527482c1ebf9c32ac2c207950a52b09b9ace2b7935d4ec61873f7c99c600706fbe0556c2f1a6030b8d6a09dae9aacd7e40a02578
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
rest-ftp-daemon (1.0.
|
|
4
|
+
rest-ftp-daemon (1.0.4)
|
|
5
5
|
activesupport (~> 4.2)
|
|
6
6
|
api-auth
|
|
7
7
|
aws-sdk-resources (~> 2)
|
|
@@ -48,7 +48,7 @@ GEM
|
|
|
48
48
|
descendants_tracker (~> 0.0.4)
|
|
49
49
|
ice_nine (~> 0.11.0)
|
|
50
50
|
thread_safe (~> 0.3, >= 0.3.1)
|
|
51
|
-
bmc-daemon-lib (0.7.
|
|
51
|
+
bmc-daemon-lib (0.7.4)
|
|
52
52
|
chamber (~> 2.9.1)
|
|
53
53
|
builder (3.2.3)
|
|
54
54
|
chamber (2.9.1)
|
|
@@ -117,10 +117,9 @@ module RestFtpDaemon
|
|
|
117
117
|
optional :audio_channels, type: String, desc: "number of audio channels"
|
|
118
118
|
end
|
|
119
119
|
|
|
120
|
-
optional :video_custom,
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
default: {}
|
|
120
|
+
optional :video_custom, type: Hash, desc: "video: custom options passed to FFMPEG encoder", default: {} do
|
|
121
|
+
optional :option1, type: String, desc: "sample option", default: "my_value"
|
|
122
|
+
end
|
|
124
123
|
|
|
125
124
|
optional :options, type: Hash, desc: "Options for transfers" do
|
|
126
125
|
optional :overwrite,
|
data/rest-ftp-daemon.gemspec
CHANGED