cap-rightscale 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.0.4
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{cap-rightscale}
8
- s.version = "0.0.3"
8
+ s.version = "0.0.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Satoshi Ohki"]
@@ -32,6 +32,7 @@ Gem::Specification.new do |s|
32
32
  "lib/cap-rightscale.rb",
33
33
  "lib/cap-rightscale/configuration.rb",
34
34
  "lib/cap-rightscale/configuration/rightscale.rb",
35
+ "lib/cap-rightscale/recipes.rb",
35
36
  "lib/cap-rightscale/recipes/rs_cache.rb",
36
37
  "spec/cap-rightscale_spec.rb",
37
38
  "spec/spec_helper.rb"
@@ -7,4 +7,3 @@ $:.unshift(File.dirname(__FILE__)) unless
7
7
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
8
8
 
9
9
  require 'cap-rightscale/configuration'
10
- Dir['cap-rightscale/recipes/*.rb'].each { |plugin| load(plugin) }
@@ -0,0 +1,5 @@
1
+ # Load recipes
2
+ recipes = Dir['cap-rightscale/recipes/*.rb'].map {|recipe| File.expand_path(recipe)}
3
+ recipes.each do |recipe|
4
+ Capistrano::Configuration.instance.load recipe
5
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cap-rightscale
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 3
10
- version: 0.0.3
9
+ - 4
10
+ version: 0.0.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Satoshi Ohki
@@ -119,6 +119,7 @@ files:
119
119
  - lib/cap-rightscale.rb
120
120
  - lib/cap-rightscale/configuration.rb
121
121
  - lib/cap-rightscale/configuration/rightscale.rb
122
+ - lib/cap-rightscale/recipes.rb
122
123
  - lib/cap-rightscale/recipes/rs_cache.rb
123
124
  - spec/cap-rightscale_spec.rb
124
125
  - spec/spec_helper.rb