bone 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,15 @@
1
1
  BONE, CHANGES
2
2
 
3
+ #### 0.3.1 (2010-12-17) ###############################
4
+
5
+ * FIXED: Bone::VERSION
6
+
7
+ #### 0.3.0 (2010-12-17) ###############################
8
+
9
+ NOTE: This is a complete rewrite. It is not compatible
10
+ with previous versions.
11
+
12
+
3
13
  #### 0.2.6 (2010-02-20) ###############################
4
14
 
5
15
  * CHANGE: Remove hanna dependency
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  **Remote environment variables**
4
4
 
5
+ *NOTE: This version is not compatible with previous versions of Bone.*
6
+
5
7
  ## Features
6
8
 
7
9
  * Store variables and files remotely
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :MAJOR: 0
3
3
  :MINOR: 3
4
- :PATCH: 0
4
+ :PATCH: 1
data/bin/bone CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/ruby
2
2
 
3
3
  # Put our local lib in first place
4
- BASE_PATH = File.expand_path File.join(File.dirname(__FILE__), '..')
5
- lib_dir = File.join(BASE_PATH, 'lib')
4
+ BONE_HOME = File.expand_path File.join(File.dirname(__FILE__), '..')
5
+ lib_dir = File.join(BONE_HOME, 'lib')
6
6
  $:.unshift lib_dir
7
7
 
8
8
  require 'bone'
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{bone}
8
- s.version = "0.3.0"
8
+ s.version = "0.3.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Delano Mandelbaum"]
@@ -23,7 +23,7 @@ class Bone
23
23
  alias_method :inspect, :to_s
24
24
  def self.load_config
25
25
  require 'yaml'
26
- @version ||= YAML.load_file(File.join(BONE_HOME, '..', 'VERSION.yml'))
26
+ @version ||= YAML.load_file(File.join(BONE_HOME, 'VERSION.yml'))
27
27
  end
28
28
  end
29
29
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bone
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 0
10
- version: 0.3.0
9
+ - 1
10
+ version: 0.3.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Delano Mandelbaum