handyman 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/handyman.rb +3 -3
- data/lib/handyman/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3826c26e6c8a151bfcebddd3ec824e9aa68f89db
|
4
|
+
data.tar.gz: 17e3c14df60c1a837551feb9cb648e0969f7bbe0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fddda9705b2ee86595b802d3ea7c17a863e969350eca2a47cc65fe703cf2557b461dd79a4b47d2bdbd635ec1b2fa91aa774ba7e9eb747494a573aa0714c8985c
|
7
|
+
data.tar.gz: 343a25e4869aae2fc8cc7cf5e695aa4e5ab927c1e5923a9aace4077bffb21392ccd74f950c9c9a14022f2f4062f1e05b89ad7cb3701bcbecb98a48d12865cbb6
|
data/lib/handyman.rb
CHANGED
@@ -6,9 +6,9 @@ module Handyman
|
|
6
6
|
class << self
|
7
7
|
|
8
8
|
# Build the instruction set to execute on the remote box
|
9
|
-
def make(blueprint, host
|
10
|
-
user
|
11
|
-
password
|
9
|
+
def make(blueprint, host)
|
10
|
+
user = ask("Username: "){ |q| q.echo = true }
|
11
|
+
password = ask("Password: "){ |q| q.echo = "*" }
|
12
12
|
|
13
13
|
blueprint = Blueprint.new(host, user, password)
|
14
14
|
blueprint.build
|
data/lib/handyman/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: handyman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Weaver
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-10-
|
11
|
+
date: 2013-10-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|