boned 0.2.5 → 0.2.6

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.
@@ -1,5 +1,9 @@
1
1
  BONED, CHANGES
2
2
 
3
+ #### 0.2.6 (2010-05-17) ###############################
4
+
5
+ * CHANGE: Require rubygems in bin/boned
6
+
3
7
  #### 0.2.5 (2010-02-20) ###############################
4
8
 
5
9
  * CHANGE: Remove hanna dependency
data/bin/boned CHANGED
@@ -16,6 +16,7 @@ lib_dir = File.join(BASE_PATH, 'lib')
16
16
  $:.unshift lib_dir
17
17
  #$:.unshift '/Users/delano/Projects/opensource/drydock/lib'
18
18
 
19
+ require 'rubygems'
19
20
  require 'drydock'
20
21
  require 'boned'
21
22
  require 'boned/cli'
@@ -1,7 +1,7 @@
1
1
  @spec = Gem::Specification.new do |s|
2
2
  s.name = "boned"
3
3
  s.rubyforge_project = 'boned'
4
- s.version = "0.2.5"
4
+ s.version = "0.2.6"
5
5
  s.summary = "The bone daemon"
6
6
  s.description = s.summary
7
7
  s.author = "Delano Mandelbaum"
@@ -23,7 +23,7 @@ module Boned
23
23
  module VERSION
24
24
  MAJOR = 0
25
25
  MINOR = 2
26
- TINY = 5
26
+ TINY = 6
27
27
  PATCH = '001'
28
28
  def self.inspect; [to_s, PATCH].join('.'); end
29
29
  def self.to_s; [MAJOR, MINOR, TINY].join('.'); end
@@ -8,10 +8,6 @@ class Boned::API < Sinatra::Base
8
8
  set :views => 'views/'
9
9
  set :static => true
10
10
 
11
- before do
12
- puts ENV['RACK_ENV']
13
- end
14
-
15
11
  configure :development do
16
12
  before do
17
13
  Boned.enable_debug
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boned
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
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: 2010-02-20 00:00:00 -05:00
12
+ date: 2010-05-17 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency