colonize 0.2.0 → 0.2.1
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 +4 -4
- data/README.md +3 -0
- data/colonize.gemspec +14 -4
- data/colonize.iml +1 -0
- data/lib/colonize/__version.rb +3 -3
- data/lib/colonize/cli/settle.rb +1 -1
- data/lib/colonize/version.rb +9 -0
- metadata +23 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8465feb038321d927dd2e6f42d1a5126d35e42dc
|
4
|
+
data.tar.gz: 55ec318a9c6987b50f0289434afcc891e09b2e9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d25a72185b5e5ce42f7cebeef0f8a3805813a2e32322afd12d1eae27f2228cf16b85970810ff8605c819ee90277313fab6c3d063356176cc0864ecab7c66d180
|
7
|
+
data.tar.gz: 0fca5011a4a363baab1c4804cf4c205dab5cf43940c5066f7104f80ef051316e19572c6968e93b8ed18c6a59982437823e6d62de0e70a8aacca7a1593b732829
|
data/README.md
CHANGED
@@ -9,6 +9,9 @@ Colonize is written in Ruby and uses a Ruby-typical configuration file simply
|
|
9
9
|
because Vagrant already is using Ruby and I think it uneccessary for anyone to
|
10
10
|
have to learn another language onöy to configure a simple virtual machine.
|
11
11
|
|
12
|
+
Colonize currently is WIP. It's not documented very much, nor are there many
|
13
|
+
services implemented.
|
14
|
+
|
12
15
|
## Installation
|
13
16
|
|
14
17
|
Add this line to your application's Gemfile:
|
data/colonize.gemspec
CHANGED
@@ -31,8 +31,18 @@ Gem::Specification.new do |spec|
|
|
31
31
|
spec.authors = ['Jan Oetjen']
|
32
32
|
spec.email = ['oetjenj@gmail.com']
|
33
33
|
spec.summary = %q{A simple provisioning system for Vagrant.}
|
34
|
-
spec.description
|
35
|
-
|
34
|
+
spec.description = %q{Colonize is a simple provisioning tool for Vagrant.
|
35
|
+
Since shell scripts can get difficult and Colonizeing systems like Puppet, Chef
|
36
|
+
and/or Ansible can be too much for simple projects. I decided to write Colonize
|
37
|
+
to cover the middleground.
|
38
|
+
|
39
|
+
Colonize is written in Ruby and uses a Ruby-typical configuration file simply
|
40
|
+
because Vagrant already is using Ruby and I think it uneccessary for anyone to
|
41
|
+
have to learn another language only to configure a simple virtual machine.
|
42
|
+
|
43
|
+
Colonize currently is WIP. It's not documented very much, nor are there many
|
44
|
+
services implemented.}
|
45
|
+
spec.homepage = 'http://joetjen.github.io/colonize/'
|
36
46
|
spec.license = 'MIT'
|
37
47
|
|
38
48
|
spec.files = `git ls-files -z`.split("\x0")
|
@@ -41,6 +51,6 @@ Gem::Specification.new do |spec|
|
|
41
51
|
spec.require_paths = ['lib']
|
42
52
|
|
43
53
|
spec.add_development_dependency 'bundler', '~> 1.5'
|
44
|
-
spec.add_development_dependency 'net-ssh'
|
45
|
-
spec.add_development_dependency 'quickl'
|
54
|
+
spec.add_development_dependency 'net-ssh', '~> 2.8'
|
55
|
+
spec.add_development_dependency 'quickl', '~> 0.4'
|
46
56
|
end
|
data/colonize.iml
CHANGED
@@ -15,6 +15,7 @@
|
|
15
15
|
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
|
16
16
|
<sourceFolder url="file://$MODULE_DIR$/bin" isTestSource="false" />
|
17
17
|
<sourceFolder url="file://$MODULE_DIR$/lib" isTestSource="false" />
|
18
|
+
<sourceFolder url="file://$MODULE_DIR$/colonize" type="java-resource" />
|
18
19
|
</content>
|
19
20
|
<orderEntry type="inheritedJdk" />
|
20
21
|
<orderEntry type="sourceFolder" forTests="false" />
|
data/lib/colonize/__version.rb
CHANGED
@@ -20,12 +20,12 @@
|
|
20
20
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
21
21
|
|
22
22
|
module Colonize
|
23
|
-
VERSION = '0.2.
|
23
|
+
VERSION = '0.2.1'.freeze
|
24
24
|
|
25
25
|
module Version # :nodoc: all
|
26
|
-
MAJOR, MINOR, BUILD
|
26
|
+
MAJOR, MINOR, BUILD = Colonize::VERSION.split '.'
|
27
27
|
|
28
|
-
NUMBERS = [MAJOR, MINOR, BUILD
|
28
|
+
NUMBERS = [MAJOR, MINOR, BUILD]
|
29
29
|
end
|
30
30
|
|
31
31
|
end
|
data/lib/colonize/cli/settle.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: colonize
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Oetjen
|
@@ -28,31 +28,42 @@ dependencies:
|
|
28
28
|
name: net-ssh
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ~>
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '2.8'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - ~>
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '2.8'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: quickl
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - ~>
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
47
|
+
version: '0.4'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - ~>
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
|
-
description:
|
54
|
+
version: '0.4'
|
55
|
+
description: |-
|
56
|
+
Colonize is a simple provisioning tool for Vagrant.
|
57
|
+
Since shell scripts can get difficult and Colonizeing systems like Puppet, Chef
|
58
|
+
and/or Ansible can be too much for simple projects. I decided to write Colonize
|
59
|
+
to cover the middleground.
|
60
|
+
|
61
|
+
Colonize is written in Ruby and uses a Ruby-typical configuration file simply
|
62
|
+
because Vagrant already is using Ruby and I think it uneccessary for anyone to
|
63
|
+
have to learn another language only to configure a simple virtual machine.
|
64
|
+
|
65
|
+
Colonize currently is WIP. It's not documented very much, nor are there many
|
66
|
+
services implemented.
|
56
67
|
email:
|
57
68
|
- oetjenj@gmail.com
|
58
69
|
executables:
|
@@ -91,7 +102,8 @@ files:
|
|
91
102
|
- lib/colonize/service/mysql.rb
|
92
103
|
- lib/colonize/service/nginx.rb
|
93
104
|
- lib/colonize/tools.rb
|
94
|
-
|
105
|
+
- lib/colonize/version.rb
|
106
|
+
homepage: http://joetjen.github.io/colonize/
|
95
107
|
licenses:
|
96
108
|
- MIT
|
97
109
|
metadata: {}
|