marionetta 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -87,28 +87,6 @@ will now be available in your Rakefile.
87
87
 
88
88
  **Groups must have names if you want to generate rake tasks.**
89
89
 
90
- ## Using the debployer
91
-
92
- Also included is a .deb deploying manipulator. You can use
93
- this to deploy your application over SSH as a .deb.
94
-
95
- ``` ruby
96
- require 'marionetta'
97
-
98
- staging = Marionetta::Group.new(:staging)
99
-
100
- staging.add_server do |s|
101
- s[:hostname] = 'staging.example.com'
102
- s[:debployer] = {
103
- :deploy_from => '/my-app',
104
- :deploy_to => '/home/staging/www'
105
- :excludes => ['spec'],
106
- }
107
- end
108
-
109
- staging.manipulate_each_server(:debployer, :deploy)
110
- ```
111
-
112
90
  ## Author
113
91
 
114
92
  Luke Morton a.k.a. DrPheltRight
@@ -1,5 +1,5 @@
1
1
  module Marionetta
2
- VERSION = '0.1.5'
2
+ VERSION = '0.1.6'
3
3
  DESCRIPTION = 'For lightweight puppet mastery. Organise
4
4
  multiple machines via rsync and SSH rather
5
5
  than using puppet master'
@@ -1,12 +1,10 @@
1
1
  module Marionetta
2
2
  module Manipulators
3
- require_relative 'manipulators/debployer'
4
3
  require_relative 'manipulators/puppet_manipulator'
5
4
 
6
5
  def self.all()
7
6
  {
8
- :debployer => Debployer,
9
- :puppet => PuppetManipulator,
7
+ :puppet => PuppetManipulator,
10
8
  }
11
9
  end
12
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: marionetta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: