homeseed 0.0.16 → 0.0.17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e4e2162e7ab5ff24a5c7ec699b97b85146e13157
4
- data.tar.gz: 974de6e59cd38fdb4be2c386d0a3503369486ea8
3
+ metadata.gz: c42d84e3616d46ac36b1f9010cfb269e50ada6a7
4
+ data.tar.gz: 27adea710084cbacc03b0a6d8cdd69a6d4ae3a62
5
5
  SHA512:
6
- metadata.gz: 8ad123e26a1ca61a73e857b77596381aadd50e8db8618a40cf37daa731391396680203b555f27571e53bcf824cdb31862d256dcd68334ecee9726a11ad5199d9
7
- data.tar.gz: 5659bc5ab5dfb8d30faf645941ce19791378d8fac877c00cfb1d3a7a8e65e0b1ee526ee36539d8be3f86efe7bebca951954c3afcb2289953523d71558fa2b144
6
+ metadata.gz: c02c2134dc1427b68c396b476a65e3551b48133c9720a4e658d84b4edeff92154eea72d31cbce89257648e8a567a8b1846195a4568922655d60c0352b44bafc9
7
+ data.tar.gz: 2c11f8685c99e06e32c466634676709aae528ac19c277860e987bf3b46858db327542b9954f9a70a2fba570cf93d3f0871c2383a2b6ca80d0a509c87559bb869
data/README.md CHANGED
@@ -26,7 +26,7 @@ Commands:
26
26
  homeseed exec [-e <command> or -f <files>] [-u <user>] [-p <has_password>] -s, --servers=SERVERS # executes bash login session(s) on remote servers to run inline bash commands or bash ...
27
27
  homeseed help [COMMAND] # Describe available commands or one specific command
28
28
  homeseed plant [-u <user>] [-p <has_password>] [-c <clean>] [--url <url>] -s, --servers=SERVERS # installs homeshick and then dot profile based on localhost $HOME/.homeseed.yml or url...
29
- homeseed update [-u <user>] [-p <has_password>] [--url <url>] -s, --servers=SERVERS # updates dot profile based on localhost $HOME/.homeup.yml or url with yml commands
29
+ homeseed update [-u <user>] [-p <has_password>] [--url <url>] -s, --servers=SERVERS # updates dot profile based on localhost $HOME/.homeseed.yml or url with yml commands
30
30
  homeseed upload [-f <upload_files>] [-r <remote_path>] [-u <user>] [-p <has_password>] -s, --servers=SERVERS # scp uploads file(s) to remote servers
31
31
  ```
32
32
 
@@ -30,7 +30,7 @@ module Homeseed
30
30
  end
31
31
 
32
32
  desc 'plant [-u <user>] [-p <has_password>] [-c <clean>] [--url <url>]',
33
- 'installs homeshick and then dot profile based on localhost $HOME/.homeseed.yml or url with yml commands'
33
+ 'installs homeshick and then dot profile based on localhost $HOME/.homeseed.yml or compatible url'
34
34
  method_option :servers, required: true, aliases: '-s', desc: 'ssh hostname(s) or localhost; csv if multiple'
35
35
  method_option :user, aliases: '-u', desc: 'ssh username', default: ENV['USER']
36
36
  method_option :has_password, aliases: '-p', type: :boolean, default: false, desc: 'connection uses password; no ssh keys'
@@ -42,11 +42,11 @@ module Homeseed
42
42
  end
43
43
 
44
44
  desc 'update [-u <user>] [-p <has_password>] [--url <url>]',
45
- 'updates dot profile based on localhost $HOME/.homeup.yml or url with yml commands'
45
+ 'updates dot profile based on localhost $HOME/.homeseed.yml or compatible url'
46
46
  method_option :servers, required: true, aliases: '-s', desc: 'ssh hostname(s); csv if multiple'
47
47
  method_option :user, aliases: '-u', desc: 'ssh username', default: ENV['USER']
48
48
  method_option :has_password, aliases: '-p', type: :boolean, default: false, desc: 'connection uses password; no ssh keys'
49
- method_option :url, desc: "url to use vs file default: #{ENV['HOME']}/.homeup.yml"
49
+ method_option :url, desc: "url to use vs file default: #{ENV['HOME']}/.homeseed.yml"
50
50
  def update
51
51
  homeshick = Homeseed::Homeshick.new options
52
52
  homeshick.update options
@@ -1,3 +1,3 @@
1
1
  module Homeseed
2
- VERSION = "0.0.16"
2
+ VERSION = "0.0.17"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: homeseed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.16
4
+ version: 0.0.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - rbuchss