rest-ftp-daemon 0.230.1 → 0.230.2
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 +4 -8
- data/lib/rest-ftp-daemon/constants.rb +1 -3
- data/rest-ftp-daemon.gemspec +0 -1
- metadata +2 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 07eb1912cd6810fa2ba2c5a6805801b08f3ea927
|
|
4
|
+
data.tar.gz: 24b389a1da29bf8ae6ebff64fdd9f357a630e4ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44841acce2dfb846ba06504d33f1f6a73740fa701fc4d5aa2c7f34660adc78b253468cbac52f2f19762917aee6e77079df132a2a84d1476bcb8b2382b49721a3
|
|
7
|
+
data.tar.gz: e179d8cb2172e62b79e6cc06a16403305592ff5362f6996d7a0a704f693e6360549e3db77714efa83ab4d3d2ca777f5c3215cf964757ea6a559da4d0c5ac18c9
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
rest-ftp-daemon (0.230.
|
|
4
|
+
rest-ftp-daemon (0.230.2)
|
|
5
5
|
double-bag-ftps
|
|
6
6
|
facter
|
|
7
7
|
get_process_mem
|
|
@@ -14,7 +14,6 @@ PATH
|
|
|
14
14
|
settingslogic
|
|
15
15
|
sys-cpu
|
|
16
16
|
thin (~> 1.6)
|
|
17
|
-
timeout
|
|
18
17
|
|
|
19
18
|
GEM
|
|
20
19
|
remote: http://rubygems.org/
|
|
@@ -105,12 +104,12 @@ GEM
|
|
|
105
104
|
rspec-core (~> 3.3.0)
|
|
106
105
|
rspec-expectations (~> 3.3.0)
|
|
107
106
|
rspec-mocks (~> 3.3.0)
|
|
108
|
-
rspec-core (3.3.
|
|
107
|
+
rspec-core (3.3.2)
|
|
109
108
|
rspec-support (~> 3.3.0)
|
|
110
|
-
rspec-expectations (3.3.
|
|
109
|
+
rspec-expectations (3.3.1)
|
|
111
110
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
112
111
|
rspec-support (~> 3.3.0)
|
|
113
|
-
rspec-mocks (3.3.
|
|
112
|
+
rspec-mocks (3.3.2)
|
|
114
113
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
115
114
|
rspec-support (~> 3.3.0)
|
|
116
115
|
rspec-support (3.3.0)
|
|
@@ -131,9 +130,6 @@ GEM
|
|
|
131
130
|
rack (~> 1.0)
|
|
132
131
|
thread_safe (0.3.5)
|
|
133
132
|
tilt (2.0.1)
|
|
134
|
-
timeout (0.0.1)
|
|
135
|
-
timeout-extensions
|
|
136
|
-
timeout-extensions (0.0.0)
|
|
137
133
|
tzinfo (1.2.2)
|
|
138
134
|
thread_safe (~> 0.1)
|
|
139
135
|
unf (0.1.4)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Terrific constants
|
|
2
2
|
APP_NAME = "rest-ftp-daemon"
|
|
3
3
|
APP_NICK = "rftpd"
|
|
4
|
-
APP_VER = "0.230.
|
|
4
|
+
APP_VER = "0.230.2"
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
# Jobs and workers
|
|
@@ -37,11 +37,9 @@ LOG_FORMAT_TIME = "%Y-%m-%d %H:%M:%S"
|
|
|
37
37
|
LOG_FORMAT_PREFIX = "%s %s\t%-#{LOG_PIPE_LEN.to_i}s\t"
|
|
38
38
|
LOG_FORMAT_MESSAGE = "%#{-LOG_COL_WID.to_i}s\t%#{-LOG_COL_JID.to_i}s\t%#{-LOG_COL_ID.to_i}s"
|
|
39
39
|
LOG_NEWLINE = "\n"
|
|
40
|
-
|
|
41
40
|
LOG_INDENT = "\t"
|
|
42
41
|
|
|
43
42
|
|
|
44
|
-
|
|
45
43
|
# Notifications
|
|
46
44
|
NOTIFY_PREFIX = "rftpd"
|
|
47
45
|
NOTIFY_USERAGENT = "#{APP_NAME} - #{APP_VER}"
|
data/rest-ftp-daemon.gemspec
CHANGED
|
@@ -43,7 +43,6 @@ Gem::Specification.new do |spec|
|
|
|
43
43
|
spec.add_runtime_dependency "double-bag-ftps"
|
|
44
44
|
spec.add_runtime_dependency "facter"
|
|
45
45
|
spec.add_runtime_dependency "sys-cpu"
|
|
46
|
-
spec.add_runtime_dependency "timeout"
|
|
47
46
|
spec.add_runtime_dependency "get_process_mem"
|
|
48
47
|
spec.add_runtime_dependency "newrelic_rpm"
|
|
49
48
|
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.230.
|
|
4
|
+
version: 0.230.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bruno MEDICI
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-07-
|
|
11
|
+
date: 2015-07-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -234,20 +234,6 @@ dependencies:
|
|
|
234
234
|
- - ">="
|
|
235
235
|
- !ruby/object:Gem::Version
|
|
236
236
|
version: '0'
|
|
237
|
-
- !ruby/object:Gem::Dependency
|
|
238
|
-
name: timeout
|
|
239
|
-
requirement: !ruby/object:Gem::Requirement
|
|
240
|
-
requirements:
|
|
241
|
-
- - ">="
|
|
242
|
-
- !ruby/object:Gem::Version
|
|
243
|
-
version: '0'
|
|
244
|
-
type: :runtime
|
|
245
|
-
prerelease: false
|
|
246
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
247
|
-
requirements:
|
|
248
|
-
- - ">="
|
|
249
|
-
- !ruby/object:Gem::Version
|
|
250
|
-
version: '0'
|
|
251
237
|
- !ruby/object:Gem::Dependency
|
|
252
238
|
name: get_process_mem
|
|
253
239
|
requirement: !ruby/object:Gem::Requirement
|