delano-tryouts 0.6.0 → 0.6.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.
- data/CHANGES.txt +9 -0
- data/lib/tryouts.rb +2 -2
- data/lib/tryouts/drill/sergeant/cli.rb +1 -0
- data/tryouts.gemspec +1 -1
- metadata +1 -1
data/CHANGES.txt
CHANGED
@@ -1,6 +1,15 @@
|
|
1
1
|
TRYOUTS, CHANGES
|
2
2
|
|
3
3
|
|
4
|
+
#### 0.6.1 (2009-06-24) ###############################
|
5
|
+
|
6
|
+
NOTE: command testing (:cli) is still disabled.
|
7
|
+
|
8
|
+
* FIXED: JRuby is now supported
|
9
|
+
* FIXED: Now correctly requiring sysinfo library
|
10
|
+
* CHANGE: Don't require rye until a CLI sergeant is created.
|
11
|
+
|
12
|
+
|
4
13
|
#### 0.6.0 (2009-06-24) ###############################
|
5
14
|
|
6
15
|
NOTE: External dreams files are no longer supported.
|
data/lib/tryouts.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
|
+
require 'sysinfo'
|
2
3
|
require 'ostruct'
|
3
|
-
require 'rye'
|
4
4
|
require 'yaml'
|
5
5
|
begin; require 'json'; rescue LoadError; end # json may not be installed
|
6
6
|
|
@@ -29,7 +29,7 @@ class Tryouts
|
|
29
29
|
# Raised when there is a problem loading or parsing a Tryouts::Drill::Dream object
|
30
30
|
class BadDreams < Exception; end
|
31
31
|
|
32
|
-
VERSION = "0.6.
|
32
|
+
VERSION = "0.6.1"
|
33
33
|
|
34
34
|
require 'tryouts/mixins'
|
35
35
|
require 'tryouts/tryout'
|
data/tryouts.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
@spec = Gem::Specification.new do |s|
|
2
2
|
s.name = "tryouts"
|
3
3
|
s.rubyforge_project = "tryouts"
|
4
|
-
s.version = "0.6.
|
4
|
+
s.version = "0.6.1"
|
5
5
|
s.summary = "Tryouts are high-level tests for your Ruby code. May all your dreams come true!"
|
6
6
|
s.description = s.summary
|
7
7
|
s.author = "Delano Mandelbaum"
|