pushyd 0.7.0 → 0.7.1
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 +1 -1
- data/bin/pushyd +2 -2
- data/defaults.yml +2 -1
- data/lib/shared/conf.rb +1 -1
- data/pushyd.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: 233f9d4980695f14bed64169729254e8913307cb
|
|
4
|
+
data.tar.gz: 224431587e789f97fe31facb2bef49366b06db83
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d22640997b653d2494ec69c50120e75b5724d8d7e55a2fc6a71ec5eed43a90f76e6c961e7957deb4d352a65185c910dbcb45dcfdea7f6c66e1b47d76909962d7
|
|
7
|
+
data.tar.gz: 01cb61c001a925882533d08ebf75a8449581cc849227378a509607e57494a429d6773fd3af3f2599c61d9142ae57860a86150bc3081b2a05e636c93f4d586ff0
|
data/Gemfile.lock
CHANGED
data/bin/pushyd
CHANGED
|
@@ -25,8 +25,8 @@ begin
|
|
|
25
25
|
# Parse options and check compliance
|
|
26
26
|
parser = OptionParser.new do |opts|
|
|
27
27
|
opts.banner = "Usage: #{File.basename $PROGRAM_NAME} [options] start|stop"
|
|
28
|
-
opts.on("-l", "--log LOGFILE") { |path| cmd_logfile = File.expand_path(path)}
|
|
29
|
-
opts.on("-c", "--config CONFIGFILE") { |path| cmd_config = File.expand_path(path)}
|
|
28
|
+
opts.on("-l", "--log LOGFILE") { |path| cmd_logfile = File.expand_path(path.to_s)}
|
|
29
|
+
opts.on("-c", "--config CONFIGFILE") { |path| cmd_config = File.expand_path(path.to_s)}
|
|
30
30
|
opts.on("-e", "--environment ENV") { |env| Conf.app_env = env }
|
|
31
31
|
opts.on("", "--dev") { Conf.app_env = "development" }
|
|
32
32
|
end
|
data/defaults.yml
CHANGED
data/lib/shared/conf.rb
CHANGED
|
@@ -77,7 +77,7 @@ module Shared
|
|
|
77
77
|
Encoding.default_external = "utf-8"
|
|
78
78
|
|
|
79
79
|
# Init New Relic
|
|
80
|
-
newrelic_logfile = File.expand_path(Conf[:logs][:newrelic], Conf[:logs][:path])
|
|
80
|
+
newrelic_logfile = File.expand_path(Conf[:logs][:newrelic].to_s, Conf[:logs][:path].to_s)
|
|
81
81
|
prepare_newrelic self[:newrelic], newrelic_logfile
|
|
82
82
|
|
|
83
83
|
# Try to access any key to force parsing of the files
|
data/pushyd.gemspec
CHANGED