capistrano-configuration 0.2.0 → 0.2.1

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,3 +1,7 @@
1
+ == 0.2.1 (Nov 18, 2009)
2
+
3
+ * Fix namespace conflicts with latest version of Capistrano
4
+
1
5
  == 0.2.0 (March 9, 2009)
2
6
 
3
7
  * Multi level configuration is now possible (when previously only one level was working)
@@ -7,7 +7,7 @@ so you don't have to worry about copy different yml files to the right place
7
7
 
8
8
  == Installation
9
9
 
10
- sudo gem install kete-capistrano-configuration --source=http://gems.github.com
10
+ sudo gem install capistrano-configuration --source=http://gemcutter.org
11
11
 
12
12
 
13
13
  == Usage
@@ -28,7 +28,7 @@ and then write your configurations in ruby like so:
28
28
  config 'password', 'secret_production'
29
29
  end
30
30
  end
31
-
31
+
32
32
  configure :google_map_key do
33
33
  config 'map_key', 'u232398b208x9830x30xb383'
34
34
  end
@@ -2,8 +2,8 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "capistrano-configuration"
5
- s.version = "0.2.0"
6
- s.date = "2009-03-09"
5
+ s.version = "0.2.1"
6
+ s.date = "2009-11-18"
7
7
  s.author = "Kieran Pilkington"
8
8
  s.email = "kieran@katipo.co.nz"
9
9
  s.homepage = "http://github.com/kete/capistrano-configuration"
@@ -28,7 +28,7 @@ Gem::Specification.new do |s|
28
28
  "capistrano-configuration",
29
29
  "--main",
30
30
  "README.rdoc"]
31
- s.rubygems_version = "1.1.1"
32
- s.add_dependency "capistrano", ">= 1.1.0"
31
+ s.rubygems_version = "1.3.0"
32
+ s.add_dependency "capistrano", ">= 2.0.0"
33
33
  s.rubyforge_project = "capistrano-conf"
34
34
  end
@@ -51,7 +51,7 @@ module CapistranoConfiguration
51
51
 
52
52
  namespace :deploy do
53
53
 
54
- namespace :configuration do
54
+ namespace :configurations do
55
55
 
56
56
  desc 'Write the configuration files based on whats in @@configurations'
57
57
  task :write, :role => :app do
@@ -67,7 +67,7 @@ module CapistranoConfiguration
67
67
 
68
68
  end
69
69
 
70
- after "deploy:symlink", "deploy:configuration:write"
70
+ after "deploy:symlink", "deploy:configurations:write"
71
71
 
72
72
  end
73
73
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-configuration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kieran Pilkington
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-03-09 00:00:00 +13:00
12
+ date: 2009-11-18 00:00:00 +13:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - ">="
22
22
  - !ruby/object:Gem::Version
23
- version: 1.1.0
23
+ version: 2.0.0
24
24
  version:
25
25
  description: Write application configuration files on deployment with Ruby
26
26
  email: kieran@katipo.co.nz