guard-coffeedripper 0.1.0 → 0.1.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.
@@ -31,12 +31,14 @@ module Guard
31
31
  end
32
32
 
33
33
  def drip_all
34
+ puts "Drip Start for All"
34
35
  @config.each do |coffee, beans|
35
36
  drip(coffee)
36
37
  end
37
38
  end
38
39
 
39
40
  def drip(coffee_script)
41
+ puts "Drip Start for #{coffee_script}"
40
42
  beans = @config[coffee_script]
41
43
  output = File.join Dir.pwd, @options[:output], coffee_script
42
44
  str = ""
@@ -44,6 +46,7 @@ module Guard
44
46
  str += load_bean(bean)
45
47
  end
46
48
  write(output, str)
49
+ puts "Dripped End #{output}"
47
50
  end
48
51
 
49
52
  def load_bean(bean)
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  module CoffeeDripperVersion
3
- VERSION = '0.1.0'
3
+ VERSION = '0.1.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: guard-coffeedripper
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.0
5
+ version: 0.1.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - amacou