drydock 0.6.8 → 0.6.9
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES.txt +3 -1
- data/Rakefile +5 -1
- data/drydock.gemspec +1 -1
- data/lib/drydock.rb +1 -1
- metadata +3 -3
data/CHANGES.txt
CHANGED
@@ -1,9 +1,11 @@
|
|
1
1
|
DRYDOCK, CHANGES
|
2
2
|
|
3
|
-
#### 0.6.9 (
|
3
|
+
#### 0.6.9 (2010-02-12) #############################
|
4
4
|
|
5
|
+
* CHANGE: Removed hanna dependency [Flameeyes]
|
5
6
|
* CHANGE: Using autoload where appropriate.
|
6
7
|
|
8
|
+
|
7
9
|
#### 0.6.8 (2009-09-15) #############################
|
8
10
|
|
9
11
|
* FIXED: require 'thread' added to Drydock::Screen
|
data/Rakefile
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
require 'rake/clean'
|
3
3
|
require 'rake/gempackagetask'
|
4
|
-
require 'hanna/rdoctask'
|
5
4
|
require 'fileutils'
|
6
5
|
include FileUtils
|
7
6
|
|
@@ -55,6 +54,11 @@ task 'publish:gem' => [:package] do |t|
|
|
55
54
|
end
|
56
55
|
end
|
57
56
|
|
57
|
+
begin
|
58
|
+
require 'hanna/rdoctask'
|
59
|
+
rescue LoadError
|
60
|
+
require 'rake/rdoctask'
|
61
|
+
end
|
58
62
|
|
59
63
|
Rake::RDocTask.new do |t|
|
60
64
|
t.rdoc_dir = 'doc'
|
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.
|
3
|
+
s.version = "0.6.9"
|
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
@@ -81,7 +81,7 @@ module Drydock
|
|
81
81
|
# end
|
82
82
|
#
|
83
83
|
class Command
|
84
|
-
VERSION = "0.6.
|
84
|
+
VERSION = "0.6.9"
|
85
85
|
# The canonical name of the command (the one used in the command definition). If you
|
86
86
|
# inherit from this class and add a method named +cmd+, you can leave omit the block
|
87
87
|
# in the command definition. That method will be called instead. See bin/examples.
|
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.9
|
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:
|
12
|
+
date: 2010-02-12 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -64,7 +64,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
64
|
requirements: []
|
65
65
|
|
66
66
|
rubyforge_project: drydock
|
67
|
-
rubygems_version: 1.3.
|
67
|
+
rubygems_version: 1.3.5
|
68
68
|
signing_key:
|
69
69
|
specification_version: 1
|
70
70
|
summary: Build seaworthy command-line apps like a Captain with a powerful Ruby DSL.
|