sshyguy 0.1.7 → 0.1.8

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: e0389d10a6bc06f9e3ecbcf0309c84bdd72520c3
4
- data.tar.gz: 43aaa3e3a71cbdeceac6187f3b148ae1b63ca470
3
+ metadata.gz: ab726774eee330a57bc7f07ac2d1d785b1ed3027
4
+ data.tar.gz: 3c9bafd88a44e3175f8863b34672bdf3dc001466
5
5
  SHA512:
6
- metadata.gz: 116aecc4f0942259a02c90f3200909f620f99a7c6e6daa3b01d7642db1e3f95eea1898927e913460e29a977ae11bf18f57225a15e81b9b7628c19c2750c98992
7
- data.tar.gz: bcc3839e4b05f44bc175ebb025d3255d5ad6f1fc4468be1f2c3de07fc8c095f2a7aee6a5c70a1f1f3a0d465bd70cf2a14d59cd9ab233d70d809cb2a9e2becb54
6
+ metadata.gz: 350f993d63e65c6424812805ec277ecd929070a7c753d4ca10b82c3afccc772d744032c5341cd539d2f91450e87a1ef1858efd5190968516c78e4c12cd33e7c5
7
+ data.tar.gz: c5b92fcd005da992ba5e7f2927d0f033493412ff505fb9be88b8f045bc2493fb361d91811eebb1ef6973301945845fd0da427d4b60893dc3350f92cc65a4ab20
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2019 Josh Brody
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -50,4 +50,4 @@ And then it will spawn an SSH connection so you can screw up production.
50
50
 
51
51
  You can also get into Staging Database with just one line:
52
52
 
53
- $ sshyguy -s staging-dbs
53
+ $ sshyguy -s staging-db
data/bin/release CHANGED
@@ -9,3 +9,5 @@ system("gem push sshyguy-#{version}.gem")
9
9
  system("rm sshyguy-#{version}.gem")
10
10
  system("git tag -a v#{version} -m 'version #{version}'")
11
11
  system("git push origin v#{version}")
12
+ system("git commit -am 'Version #{version}'")
13
+ system("git push")
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SshyGuy
4
- VERSION = '0.1.7'
4
+ VERSION = '0.1.8'
5
5
  CONFIG_VERSION = 1
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sshyguy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Brody
@@ -63,6 +63,7 @@ files:
63
63
  - ".gitignore"
64
64
  - Gemfile
65
65
  - Gemfile.lock
66
+ - MIT-LICENSE
66
67
  - README.md
67
68
  - Rakefile
68
69
  - bin/console