drydock 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
@@ -5,7 +5,12 @@ DRYDOCK, CHANGES
5
5
  * Support putting descriptions into resource file (or __END__)
6
6
 
7
7
 
8
- #### 0.6.0 (2009-04-22) #############################
8
+ #### 0.6.1 (2009-05-03) #############################
9
+
10
+ * FIXED: @@trawler raises an error in Ruby 1.8 if it's a Symbol
11
+
12
+
13
+ #### 0.6.0 (2009-04-30) #############################
9
14
 
10
15
  * CHANGE: Cleaner default error message for UnknownCommand exceptions
11
16
  * CHANGE: 'desc' is now 'about' (desc works, but it prints a notice)
data/README.rdoc CHANGED
@@ -1,8 +1,10 @@
1
1
  = Drydock - v0.6
2
2
 
3
+ <b>Build seaworthy command-line apps like a Captain with a powerful Ruby DSL.</b>
4
+
3
5
  == Overview
4
6
 
5
- Drydock is a seaworthy DSL for really powerful command line applications. It's contained in a single .rb file so it's easy to copy directly into your project. See below for examples.
7
+ Drydock is a seaworthy DSL for building really powerful command line applications. It's contained in a single .rb file so it's easy to copy directly into your project. See below for examples.
6
8
 
7
9
  == Install
8
10
 
data/drydock.gemspec CHANGED
@@ -1,12 +1,11 @@
1
1
  @spec = Gem::Specification.new do |s|
2
2
  s.name = %q{drydock}
3
- s.version = "0.6.0"
4
- s.date = %q{2009-04-28}
3
+ s.version = "0.6.1"
5
4
  s.specification_version = 1 if s.respond_to? :specification_version=
6
5
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
7
6
 
8
7
  s.authors = ["Delano Mandelbaum"]
9
- s.description = %q{A seaworthy DSL for writing command line apps}
8
+ s.description = %q{Build seaworthy command-line apps like a Captain with a powerful Ruby DSL.}
10
9
  s.summary = s.description
11
10
  s.email = %q{delano@solutious.com}
12
11
 
data/lib/drydock.rb CHANGED
@@ -667,7 +667,7 @@ module Drydock
667
667
 
668
668
  # Has the trawler been set?
669
669
  def trawler?
670
- !@@trawler.nil? && !@@trawler.empty?
670
+ !@@trawler.nil? && !@@trawler.to_s.empty?
671
671
  end
672
672
 
673
673
  # Provide a description for a command
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: drydock
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
@@ -9,11 +9,11 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-04-28 00:00:00 -04:00
12
+ date: 2009-05-03 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
16
- description: A seaworthy DSL for writing command line apps
16
+ description: Build seaworthy command-line apps like a Captain with a powerful Ruby DSL.
17
17
  email: delano@solutious.com
18
18
  executables: []
19
19
 
@@ -39,7 +39,7 @@ post_install_message:
39
39
  rdoc_options:
40
40
  - --line-numbers
41
41
  - --title
42
- - "Drydock: A seaworthy DSL for writing command line apps"
42
+ - "Drydock: Build seaworthy command-line apps like a Captain with a powerful Ruby DSL."
43
43
  - --main
44
44
  - README.rdoc
45
45
  require_paths:
@@ -62,6 +62,6 @@ rubyforge_project: drydock
62
62
  rubygems_version: 1.3.2
63
63
  signing_key:
64
64
  specification_version: 1
65
- summary: A seaworthy DSL for writing command line apps
65
+ summary: Build seaworthy command-line apps like a Captain with a powerful Ruby DSL.
66
66
  test_files: []
67
67