kete-capistrano-configuration 0.1.1 → 0.1.2
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.
- data/CHANGELOG.rdoc +8 -3
- data/README.rdoc +8 -1
- data/capistrano-configuration.gemspec +2 -2
- data/lib/capistrano-configuration.rb +1 -2
- metadata +2 -2
data/CHANGELOG.rdoc
CHANGED
@@ -1,9 +1,14 @@
|
|
1
|
+
== 0.1.2 (January 12, 2009)
|
2
|
+
|
3
|
+
* Fixing configuration writing issue
|
4
|
+
- Replacing 'echo >>' syntax with Capistrano's much less buggy 'put' command
|
5
|
+
|
1
6
|
== 0.1.1 (January 7, 2009)
|
2
7
|
|
3
8
|
* Fixing deployment issues
|
4
|
-
|
5
|
-
|
9
|
+
- Configuration write now happens after symlink, not code update (so current directory is present)
|
10
|
+
- YAML files were parsing incorrectly (would leave backslashes at the end of lines breaking format)
|
6
11
|
|
7
12
|
== 0.1.0 (January 6, 2009)
|
8
13
|
|
9
|
-
* Initial Release
|
14
|
+
* Initial Release
|
data/README.rdoc
CHANGED
@@ -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
|
10
|
+
sudo gem install kete-capistrano-configuration --source=http://gems.github.com
|
11
11
|
|
12
12
|
|
13
13
|
== Usage
|
@@ -58,6 +58,13 @@ like this won't work:
|
|
58
58
|
This feature (nested environments) is planned for a future version.
|
59
59
|
|
60
60
|
|
61
|
+
== Bug and Feature Requests
|
62
|
+
|
63
|
+
You can report bugs and request features / submit patches at our Lighthouse account
|
64
|
+
|
65
|
+
http://kete.lighthouseapp.com/projects/23036-capistrano-configuration
|
66
|
+
|
67
|
+
|
61
68
|
== Credits
|
62
69
|
|
63
70
|
Gem created and maintained by Kieran Pilkington <kieran@katipo.co.nz>
|
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "capistrano-configuration"
|
5
|
-
s.version = "0.1.
|
6
|
-
s.date = "2009-01-
|
5
|
+
s.version = "0.1.2"
|
6
|
+
s.date = "2009-01-12"
|
7
7
|
s.author = "Kieran Pilkington"
|
8
8
|
s.email = "kieran@katipo.co.nz"
|
9
9
|
s.homepage = "http://github.com/kete/capistrano-configuration"
|
@@ -42,8 +42,7 @@ module CapistranoConfiguration
|
|
42
42
|
abort "@@configurations is empty. Did you forget to define some configurations?" if @@configurations.empty?
|
43
43
|
@@configurations.each do |file, value|
|
44
44
|
run "cd #{current_path} && rm -rf config/#{file}.yml"
|
45
|
-
|
46
|
-
run "cd #{current_path} && echo \"#{yaml}\" >> config/#{file}.yml"
|
45
|
+
put value.to_yaml, "#{current_path}/config/#{file}.yml"
|
47
46
|
end
|
48
47
|
end
|
49
48
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kete-capistrano-configuration
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
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-01-
|
12
|
+
date: 2009-01-12 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|