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 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.0"
32
+ VERSION = "0.6.1"
33
33
 
34
34
  require 'tryouts/mixins'
35
35
  require 'tryouts/tryout'
@@ -14,6 +14,7 @@ class Tryouts; class Drill; module Sergeant
14
14
  attr_accessor :rbox_args
15
15
 
16
16
  def initialize(*args)
17
+ require 'rye'
17
18
  @rbox_args = args
18
19
  @rbox = Rye::Box.new
19
20
  end
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.0"
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"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: delano-tryouts
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delano Mandelbaum