deprec-core 3.1.4 → 3.1.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  deprec-core changelog
2
2
  =====================
3
3
 
4
- = 3.1.4 (Jul 17, 2011)
4
+ = 3.1.5 (Jul 17, 2011)
5
5
 
6
6
  * Extracted the guts of deprec into this gem
7
7
 
@@ -72,6 +72,17 @@ Capistrano::Configuration.instance(:must_exist).load do
72
72
 
73
73
  _cset :backup_dir, '/var/backups'
74
74
 
75
+ # XXX We *probably* want these set
76
+ # Must be set for the password prompt from git to work
77
+ # default_run_options[:pty] = true
78
+ # ssh_options[:forward_agent] = true
79
+
80
+ # SCM
81
+ _cset :scm, "git"
82
+ _cset :user, "deploy"
83
+ _cset :deploy_via, :remote_cache
84
+ _cset :branch, "master"
85
+
75
86
  # XXX rails deploy stuff
76
87
  _cset :apps_root, '/srv' # parent dir for apps
77
88
  _cset(:deploy_to) { File.join(apps_root, application) } # dir for current app
@@ -80,7 +91,6 @@ Capistrano::Configuration.instance(:must_exist).load do
80
91
 
81
92
  # XXX more rails deploy stuff?
82
93
 
83
- _cset :user, ENV['USER'] # user who is deploying
84
94
  _cset :group, 'deploy' # deployment group
85
95
  _cset(:group_src) { group } # group ownership for src dir
86
96
  _cset :src_dir, '/usr/local/src' # 3rd party src on servers lives here
@@ -1,5 +1,5 @@
1
1
  module Deprec
2
2
  module Core
3
- VERSION = "3.1.4"
3
+ VERSION = "3.1.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: deprec-core
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 3.1.4
5
+ version: 3.1.5
6
6
  platform: ruby
7
7
  authors:
8
8
  - Mike Bailey