shindo 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/lib/shindo.rb +6 -6
  3. data/shindo.gemspec +2 -2
  4. metadata +2 -2
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.0.4
data/lib/shindo.rb CHANGED
@@ -17,12 +17,12 @@ module Shindo
17
17
  @annals = Annals.new
18
18
  @befores = []
19
19
  @description_stack = []
20
- self.if_tagged = Thread.current[:tags].
21
- select {|tag| tag.match(/^\+/)}.
22
- map {|tag| tag[1..-1]}
23
- self.unless_tagged = Thread.current[:tags].
24
- select {|tag| tag.match(/^\-/)}.
25
- map {|tag| tag[1..-1]}
20
+ @if_tagged = Thread.current[:tags].
21
+ select {|tag| tag.match(/^\+/)}.
22
+ map {|tag| tag[1..-1]}
23
+ @unless_tagged = Thread.current[:tags].
24
+ select {|tag| tag.match(/^\-/)}.
25
+ map {|tag| tag[1..-1]}
26
26
  @indent = 1
27
27
  @success = true
28
28
  @tag_stack = []
data/shindo.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{shindo}
8
- s.version = "0.0.3"
8
+ s.version = "0.0.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["geemus (Wesley Beary)"]
12
- s.date = %q{2009-11-02}
12
+ s.date = %q{2009-11-03}
13
13
  s.default_executable = %q{shindo}
14
14
  s.description = %q{Simple depth first ruby testing}
15
15
  s.email = %q{me@geemus.com}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shindo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - geemus (Wesley Beary)
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-11-02 00:00:00 -08:00
12
+ date: 2009-11-03 00:00:00 -08:00
13
13
  default_executable: shindo
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency