gap 0.0.8 → 0.0.9

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/tasks.rb +2 -3
  2. data/lib/gap.rb +1 -1
  3. metadata +1 -1
data/lib/gap/tasks.rb CHANGED
@@ -13,9 +13,9 @@ module Gap
13
13
  end
14
14
 
15
15
  task(:stop) do
16
- value.reverse.each do |app, commands|
16
+ value.to_a.reverse.each do |app, commands|
17
17
  send(app)
18
- send(commands["task"]["stop"])
18
+ send("stop") if commands["task"]["stop"]
19
19
  end
20
20
  end
21
21
 
@@ -42,7 +42,6 @@ module Gap
42
42
  val.each { |attr, val| set attr, val } if val
43
43
  else
44
44
 
45
-
46
45
  val.each do |a, v|
47
46
 
48
47
  case a
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.8'
5
+ VERSION = '0.0.9'
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.8
5
+ version: 0.0.9
6
6
  platform: ruby
7
7
  authors:
8
8
  - Takashi Yaguchi