gap 0.0.9 → 0.0.10

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.
Files changed (3) hide show
  1. data/lib/gap/patch.rb +2 -2
  2. data/lib/gap.rb +1 -1
  3. metadata +1 -1
data/lib/gap/patch.rb CHANGED
@@ -51,9 +51,9 @@ module Capistrano
51
51
  task(env) do
52
52
  define_bulk_tasks value
53
53
  #value["set"].each { |attr, val| set attr, val }
54
- value["task"].each do |app, commands|
54
+ value.each do |app, commands|
55
55
  task(app) do
56
- commands.each { |name, command|
56
+ commands["task"].each { |name, command|
57
57
  task(name) { system(command) }}
58
58
  end
59
59
  end
data/lib/gap.rb CHANGED
@@ -2,5 +2,5 @@ $:.unshift(File.dirname(__FILE__)) unless
2
2
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
3
 
4
4
  module Gap
5
- VERSION = '0.0.9'
5
+ VERSION = '0.0.10'
6
6
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: gap
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.9
5
+ version: 0.0.10
6
6
  platform: ruby
7
7
  authors:
8
8
  - Takashi Yaguchi