tryouts 2.0.1 → 2.0.1.002

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 (5) hide show
  1. data/CHANGES.txt +4 -0
  2. data/Rakefile +1 -1
  3. data/VERSION.yml +1 -1
  4. data/lib/tryouts.rb +1 -1
  5. metadata +17 -4
data/CHANGES.txt CHANGED
@@ -1,5 +1,9 @@
1
1
  TRYOUTS, CHANGES
2
2
 
3
+ #### 2.0.1.002 (2010-07-21) ###############################
4
+
5
+ * FIXED: clean error (bad value for range). Didn't run tryouts. Bad Delano!
6
+
3
7
  #### 2.0.1 (2010-07-21) ###############################
4
8
 
5
9
  * FIXED: Fix range of lines executed for clean, was double executing most test defs
data/Rakefile CHANGED
@@ -17,7 +17,7 @@ name = "stella"
17
17
  begin
18
18
  require "jeweler"
19
19
  Jeweler::Tasks.new do |gem|
20
- gem.version = "#{config[:MAJOR]}.#{config[:MINOR]}.#{config[:PATCH]}"
20
+ gem.version = "#{config[:MAJOR]}.#{config[:MINOR]}.#{config[:PATCH]}.#{config[:BUILD]}"
21
21
  gem.name = "tryouts"
22
22
  gem.rubyforge_project = gem.name
23
23
  gem.summary = "Put your Ruby tests in comments."
data/VERSION.yml CHANGED
@@ -2,4 +2,4 @@
2
2
  :MAJOR: 2
3
3
  :MINOR: 0
4
4
  :PATCH: 1
5
- :BUILD: '001'
5
+ :BUILD: '002'
data/lib/tryouts.rb CHANGED
@@ -267,7 +267,7 @@ class Tryouts
267
267
  return if empty?
268
268
  last_line = last.exps.last+1
269
269
  if last_line < lines.size
270
- Tryouts.eval lines[last..-1].join, path, last_line
270
+ Tryouts.eval lines[last_line..-1].join, path, last_line
271
271
  end
272
272
  end
273
273
  def run?
metadata CHANGED
@@ -1,7 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tryouts
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ hash: 111
5
+ prerelease: false
6
+ segments:
7
+ - 2
8
+ - 0
9
+ - 1
10
+ - 2
11
+ version: 2.0.1.002
5
12
  platform: ruby
6
13
  authors:
7
14
  - Delano Mandelbaum
@@ -46,21 +53,27 @@ rdoc_options:
46
53
  require_paths:
47
54
  - lib
48
55
  required_ruby_version: !ruby/object:Gem::Requirement
56
+ none: false
49
57
  requirements:
50
58
  - - ">="
51
59
  - !ruby/object:Gem::Version
60
+ hash: 3
61
+ segments:
62
+ - 0
52
63
  version: "0"
53
- version:
54
64
  required_rubygems_version: !ruby/object:Gem::Requirement
65
+ none: false
55
66
  requirements:
56
67
  - - ">="
57
68
  - !ruby/object:Gem::Version
69
+ hash: 3
70
+ segments:
71
+ - 0
58
72
  version: "0"
59
- version:
60
73
  requirements: []
61
74
 
62
75
  rubyforge_project: tryouts
63
- rubygems_version: 1.3.5
76
+ rubygems_version: 1.3.7
64
77
  signing_key:
65
78
  specification_version: 3
66
79
  summary: Put your Ruby tests in comments.