rest-ftp-daemon 0.250.4 → 0.250.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 94d2bd77b29dc427eda31588d0f7dcb29893cb13
4
- data.tar.gz: 3b488ae7f22d99b54058db32f7da883f1209b553
3
+ metadata.gz: 35b3d7eec8a3e0e3434d6814dd730d48d8797363
4
+ data.tar.gz: 4d0056bdedf9c43ccb5bf5efc926e29e2bc37cfb
5
5
  SHA512:
6
- metadata.gz: 0f3c8e476c3ca72ac1c51ccea59d792cee07fdf198d282f50496f43bfafbe03c2262b22a68afdc4732b7baeede6212ec234622eddb40b4af2c1ec5494d95779b
7
- data.tar.gz: 3bfb81038382151a2bd4a4167ed68f4b1dbf4fbbdb6564da3e1b249b3947b6f3a24ab70232a9935343bd4edbc9c738c56675fa3d8983deddc45c4b5f0afb5b74
6
+ metadata.gz: 24fd77d7164fd86c3061cf37e7089ed35bf47fba7251cada6e4efaca6b3db1aab7c6d4d052fb323561b7b3fdb8fc1511195c5ee8f4b6d05ae0c69edb8ce2adbe
7
+ data.tar.gz: 8c9fe1641df446b5d73eb72ffccb7e8077e231eb51f0a74c4d07ceece34cd2d5837b5c98a0f25b444120726719adee0eaa2d95caf451fe33842ab6f4376fd638
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rest-ftp-daemon (0.250.4)
4
+ rest-ftp-daemon (0.250.5)
5
5
  double-bag-ftps
6
6
  facter
7
7
  get_process_mem
data/config.ru CHANGED
@@ -27,7 +27,7 @@ use Rack::Static, urls: ["/css", "/js", "/images"], root: "#{APP_LIBS}/static/"
27
27
 
28
28
  # Rack reloader and mini-profiler
29
29
  unless Settings.namespace == ENV_PRODUCTION
30
- use Rack::Reloader, 1
30
+ # use Rack::Reloader, 1
31
31
  # use Rack::MiniProfiler
32
32
  end
33
33
 
@@ -1,7 +1,7 @@
1
1
  # Terrific constants
2
2
  APP_NAME = "rest-ftp-daemon"
3
3
  APP_NICK = "rftpd"
4
- APP_VER = "0.250.4"
4
+ APP_VER = "0.250.5"
5
5
 
6
6
  # Provide default config file information
7
7
  APP_LIB = File.expand_path(File.dirname(__FILE__))
@@ -233,8 +233,8 @@ module RestFtpDaemon
233
233
  add_transaction_tracer :push, category: :task
234
234
  add_transaction_tracer :pop, category: :task
235
235
  add_transaction_tracer :expire, category: :task
236
- add_transaction_tracer :rate_by, category: :task
237
- add_transaction_tracer :jobs_count_by_status, category: :task
236
+ add_transaction_tracer :rate_by, category: :task
237
+ add_transaction_tracer :jobs_by_status, category: :task
238
238
  end
239
239
 
240
240
  end
@@ -12,9 +12,14 @@
12
12
  %tbody
13
13
 
14
14
  - $counters.stats.each do |group, values|
15
- - next unless values.is_a? Enumerable
16
- - values.each do |name, value|
15
+ - if values.is_a? Enumerable
16
+ - values.each do |name, value|
17
+ %tr
18
+ %td= group
19
+ %td= name
20
+ %td.text-right= value
21
+ - else
17
22
  %tr
23
+ %td
18
24
  %td= group
19
- %td= name
20
- %td.text-right= value
25
+ %td.text-right= values
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.250.4
4
+ version: 0.250.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bruno MEDICI