xendeploy 0.2 → 0.3

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.
@@ -0,0 +1,6 @@
1
+ require 'capistrano'
2
+ require 'deprec'
3
+
4
+ set :local_template_dir, File.join(File.dirname(__FILE__),'templates')
5
+
6
+ Capistrano.plugin :xendeploy, xendeploy
File without changes
File without changes
File without changes
File without changes
data/lib/xendeploy.rb CHANGED
@@ -2,4 +2,4 @@ unless Capistrano::Configuration.respond_to?(:instance)
2
2
  abort "xendeploy requires Capistrano 2"
3
3
  end
4
4
 
5
- require "#{File.dirname(__FILE__)}/recipes/xen"
5
+ require "#{File.dirname(__FILE__)}/xendeploy/deprec_extensions"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xendeploy
3
3
  version: !ruby/object:Gem::Version
4
- version: "0.2"
4
+ version: "0.3"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Marden
@@ -30,7 +30,7 @@ dependencies:
30
30
  requirements:
31
31
  - - ">"
32
32
  - !ruby/object:Gem::Version
33
- version: 2.1.0
33
+ version: 2.0.0
34
34
  version:
35
35
  description: |
36
36
  Building on the backs of Capistrano and Deprec, this is a collection of Recipes and other customizations for managing non-rails applications, specifically WordPress, WordPress-MU, and BuddyPress.
@@ -45,10 +45,11 @@ extra_rdoc_files: []
45
45
  files:
46
46
  - bin/xenify
47
47
  - docs/empty
48
- - lib/recipes/xen/build.rb
49
- - lib/recipes/xen/deploy.rb
50
- - lib/recipes/xen/server.rb
51
- - lib/recipes/xen.rb
48
+ - lib/xendeploy/deprec_extensions.rb
49
+ - lib/xendeploy/recipes/xen/build.rb
50
+ - lib/xendeploy/recipes/xen/deploy.rb
51
+ - lib/xendeploy/recipes/xen/server.rb
52
+ - lib/xendeploy/recipes/xen.rb
52
53
  - lib/xendeploy.rb
53
54
  - README.textile
54
55
  has_rdoc: true