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 +6 -1
- data/README.rdoc +3 -1
- data/drydock.gemspec +2 -3
- data/lib/drydock.rb +1 -1
- metadata +5 -5
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.
|
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.
|
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{
|
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
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.
|
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-
|
12
|
+
date: 2009-05-03 00:00:00 -04:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
16
|
-
description:
|
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:
|
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:
|
65
|
+
summary: Build seaworthy command-line apps like a Captain with a powerful Ruby DSL.
|
66
66
|
test_files: []
|
67
67
|
|