tryouts 2.0.0 → 2.0.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.
Files changed (5) hide show
  1. data/.gitignore +2 -1
  2. data/CHANGES.txt +9 -0
  3. data/VERSION.yml +1 -1
  4. data/lib/tryouts.rb +3 -3
  5. metadata +3 -2
data/.gitignore CHANGED
@@ -1 +1,2 @@
1
- *.gemspec
1
+ *.gemspec
2
+ pkg
data/CHANGES.txt ADDED
@@ -0,0 +1,9 @@
1
+ TRYOUTS, CHANGES
2
+
3
+ #### 2.0.1 (2010-07-21) ###############################
4
+
5
+ * FIXED: Fix range of lines executed for clean, was double executing most test defs
6
+
7
+ #### 2.0.0 (2010-07-19) ###############################
8
+
9
+ Initial 2.0 release.
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :MAJOR: 2
3
3
  :MINOR: 0
4
- :PATCH: 0
4
+ :PATCH: 1
5
5
  :BUILD: '001'
data/lib/tryouts.rb CHANGED
@@ -265,9 +265,9 @@ class Tryouts
265
265
  end
266
266
  def clean
267
267
  return if empty?
268
- last = first.exps.last+1
269
- if last < lines.size
270
- Tryouts.eval lines[last..-1].join, path, last
268
+ last_line = last.exps.last+1
269
+ if last_line < lines.size
270
+ Tryouts.eval lines[last..-1].join, path, last_line
271
271
  end
272
272
  end
273
273
  def run?
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tryouts
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delano Mandelbaum
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-07-18 00:00:00 -04:00
12
+ date: 2010-07-21 00:00:00 -04:00
13
13
  default_executable: try
14
14
  dependencies: []
15
15
 
@@ -24,6 +24,7 @@ extra_rdoc_files:
24
24
  - README.rdoc
25
25
  files:
26
26
  - .gitignore
27
+ - CHANGES.txt
27
28
  - LICENSE.txt
28
29
  - README.rdoc
29
30
  - Rakefile