delano-drydock 0.6.7 → 0.6.8
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 +6 -0
- data/drydock.gemspec +1 -1
- data/lib/drydock/screen.rb +1 -1
- data/lib/drydock.rb +2 -1
- metadata +1 -1
data/CHANGES.txt
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
DRYDOCK, CHANGES
|
2
2
|
|
3
3
|
|
4
|
+
#### 0.6.8 (2009-09-15) #############################
|
5
|
+
|
6
|
+
* FIXED: require 'thread' added to Drydock::Screen
|
7
|
+
* FIXED: require 'drydock/console'
|
8
|
+
|
9
|
+
|
4
10
|
#### 0.6.7 (2009-09-15) #############################
|
5
11
|
|
6
12
|
* ADDED: Drydock::Screen
|
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.8"
|
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/screen.rb
CHANGED
data/lib/drydock.rb
CHANGED
@@ -4,6 +4,7 @@ require 'stringio'
|
|
4
4
|
|
5
5
|
require 'drydock/screen'
|
6
6
|
require 'drydock/mixins'
|
7
|
+
require 'drydock/console'
|
7
8
|
|
8
9
|
module Drydock
|
9
10
|
class FancyArray < Array #:nodoc:
|
@@ -78,7 +79,7 @@ module Drydock
|
|
78
79
|
# end
|
79
80
|
#
|
80
81
|
class Command
|
81
|
-
VERSION = "0.6.
|
82
|
+
VERSION = "0.6.8"
|
82
83
|
# The canonical name of the command (the one used in the command definition). If you
|
83
84
|
# inherit from this class and add a method named +cmd+, you can leave omit the block
|
84
85
|
# in the command definition. That method will be called instead. See bin/examples.
|