inprovise 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YTllYTMyMWNhN2ViNTk2YWQ1M2ZlYWUxNDA1ZWJhNjYxMDhiNmE1OQ==
4
+ M2I3MjliY2U3MTAzZDM4NzA2ZTRmZmVmOGQ0ZmUxZTNkMzA5NmYyOA==
5
5
  data.tar.gz: !binary |-
6
- YTJkNjFhNjkxODU5ZGU1MDE5YmRlNWU5OGQxYzE0Y2RkNzU0ZjVhZQ==
6
+ ODQyNTljNDc5YzVhMDFlNDdhYWU1YWMyYzdiNjVlZDY3M2NiMTMyMA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZGFmYzI0MGUwYWIyODY3NzM3MDNkNjI1NjQzZTVlNDZhZDViMzAwOTM1ZWFh
10
- MGNlYWE4YTU5ZDc2ZjA2YzA4ODA2ZTk1Mjk2OTQ2MmY3ZDUxZmU2OTZkNjk5
11
- YzQ4ZjRhYmQ2ODFlNDFmY2RkMzVjMDI4ZThjYTgyOTk4M2M4NDg=
9
+ N2UyMGU2ZmY0ZjQzNTkwZmNkMjhjNTY1YTI4ZmI2OGFhNzkyNTQ4MjEwMWQy
10
+ YWU0YjNhOTliMjE4YzU0Y2ViNTE4MWUyNjFkNzE0MGQyMWUzNDQxNDJmMjQ1
11
+ NGNiYzJjZjg1NjE0NmI5YmM4ZjY3ZGFjMjBhYTc4ZDUyOWRhNzU=
12
12
  data.tar.gz: !binary |-
13
- ZGU3M2M4NzY2OGJlMmY3NGFiOTJmZGVjOWY3YTE0MTQ4YjZmZWUxNGQ5OWEx
14
- MzU4MWRiZDE3YWY2NDdjY2U2MzViNWU2NWE1MjYxYzcxOTYwN2ExYTA1NTFi
15
- ZmVmYmEyMWY2Yjk0ZmIwNmJlZTBmNDBhZDNhZmVlNDY3M2UzOTA=
13
+ NjM3YjZlYmYxY2JjZTYwZDRjN2JmY2I4Y2QwYTNkZDcwZTRjYmMzZTQyMjFi
14
+ NzJhNGZkNjc2NzE3ZTcxZWRjZTE5ZWM3ODVjMjU4Mzg3MDAzNDU2ODZlOTgy
15
+ ZDZlZTgzMzRhNTU5MjQ1YTc0ZmRhMGJiMTg1NGUyMjkyZjhlZjE=
data/README.md CHANGED
@@ -9,6 +9,7 @@ Inprovise (Intuitive Provisioning Environment) is a super simple way to provisio
9
9
  [![Build Status](https://travis-ci.org/mcorino/Inprovise.png)](https://travis-ci.org/mcorino/Inprovise)
10
10
  [![Code Climate](https://codeclimate.com/github/mcorino/Inprovise/badges/gpa.png)](https://codeclimate.com/github/mcorino/Inprovise)
11
11
  [![Test Coverage](https://codeclimate.com/github/mcorino/Inprovise/badges/coverage.png)](https://codeclimate.com/github/mcorino/Inprovise/coverage)
12
+ [![Gem Version](https://badge.fury.io/rb/inprovise.png)](https://badge.fury.io/rb/inprovise)
12
13
 
13
14
  If you've found yourself stuck in the gap between deployment tools like Capistrano and full blown infrastructure tools like Puppet and Chef then Inprovise might be a good fit for you.
14
15
  This is especially the case if you choose to cycle machines and prefer baking from scratch when changes are required rather than attempting to converge system state
data/inprovise.gemspec CHANGED
@@ -5,7 +5,8 @@ Gem::Specification.new do |gem|
5
5
  gem.email = ["mcorino@remedy.nl"]
6
6
  gem.description = %q{InProvisE is Intuitive Provisioning Environment}
7
7
  gem.summary = %q{Simple, easy and intuitive infrastructure provisioning}
8
- gem.homepage = ""
8
+ gem.homepage = "https://github.com/mcorino/Inprovise"
9
+ gem.license = 'MIT'
9
10
 
10
11
  gem.files = `git ls-files`.split($\)
11
12
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
@@ -13,10 +14,10 @@ Gem::Specification.new do |gem|
13
14
  gem.name = "inprovise"
14
15
  gem.require_paths = ["lib"]
15
16
  gem.version = Inprovise::VERSION
16
- gem.add_dependency('colored')
17
- gem.add_dependency('net-ssh')
18
- gem.add_dependency('net-sftp')
19
- gem.add_dependency('gli')
20
- gem.add_dependency('tilt')
17
+ gem.add_dependency('colored', '~> 1.2')
18
+ gem.add_dependency('net-ssh', '~> 3.2')
19
+ gem.add_dependency('net-sftp', '~> 2.1')
20
+ gem.add_dependency('gli', '~> 2.14')
21
+ gem.add_dependency('tilt', '~> 2.0')
21
22
  gem.post_install_message = ''
22
23
  end
@@ -5,6 +5,6 @@
5
5
 
6
6
  module Inprovise
7
7
 
8
- VERSION = '0.2.2'
8
+ VERSION = '0.2.3'
9
9
 
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inprovise
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Corino
@@ -14,72 +14,72 @@ dependencies:
14
14
  name: colored
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ! '>='
17
+ - - ~>
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: '1.2'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ! '>='
24
+ - - ~>
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: '1.2'
27
27
  - !ruby/object:Gem::Dependency
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: '0'
33
+ version: '3.2'
34
34
  type: :runtime
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: '0'
40
+ version: '3.2'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: net-sftp
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ! '>='
45
+ - - ~>
46
46
  - !ruby/object:Gem::Version
47
- version: '0'
47
+ version: '2.1'
48
48
  type: :runtime
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'
54
+ version: '2.1'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: gli
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ! '>='
59
+ - - ~>
60
60
  - !ruby/object:Gem::Version
61
- version: '0'
61
+ version: '2.14'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ! '>='
66
+ - - ~>
67
67
  - !ruby/object:Gem::Version
68
- version: '0'
68
+ version: '2.14'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: tilt
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ! '>='
73
+ - - ~>
74
74
  - !ruby/object:Gem::Version
75
- version: '0'
75
+ version: '2.0'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ! '>='
80
+ - - ~>
81
81
  - !ruby/object:Gem::Version
82
- version: '0'
82
+ version: '2.0'
83
83
  description: InProvisE is Intuitive Provisioning Environment
84
84
  email:
85
85
  - mcorino@remedy.nl
@@ -142,8 +142,9 @@ files:
142
142
  - test/script_index_test.rb
143
143
  - test/script_test.rb
144
144
  - test/test_helper.rb
145
- homepage: ''
146
- licenses: []
145
+ homepage: https://github.com/mcorino/Inprovise
146
+ licenses:
147
+ - MIT
147
148
  metadata: {}
148
149
  post_install_message: ''
149
150
  rdoc_options: []