drydock 0.6.1 → 0.6.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.rdoc +1 -1
  2. data/drydock.gemspec +1 -1
  3. data/lib/drydock.rb +4 -0
  4. metadata +2 -2
data/README.rdoc CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  == Overview
6
6
 
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.
7
+ Drydock is a seaworthy DSL for building really powerful command line applications. The core class is contained in a single .rb file so it's easy to copy directly into your project. See below for examples.
8
8
 
9
9
  == Install
10
10
 
data/drydock.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  @spec = Gem::Specification.new do |s|
2
2
  s.name = %q{drydock}
3
- s.version = "0.6.1"
3
+ s.version = "0.6.2"
4
4
  s.specification_version = 1 if s.respond_to? :specification_version=
5
5
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
6
6
 
data/lib/drydock.rb CHANGED
@@ -2,6 +2,10 @@ require 'optparse'
2
2
  require 'ostruct'
3
3
  require 'stringio'
4
4
 
5
+ require 'drydock/console'
6
+ require 'mixins/string'
7
+ require 'mixins/object'
8
+
5
9
  module Drydock
6
10
  class FancyArray < Array #:nodoc:
7
11
  attr_reader :fields
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.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delano Mandelbaum
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-05-03 00:00:00 -04:00
12
+ date: 2009-05-07 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies: []
15
15