rubber 1.5.4 → 1.5.5
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +15 -0
- data/VERSION +1 -1
- data/lib/rubber/environment.rb +6 -1
- metadata +3 -3
data/CHANGELOG
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
1.5.4
|
2
|
+
-----
|
3
|
+
|
4
|
+
add an environment specific rubber.yml file <8f8366e> [Matt Conway]
|
5
|
+
set ruby ver to more stable 1.9.2 (rvm currently maps it to preview3, but will map it to actual 1.9.2 when released) <5fa8763> [Matt Conway]
|
6
|
+
extra test <0ff8aba> [Matt Conway]
|
7
|
+
fix some test failures <9ac276b> [Matt Conway]
|
8
|
+
Merge branch 'master' into merge <6599fcb> [Matt Conway]
|
9
|
+
add missing stuff from create to refresh to aid in sertting instance details for a partially failed create <a7ac958> [Matt Conway]
|
10
|
+
clean string from instance arch to remove newlines <1b1052f> [Matt Conway]
|
11
|
+
tell bundler to not install dev/test gems <a3a7d3b> [Matt Conway]
|
12
|
+
use correct path for passenger ruby for newer rvm <dcff158> [Matt Conway]
|
13
|
+
fix wget params for cassandra <d521eb1> [Matt Conway]
|
14
|
+
set rvmrc before installing <df111ef> [Matt Conway]
|
15
|
+
|
1
16
|
1.5.3
|
2
17
|
-----
|
3
18
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.5.
|
1
|
+
1.5.5
|
data/lib/rubber/environment.rb
CHANGED
@@ -16,8 +16,13 @@ module Rubber
|
|
16
16
|
@config_root = config_root
|
17
17
|
@config_files = ["#{@config_root}/rubber.yml"]
|
18
18
|
@config_files += Dir["#{@config_root}/rubber-*.yml"].sort
|
19
|
+
|
20
|
+
# add a config file for current env only so that you can override
|
21
|
+
#things for specific envs
|
19
22
|
@config_files -= Dir["#{@config_root}/rubber-*-env.yml"]
|
20
|
-
|
23
|
+
env_yml = "#{@config_root}/rubber-#{Rubber.env}-env.yml"
|
24
|
+
@config_files << env_yml if File.exist?(env_yml)
|
25
|
+
|
21
26
|
@items = {}
|
22
27
|
@config_files.each { |file| read_config(file) }
|
23
28
|
@config_secret = bind().rubber_secret
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 5
|
8
|
-
-
|
9
|
-
version: 1.5.
|
8
|
+
- 5
|
9
|
+
version: 1.5.5
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Matt Conway
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-06-
|
17
|
+
date: 2010-06-07 00:00:00 -04:00
|
18
18
|
default_executable: vulcanize
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|