evoker 0.0.1 → 0.0.2

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/evoker.rb +1 -1
  2. data/lib/evoker/version.rb +2 -2
  3. metadata +3 -3
data/lib/evoker.rb CHANGED
@@ -27,7 +27,7 @@ module Evoker
27
27
  def initialize(*args, &block)
28
28
  super(*args, &block)
29
29
  @stampname = "#{@name}.stamp"
30
- @actions << lambda { rm_rf @name }
30
+ @actions << lambda { |*args| rm_rf @name }
31
31
  CLOBBER.add([@stampname, @name])
32
32
  ENTITIES.add(@name)
33
33
 
@@ -2,12 +2,12 @@ module Evoker
2
2
  module VERSION
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 1
5
+ TINY = 2
6
6
  STRING = [MAJOR, MINOR, TINY].join('.')
7
7
 
8
8
  def VERSION.require_version(major, minor=0, tiny=0)
9
9
  unless ([MAJOR, MINOR, TINY] <=> [major, minor, tiny]) >= 0
10
- raise Capistrano::Error, "capistrano-offroad version #{MAJOR}.#{MINOR}.#{TINY} is below required #{major}.#{minor}.#{tiny}"
10
+ raise "Evoker version #{MAJOR}.#{MINOR}.#{TINY} is below required #{major}.#{minor}.#{tiny}"
11
11
  end
12
12
  end
13
13
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: evoker
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Maciej Pasternacki