simple_provision 0.99.2 → 0.99.4

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3b9054da4fdd261531b7c333a4e58768defe18e5
4
- data.tar.gz: 4d15973d1f36b144cfa1be8df14b1fc447068e45
3
+ metadata.gz: 70f9a80a35531d55dc4fb6bfa5f89fbe88b8865e
4
+ data.tar.gz: d16aa39d8d2edb3dfb0645aa966cfdc84f697a43
5
5
  SHA512:
6
- metadata.gz: aa8c47134f34cce7813461ac5c768abd708382b9717ef6e8c503f72727cf4ecdd59dfa4c13d06b0ca48a6198475ce975804ac66c54fdc6dd66acdf20df86d84f
7
- data.tar.gz: bb5e2fe6f4428809a95a0a57c399a029af5851126375ebcd623ad474e5c59b317ae6315e392539cd8e947b3d1180e52dfad7fd43f0f31efce19f271d09ab4dfa
6
+ metadata.gz: 49d61798c9fea32e91d7f4fdff75d33abd5926421a1276a36cf440da70e41175ecb27bb251b345804466393a39a5211949418e39cac47f3b26820898a6cea588
7
+ data.tar.gz: a0fccdb9672d90b9b22d3ba2b17f8c9c135d8be180e4b8f89011a85a51c04f55ea0a9b6558b78d613f58cf8f1a67fa5cc59586e8479923691a0e555660eaa7fa
data/README.md CHANGED
@@ -1,10 +1,17 @@
1
1
  # Introduction
2
2
  This is based on the work that brandonhilkert initally carried to automate
3
- EC2 deployment with YAML and SHELL script. It tries to bring the good spirit: SIMPLE,
4
- and JUST WORK to the world of Digital Ocean. So you own a Digital Ocean?
3
+ EC2 instance provision with YAML and SHELL script. It tries to bring the good spirit: SIMPLE, and JUST WORK to the world of Digital Ocean.
5
4
 
6
- If you have suffer days of headache with Chef and Puppet, time for a new
7
- simple way of provision. Let's rock.
5
+ If you own a Digital Ocean, here is my advice: Chef and Puppet is shitty
6
+ thing that just create more problems than it solves. It will take you
7
+ days even weeks just to get familar and put things in the right order.
8
+
9
+ With simple_provision, you get your hand dirty in a few minutes and
10
+ we have the working provision profile in just half an hour. From that
11
+ moment, provision another instance is just the matter of kicking off
12
+ a command from the terminal.
13
+
14
+ Let's rock.
8
15
 
9
16
  ### Recipes repo
10
17
 
data/lib/ext/fog.rb CHANGED
@@ -50,12 +50,3 @@ class Fog::SSH::Real
50
50
  results
51
51
  end
52
52
  end
53
-
54
- require "fog/digitalocean/models/compute/server"
55
-
56
- # Monkey patch Digital Ocean to properly return public_ip_address to used in scp
57
- Fog::Compute::DigitalOcean::Server.class_eval do
58
- def public_ip_address
59
- ip_address
60
- end
61
- end
@@ -1,3 +1,3 @@
1
1
  module SimpleProvision
2
- VERSION = "0.99.2"
2
+ VERSION = "0.99.4"
3
3
  end
@@ -21,5 +21,5 @@ Gem::Specification.new do |spec|
21
21
  spec.add_development_dependency "bundler", "~> 1.3"
22
22
  spec.add_development_dependency "rake"
23
23
 
24
- spec.add_dependency "fog", "~> 1.14.0"
24
+ spec.add_dependency "fog", ">= 1.21.0"
25
25
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_provision
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.99.2
4
+ version: 0.99.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Phuong Gia Su
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-05-08 00:00:00.000000000 Z
12
+ date: 2014-05-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -43,16 +43,16 @@ dependencies:
43
43
  name: fog
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
- - - ~>
46
+ - - '>='
47
47
  - !ruby/object:Gem::Version
48
- version: 1.14.0
48
+ version: 1.21.0
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - ~>
53
+ - - '>='
54
54
  - !ruby/object:Gem::Version
55
- version: 1.14.0
55
+ version: 1.21.0
56
56
  description: The easiest, most common sense server provision tool.
57
57
  email:
58
58
  - phuongnd08@gmail.com