capistrano-offroad 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -14,7 +14,8 @@ Capistrano::Configuration.instance(:must_exist).load do
14
14
 
15
15
  def django_manage(cmd, options={})
16
16
  path = options.delete(:path) || "#{latest_release}"
17
- run "cd #{path}/#{django_project_subdirectory}; #{python} manage.py #{cmd}", options
17
+ manage_py = fetch(:django_manage_py, "#{python} manage.py")
18
+ run "cd #{path}/#{django_project_subdirectory}; #{manage_py} #{cmd}", options
18
19
  end
19
20
 
20
21
  namespace :django do
@@ -2,7 +2,7 @@ module CapistranoOffroad
2
2
  module VERSION
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 2
5
+ TINY = 3
6
6
  STRING = [MAJOR, MINOR, TINY].join('.')
7
7
 
8
8
  def VERSION.require_version(major, minor=0, tiny=0)
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-offroad
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 29
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 2
10
- version: 0.1.2
9
+ - 3
10
+ version: 0.1.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Maciej Pasternacki
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-04-19 00:00:00 +02:00
18
+ date: 2011-04-26 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency