edploy 2.0.1 → 2.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/TODO.TXT CHANGED
@@ -1,17 +1,8 @@
1
- - minimal_output integrated with hooks like deploy hooks, but then for output
2
- - heroku style output
3
- - mailer (mailing of notifications; mailing of actual deploy output)
4
-
5
- --
6
-
7
- - add bundle_path and bundle_without to deploy.yml + configuration questions
8
- - make prepare tasks standard part of deploygen, turn it on/off in deploy.yml
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
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "edploy"
6
- s.version = "2.0.1"
6
+ s.version = "2.0.2"
7
7
  s.authors = ["Ewout Vonk"]
8
8
  s.email = ["dev@ewout.to"]
9
9
  s.homepage = "https://github.com/ewoutvonk/edploy"
@@ -6,9 +6,9 @@ end
6
6
 
7
7
  set :rails_root, Dir.getwd
8
8
 
9
- require 'Syck'
9
+ require 'YAML'
10
10
 
11
- Syck.load_file(File.join(rails_root, 'config', 'edploy', 'edploy.yml')).each do |key, value|
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 'syck'
9
+ require 'YAML'
10
10
 
11
- Syck.load_file(File.join(RAILS_ROOT, 'config', 'edploy', 'edploy.yml')).each do |key, value|
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.1
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-02-11 00:00:00.000000000Z
12
+ date: 2012-09-14 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capistrano
16
- requirement: &70243797042740 !ruby/object:Gem::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: *70243797042740
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