django-recipes 0.0.1 → 0.0.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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
@@ -1,4 +1,4 @@
1
- require 'capistrano'
2
1
  require 'helpers'
2
+ require 'capistrano'
3
3
 
4
4
  Dir.glob("#{File.dirname(__FILE__)}/recipes/**/*.rb").each { |file| load file }
data/readme.markdown CHANGED
@@ -14,8 +14,9 @@ Django Recipes is a set of capistrano recipes created to automate deployment of
14
14
  deploy:reload # Reloads apache
15
15
  deploy:syncdb # Run django syncdb
16
16
  deploy:vhost # Creates a vhost for your application and uploads it
17
- web:disable # Disable the website
18
- web:enable # Enables the website
17
+ deploy:web:disable # Disable the website
18
+ deploy:web:enable # Enables the website
19
+ django:run # runs a command from manage.py
19
20
 
20
21
  # How it Works
21
22
  Capistrano uses ssh to connect to your server and create a directory structure. It uses this directory structure:
@@ -37,7 +38,7 @@ Before you deploy your app, your server needs to be running apache and mod_pytho
37
38
  * top level media directory
38
39
  * ruby & rubygems installed
39
40
 
40
- # Setuping on Your Capfile
41
+ # Setting on Your Capfile
41
42
  Lets take an example application and the associated config file.
42
43
 
43
44
  ## Application Structure
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: django-recipes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Hawkins