delano-drydock 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
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: delano-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 -07:00
12
+ date: 2009-04-08 00:00:00 -07: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
 
@@ -37,7 +37,7 @@ post_install_message:
37
37
  rdoc_options:
38
38
  - --line-numbers
39
39
  - --title
40
- - "Drydock: A seaworthy DSL for writing command line apps"
40
+ - "Drydock: Build seaworthy command-line apps like a Captain with a powerful Ruby DSL."
41
41
  - --main
42
42
  - README.rdoc
43
43
  require_paths:
@@ -60,6 +60,6 @@ rubyforge_project: drydock
60
60
  rubygems_version: 1.2.0
61
61
  signing_key:
62
62
  specification_version: 1
63
- summary: A seaworthy DSL for writing command line apps
63
+ summary: Build seaworthy command-line apps like a Captain with a powerful Ruby DSL.
64
64
  test_files: []
65
65