lita-rotp 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -4
  3. data/lib/lita-rotp/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3e5387dc8524149b9b612b9220445db748f77698
4
- data.tar.gz: 2262e56347f47d53144a9382ca88a6daeb3fb770
3
+ metadata.gz: 7b70ef9cd2294326000da356a98418e5c6127f52
4
+ data.tar.gz: 535c175c923068a0080d5743f35fa280599a57c9
5
5
  SHA512:
6
- metadata.gz: 0b9124f25431db291cbb868c1581ea52c36545835f001ccf8360db9080ec28a0376a9a7c21dfcb539d0a83a6366e7358b7ee1bd7db21d1f7ab2901d5cfc6363b
7
- data.tar.gz: 74d5b4a26b288ea4abccbdda6cba8ef06750e580addabd8ee57396365d051a8a097308e3d9b7544d8bb6773314e8a2be0b6ad19d0647908774a003d0a2f32d3f
6
+ metadata.gz: 6b40f43b321db589d68e8b0d09c37bad67f3dc305fae88224fd776be217b672c4a7f7fad778072ef828694445d92186058350b29eb9f54a4d058a7bffb7b425b
7
+ data.tar.gz: 8d7eab027713992930dfc2001375a768413ece26bac2fdd77d23baeee36e9a169257f37f1e9b36921487333e844b80b732beb087717d7c840f01511295fe8eaa
data/README.md CHANGED
@@ -7,7 +7,16 @@ lita-rotp
7
7
 
8
8
  Copyright 2014 PagerDuty, Inc.
9
9
 
10
- Lita handler for TOTP & HOTP token generation; uses Ruby One-Time Password (ROTP) library
10
+ Lita handler for TOTP & HOTP token generation; uses Ruby One-Time Password (ROTP) library.
11
+
12
+ We use plenty of external services that require you to share a login while supporting two-factor authentication. There
13
+ are plenty of tools available to share passwords, but nothing great for sharing/generating TOTP tokens. This handler
14
+ was built so that you can store your shared account secrets in your Lita config and generate two-factor auth tokens
15
+ using Lita.
16
+
17
+ **NOTE:** The secrets you store in the configuration file should be treated as secret. No others should be able to see
18
+ them. Consider making the read permissions of your Lita configuration file very restrictive (so that only the user
19
+ running Lita should be able to see the contents)
11
20
 
12
21
  INSTALLATION
13
22
  ------------
@@ -21,9 +30,8 @@ gem 'lita-rotp', '~> 0.1'
21
30
  LICENSE
22
31
  -------
23
32
  **lita-rotp** is released under the
24
- [Apache License 2.0](http://opensource.org/licenses/Apache-2.0).
25
- The full text of the license can be found in the `LICENSE` file. The summary
26
- can be found [here](https://tldrlegal.com/license/apache-license-2.0-(apache-2.0)) courtesy
33
+ [Apache License 2.0](http://opensource.org/licenses/Apache-2.0). The full text of the license canbe found in the
34
+ `LICENSE` file. The summary can be found [here](https://tldrlegal.com/license/apache-license-2.0-(apache-2.0)) courtesy
27
35
  of tldrlegal.
28
36
 
29
37
  CONFIGURATION
@@ -23,5 +23,5 @@ module LitaROTP
23
23
  # lita-rotp version
24
24
  #
25
25
  # @author Tim Heckman <tim@pagerduty.com>
26
- VERSION = '0.1.0'
26
+ VERSION = '0.1.1'
27
27
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lita-rotp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Heckman