delano-drydock 0.6.7 → 0.6.8

Sign up to get free protection for your applications and to get access to all the features.
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.7"
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
 
@@ -1,4 +1,4 @@
1
-
1
+ require 'thread'
2
2
 
3
3
  module Drydock
4
4
  module Screen
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.7"
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.
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.7
4
+ version: 0.6.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delano Mandelbaum