xendeploy 0.5.1 → 0.6

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/lib/xendeploy.rb CHANGED
@@ -2,4 +2,7 @@ unless Capistrano::Configuration.respond_to?(:instance)
2
2
  abort "xendeploy requires Capistrano 2"
3
3
  end
4
4
 
5
- require "#{File.dirname(__FILE__)}/xendeploy/deprec_extensions"
5
+ require "#{File.dirname(__FILE__)}/xendeploy/deprec_extensions"
6
+ require "#{File.dirname(__FILE__)}/xendeploy/build"
7
+ require "#{File.dirname(__FILE__)}/xendeploy/deploy"
8
+ require "#{File.dirname(__FILE__)}/xendeploy/server"
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.5.1
4
+ version: "0.6"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Marden
@@ -46,10 +46,9 @@ files:
46
46
  - bin/xenify
47
47
  - docs/empty
48
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
49
+ - lib/xendeploy/recipes/build.rb
50
+ - lib/xendeploy/recipes/deploy.rb
51
+ - lib/xendeploy/recipes/server.rb
53
52
  - lib/xendeploy.rb
54
53
  - README.textile
55
54
  has_rdoc: true
@@ -1,7 +0,0 @@
1
- unless Capistrano::Configuration.respond_to?(:instance)
2
- abort "xendeploy requires Capistrano 2"
3
- end
4
-
5
- require "#{File.dirname(__FILE__)}/xen/deploy"
6
- require "#{File.dirname(__FILE__)}/xen/server"
7
- require "#{File.dirname(__FILE__)}/xen/build"
File without changes
File without changes
File without changes