leehambley-railsless-deploy 0.0.14 → 0.0.15
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.markdown +5 -0
- data/README.markdown +0 -3
- data/lib/railsless-deploy.rb +0 -10
- metadata +1 -1
data/CHANGELOG.markdown
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Lee Hambley's Railsless Deploy
|
2
2
|
|
3
|
+
## 0.0.15 - July 7th 2009
|
4
|
+
|
5
|
+
* Removed `require 'yaml'` as we don't use it
|
6
|
+
* Removed the tasks (which contained only deprecation warnings) from deploy:start, deploy:stop and deploy:restart.
|
7
|
+
|
3
8
|
## 0.0.14 - July 7th 2009
|
4
9
|
|
5
10
|
* Added dates to changelog.
|
data/README.markdown
CHANGED
@@ -33,12 +33,9 @@ If you want to try before you buy, here's the list of tasks included with this v
|
|
33
33
|
cap deploy:cold # Deploys and starts a `cold' application.
|
34
34
|
cap deploy:pending # Displays the commits since your last deploy.
|
35
35
|
cap deploy:pending:diff # Displays the `diff' since your last deploy.
|
36
|
-
cap deploy:restart # restart is deprecated.
|
37
36
|
cap deploy:rollback # Rolls back to a previous version and restarts.
|
38
37
|
cap deploy:rollback:code # Rolls back to the previously deployed version.
|
39
38
|
cap deploy:setup # Prepares one or more servers for deployment.
|
40
|
-
cap deploy:start # start is deprecated.
|
41
|
-
cap deploy:stop # stop is deprecated.
|
42
39
|
cap deploy:symlink # Updates the symlink to the most recently deployed ...
|
43
40
|
cap deploy:update # Copies your project and updates the symlink.
|
44
41
|
cap deploy:update_code # Copies your project to the remote servers.
|
data/lib/railsless-deploy.rb
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
Capistrano::Configuration.instance(:must_exist).load do
|
2
2
|
|
3
|
-
require 'yaml'
|
4
3
|
require 'capistrano/recipes/deploy/scm'
|
5
4
|
require 'capistrano/recipes/deploy/strategy'
|
6
5
|
|
@@ -156,15 +155,6 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
156
155
|
# restart
|
157
156
|
end
|
158
157
|
|
159
|
-
[:start, :stop, :restart].each do |deprecated_task|
|
160
|
-
desc "#{deprecated_task.to_s} is deprecated. Please see "
|
161
|
-
task deprecated_task do
|
162
|
-
|
163
|
-
end
|
164
|
-
end
|
165
|
-
|
166
|
-
|
167
|
-
|
168
158
|
desc <<-DESC
|
169
159
|
Prepares one or more servers for deployment. Before you can use any \
|
170
160
|
of the Capistrano deployment tasks with your project, you will need to \
|