edploy 2.0.1 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/TODO.TXT +8 -17
- data/edploy.gemspec +1 -1
- data/lib/edploy/environment_capistrano.rb +2 -2
- data/lib/edployscripts/environment_scripts.rb +2 -2
- metadata +4 -4
data/TODO.TXT
CHANGED
@@ -1,17 +1,8 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
--
|
11
|
-
|
12
|
-
- add configuration (enabling) of smart deploys
|
13
|
-
- extend dploy script to enable auto-detection of current stage (check current git branch, find stage which has that branch configured for deployment)
|
14
|
-
|
15
|
-
--
|
16
|
-
|
17
|
-
- add process launcher to system wide scripts, which outputs output line-by-line
|
1
|
+
* add bundle_path and bundle_without to deploy.yml + configuration questions
|
2
|
+
* make fast_remote_cache prepare tasks standard part of deploygen, turn it on/off in deploy.yml
|
3
|
+
* add configuration (enabling) of smart deploys
|
4
|
+
* extend dploy script to enable auto-detection of current stage (check current git branch, find stage which has that branch configured for deployment)
|
5
|
+
* add process launcher to system wide scripts, which outputs output line-by-line
|
6
|
+
* minimal_output integrated with hooks like deploy hooks, but then for output
|
7
|
+
* heroku style output
|
8
|
+
* mailer (mailing of notifications; mailing of actual deploy output)
|
data/edploy.gemspec
CHANGED
@@ -6,9 +6,9 @@ end
|
|
6
6
|
|
7
7
|
set :rails_root, Dir.getwd
|
8
8
|
|
9
|
-
require '
|
9
|
+
require 'YAML'
|
10
10
|
|
11
|
-
|
11
|
+
YAML.load_file(File.join(rails_root, 'config', 'edploy', 'edploy.yml')).each do |key, value|
|
12
12
|
if key.to_sym == :ssh_options
|
13
13
|
value.each do |ssh_option, value|
|
14
14
|
ssh_options[ssh_option.to_sym] = value
|
@@ -6,9 +6,9 @@ end
|
|
6
6
|
|
7
7
|
RAILS_ROOT = Dir.getwd
|
8
8
|
|
9
|
-
require '
|
9
|
+
require 'YAML'
|
10
10
|
|
11
|
-
|
11
|
+
YAML.load_file(File.join(RAILS_ROOT, 'config', 'edploy', 'edploy.yml')).each do |key, value|
|
12
12
|
self.class.const_set(key.to_sym.upcase, value)
|
13
13
|
end
|
14
14
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: edploy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-09-14 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: capistrano
|
16
|
-
requirement: &
|
16
|
+
requirement: &70216840062020 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70216840062020
|
25
25
|
description: A gem which allows for fast, easy and efficient deploys with capistrano
|
26
26
|
email:
|
27
27
|
- dev@ewout.to
|