adaptation 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -58,3 +58,5 @@
58
58
  - console options: environment
59
59
  - boot is (usually) done using config/boot.rb, except when forcing the
60
60
  environment
61
+ * 0.1.8
62
+ - console didn't start due to missing "require 'adaptation/vversion'"
data/bin/console CHANGED
@@ -3,6 +3,7 @@
3
3
  ADAPTOR_ROOT = "#{File.dirname(__FILE__)}/.." unless defined?(ADAPTOR_ROOT)
4
4
  require 'rubygems'
5
5
  require 'adaptation'
6
+ require 'adaptation/version'
6
7
 
7
8
  require 'commands/console'
8
9
 
@@ -2,7 +2,7 @@ module Adaptation
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 7
5
+ TINY = 8
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adaptation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Xavi Vila Morell
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-04-01 00:00:00 +02:00
12
+ date: 2009-04-15 00:00:00 +02:00
13
13
  default_executable: adaptation
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -114,7 +114,6 @@ files:
114
114
  - lib/ruby_version_check.rb
115
115
  - lib/adaptation.rb
116
116
  - lib/commands
117
- - lib/commands/breakpointer.rb
118
117
  - lib/commands/console.rb
119
118
  - lib/commands/about.rb
120
119
  - lib/commands/subscribe.rb
@@ -1 +0,0 @@
1
- require 'breakpoint_client'