shaddox 0.0.20 → 0.0.21

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: 813bb3d6c4b67ca709df3d036a384bf199aefa52
4
- data.tar.gz: a617115881d1381e3372ef9a89ea1d7121c1a4a6
3
+ metadata.gz: 1b585c2adf819bd018203f26cd1edfb2e493de79
4
+ data.tar.gz: 7210b5dcaa09000b3159e85c6e5ffc47c90c695f
5
5
  SHA512:
6
- metadata.gz: a4a489561e4d86603b029847ef8d7e521d7aeeb14f85bb8a82b863ccb1edadec3586f3d0171204fcb6507b8be879a4a00f2c5041cbd7462b2a62e7d75291637c
7
- data.tar.gz: a165f5393a606968f1ebd1538182100678d2865a3aca41483971029a8861dbe9f917582c7ccc517539cc7938f6a1d076b13314938d6cacc1891ae91d120160ab
6
+ metadata.gz: 65706ed6dabbb9b240de8916f16100f027536e17a41e56203ad3cbc66251fa9fed23e2e6608cc4a262dfefd75c8139ad41fee7499eeabb20782b670b1138cd9f
7
+ data.tar.gz: 321ec3460f5e80cfc7f73cbea10b746f7a5b96a41fa2d5105ead5bd0973d50aa5bbc2afea08f8985c0e52dd55a3dfa9d54bdc3c831479afc3ef97b5dec5eae47
@@ -4,6 +4,7 @@ module Shaddox
4
4
  def initialize(config, task_key, opts = {})
5
5
  # Initialize properties
6
6
  @installer = opts[:installer]
7
+ @debug = opts[:debug]
7
8
 
8
9
  @config = config
9
10
  @cast_tasks = []
@@ -11,7 +12,7 @@ module Shaddox
11
12
  # Generate script
12
13
  params = []
13
14
  params += ":installer => :#{@installer}" if @installer
14
- params += ":debug => :#{opts[:debug]}" if opts[:debug]
15
+ params += ":debug => #{@debug}" if @debug
15
16
 
16
17
  @script = %Q{
17
18
  require 'shaddox'
@@ -1,3 +1,3 @@
1
1
  module Shaddox
2
- VERSION = "0.0.20"
2
+ VERSION = "0.0.21"
3
3
  end
data/push.sh CHANGED
@@ -10,4 +10,5 @@
10
10
  gem build shaddox.gemspec
11
11
  gem push shaddox-*
12
12
  rm shaddox-*
13
- gem update shaddox
13
+ sleep 10
14
+ sudo gem update shaddox
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shaddox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.20
4
+ version: 0.0.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - joshglendenning