Skip to content

Commit

Permalink
Release 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
delano committed Jun 13, 2009
1 parent 13f13e0 commit 7c6b7d2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
@@ -1,6 +1,6 @@
TRYOUTS, CHANGES

#### 0.5.1 (2009-06-08) ###############################
#### 0.5.1 (2009-06-13) ###############################

* ADDED: dream method is now available inside drill block
* ADDED: Drills that return true are assumed to pass
Expand Down
4 changes: 4 additions & 0 deletions bin/sergeant
Expand Up @@ -19,6 +19,10 @@ module TryoutsCLI
default :run, :with_args

global :q, :quiet, "Decrease output"
global :V, :version, "Display version number" do
puts "Tryouts version: #{Tryouts::VERSION}"
exit 0
end
global :v, :verbose, "Increase output" do
@verbose ||= 0
@verbose += 1
Expand Down
2 changes: 1 addition & 1 deletion lib/tryouts.rb
Expand Up @@ -29,7 +29,7 @@ class Exception < RuntimeError; end
# Raised when there is a problem loading or parsing a Tryouts::Drill::Dream object
class BadDreams < Exception; end

VERSION = "0.5.0"
VERSION = "0.5.1"

require 'tryouts/mixins'
require 'tryouts/tryout'
Expand Down
2 changes: 1 addition & 1 deletion tryouts.gemspec
@@ -1,7 +1,7 @@
@spec = Gem::Specification.new do |s|
s.name = "tryouts"
s.rubyforge_project = "tryouts"
s.version = "0.5.0"
s.version = "0.5.1"
s.summary = "Tryouts are high-level tests for your Ruby code. May all your dreams come true!"
s.description = s.summary
s.author = "Delano Mandelbaum"
Expand Down

0 comments on commit 7c6b7d2

Please sign in to comment.