ssh_key_switcher 1.0.1 → 1.0.2
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 +17 -1
- data/bin/sks +1 -1
- data/lib/ssh_key_switcher/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c4e430fedd3b88c306adc11aed32f2c3f6cbbf13599fc5a71c9b27d43c913e7
|
4
|
+
data.tar.gz: 866ea4963674b4266afa0686f642ff52d564d27b9067d24fa52db0922d7702ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 289a5cb9d9e21b2566ff6b302fc6a8f204cee42879e162d52dcff799089ac864277ef763ac7eea6ee7f433a41d5205ab3485655b26878d5627513b631daeb2d0
|
7
|
+
data.tar.gz: 9802b57d0a61019a169bfd98719cb596c96a60f8607197c1a97aa56b6a60937516cd000d31d39d9d97499d31a866481e44b82eee363f3b7f9c48981a1f741149
|
data/README.md
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
|
3
3
|
A simple and efficient Ruby gem for managing and switching between OpenSSH keys seamlessly
|
4
4
|
|
5
|
+

|
6
|
+
|
7
|
+
|
5
8
|
## Installation
|
6
9
|
|
7
10
|
Add this line to your application's Gemfile:
|
@@ -81,7 +84,7 @@ Interactive prompt to remove an OpenSSH key from the list of managed keys.
|
|
81
84
|
|
82
85
|
## Contributing
|
83
86
|
|
84
|
-
Bug reports and pull requests are welcome on GitHub at [SSH Key Switcher](https://github.com/TOMOSIA-VIETNAM/ssh_key_switcher).
|
87
|
+
Bug reports and pull requests are welcome on GitHub at [SSH Key Switcher](https://github.com/TOMOSIA-VIETNAM/ssh_key_switcher/issues).
|
85
88
|
|
86
89
|
## License
|
87
90
|
|
@@ -92,3 +95,16 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
92
95
|
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
93
96
|
|
94
97
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
98
|
+
|
99
|
+
|
100
|
+
## Contributor
|
101
|
+
|
102
|
+
**Minh Tang Q. <minh.tang@tomosia.com>**
|
103
|
+
|
104
|
+
## About [TOMOSIA VIET NAM CO., LTD](https://www.tomosia.com/)
|
105
|
+
|
106
|
+
A company that creates new value together with customers and lights the light of happiness
|
107
|
+
|
108
|
+
【一緒に】【ハッピー】【ライトアップ】
|
109
|
+
|
110
|
+
お客様と共に新たな価値を生み出し幸せの明かりを灯す会社、トモシア
|
data/bin/sks
CHANGED