madvertise-ext 0.9.3 → 0.9.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/madvertise/cli.rb +1 -3
- data/madvertise-ext.gemspec +1 -1
- metadata +1 -1
data/lib/madvertise/cli.rb
CHANGED
@@ -3,8 +3,6 @@
|
|
3
3
|
require 'madvertise/boot'
|
4
4
|
require 'mixlib/cli'
|
5
5
|
|
6
|
-
$0 = File.basename($0)
|
7
|
-
|
8
6
|
class CLI
|
9
7
|
include Mixlib::CLI
|
10
8
|
|
@@ -17,7 +15,7 @@ class CLI
|
|
17
15
|
:short => '-n NAME',
|
18
16
|
:long => '--name NAME',
|
19
17
|
:description => 'Process name',
|
20
|
-
:default => $0,
|
18
|
+
:default => File.basename($0),
|
21
19
|
:proc => ->(value) { $0 = value }
|
22
20
|
|
23
21
|
option :environment,
|
data/madvertise-ext.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = "madvertise-ext"
|
5
|
-
spec.version = "0.9.
|
5
|
+
spec.version = "0.9.4"
|
6
6
|
spec.authors = ["madvertise Mobile Advertising GmbH"]
|
7
7
|
spec.email = ["tech@madvertise.com"]
|
8
8
|
spec.description = %q{Ruby core extensions and helper libraries}
|