fcl_rails_daemon 1.0.6 → 1.0.8

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: 87c1012fbf69e13eb06009fda46b39c711600f9b
4
- data.tar.gz: e95bea676094626c1a71a3de0dd16a1e8c6fb898
3
+ metadata.gz: df1726c83f244b7f617bd199fe0026649c8ac7f9
4
+ data.tar.gz: 47c16fc3d699f2f51f255cd9544706810f3d8765
5
5
  SHA512:
6
- metadata.gz: d24c9108adc75446c41996a279fc4b3e347a108ba3362d32ea8bfe9bbebb7e2e4473a6b177e80a7b4e2149f30deaefe1522589b45a3c177031fdc74703a775b7
7
- data.tar.gz: 82d053e9aab109e2322dd4656cdbc685c69e32a1ecc45a50e95b9d715ae82781b90d0fd89ed9812ff0a96dee7fc845c031addfc2754ec90bc33b8901c78cffe4
6
+ metadata.gz: 09fbc700b858faf712bf2de69a36f11197cd1dc6be6da6f2731f5ddc20a398196268b14d8062695cf30a9810c061420e3e338f968919045b5ccfa5f6ab9eb5dc
7
+ data.tar.gz: 80e8af07361b801bae6f9009ece989c261ffc43609572a3fb8373032f130c2b74ffb5dbda167fae872b31393dbc5cebc2175d61cae6d3c1e0be271d1511c4a19
Binary file
Binary file
@@ -11,7 +11,7 @@ module FclRailsDaemon end
11
11
  require_relative "core/daemon"
12
12
  comandos_dir = File.join(DAEMON_ROOT, DAEMON_CONFIG['command_path'])
13
13
  if File.directory?(comandos_dir)
14
- Dir["#{comandos_dir}/*.rb"].each {|file| require file }
14
+ Dir[File.join(comandos_dir, "**/*.rb")].each {|file| require file }
15
15
  end
16
16
  require_relative "core/registrador.rb"
17
17
  require_relative "core/gerenciador.rb"
@@ -1,3 +1,3 @@
1
1
  module FclRailsDaemon
2
- VERSION = "1.0.6"
2
+ VERSION = "1.0.8"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fcl_rails_daemon
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Washington Silva
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-18 00:00:00.000000000 Z
11
+ date: 2015-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -105,6 +105,8 @@ files:
105
105
  - fcl_rails_daemon-1.0.2.gem
106
106
  - fcl_rails_daemon-1.0.3.gem
107
107
  - fcl_rails_daemon-1.0.4.gem
108
+ - fcl_rails_daemon-1.0.5.gem
109
+ - fcl_rails_daemon-1.0.6.gem
108
110
  - fcl_rails_daemon.gemspec
109
111
  - lib/core/daemon.rb
110
112
  - lib/core/gerenciador.rb