lita-pwm 0.1.0
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 +7 -0
- data/.gitignore +17 -0
- data/Gemfile +3 -0
- data/LICENSE +20 -0
- data/README.md +24 -0
- data/Rakefile +6 -0
- data/lib/lita-pwm.rb +12 -0
- data/lib/lita/handlers/pwm.rb +30 -0
- data/lita-pwm.gemspec +25 -0
- data/locales/en.yml +4 -0
- data/spec/lita/handlers/pwm_spec.rb +23 -0
- data/spec/spec_helper.rb +3 -0
- data/templates/.gitkeep +0 -0
- metadata +157 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: bf2b2fdd647d4ddddc497a3a440872c52da0fc3d
|
4
|
+
data.tar.gz: c6d2279e49eaf956d40c4b9a74a16a8865946164
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f031df4f2e1e57095d36783199d983917f8c354a95d7905d99f00b35ed5d7c863d1f1452a950b0945f8ec20804a860703e5471d3a2254a5e4e91029b21271941
|
7
|
+
data.tar.gz: 6ba86333bd7a414d01e62bea180f14329b19df02a2bf5ab1588d279f1f19daeb4dd3c99981b352d66e3283dd2bcf41126a02d32c6b33f81dffe8258c85304d50
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2015 Mark Cornick
|
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
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# lita-pwm
|
2
|
+
|
3
|
+
This [Lita](https://www.lita.io) plugin provides an interface to
|
4
|
+
[pwm](https://github.com/markcornick/pwm), a simple generator of
|
5
|
+
reasonably secure passwords.
|
6
|
+
|
7
|
+
Please note that this plugin generates a password and returns it
|
8
|
+
to you using the same method you used to address Lita. If you
|
9
|
+
don't want Lita to display your password publicly, don't address
|
10
|
+
Lita publicly. Keeping the displayed password secure is not the
|
11
|
+
responsibility of this plugin.
|
12
|
+
|
13
|
+
## Installation
|
14
|
+
|
15
|
+
Add lita-pwm to your Lita instance's Gemfile:
|
16
|
+
|
17
|
+
``` ruby
|
18
|
+
gem "lita-pwm"
|
19
|
+
```
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
`generate password LENGTH`: Generates a password of the specified
|
24
|
+
length. If not specified, the default length is 16.
|
data/Rakefile
ADDED
data/lib/lita-pwm.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'lita'
|
2
|
+
|
3
|
+
Lita.load_locales Dir[File.expand_path(
|
4
|
+
File.join('..', '..', 'locales', '*.yml'), __FILE__
|
5
|
+
)]
|
6
|
+
|
7
|
+
require 'lita/handlers/pwm'
|
8
|
+
|
9
|
+
Lita::Handlers::Pwm.template_root File.expand_path(
|
10
|
+
File.join('..', '..', 'templates'),
|
11
|
+
__FILE__
|
12
|
+
)
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'pwm'
|
2
|
+
|
3
|
+
module Lita
|
4
|
+
module Handlers
|
5
|
+
class Pwm < Handler
|
6
|
+
route(
|
7
|
+
/generate password(.*)?$/,
|
8
|
+
:generate_password,
|
9
|
+
command: true,
|
10
|
+
help: {
|
11
|
+
"generate password LENGTH":
|
12
|
+
'Generates a password of the specified length (default 16.)'
|
13
|
+
}
|
14
|
+
)
|
15
|
+
|
16
|
+
def generate_password(response)
|
17
|
+
length = response.matches[0][0].to_i
|
18
|
+
if length == 0
|
19
|
+
response.reply ::Pwm.password
|
20
|
+
elsif length < 8
|
21
|
+
response.reply "Requested length #{length} is too short!"
|
22
|
+
else
|
23
|
+
response.reply ::Pwm.password(length)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
Lita.register_handler(Pwm)
|
29
|
+
end
|
30
|
+
end
|
data/lita-pwm.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
Gem::Specification.new do |spec|
|
2
|
+
spec.name = 'lita-pwm'
|
3
|
+
spec.version = '0.1.0'
|
4
|
+
spec.authors = ['Mark Cornick']
|
5
|
+
spec.email = ['mark@cornick.io']
|
6
|
+
spec.description = 'Lita interface to pwm'
|
7
|
+
spec.summary = 'Connects Lita bots to the pwm password generator'
|
8
|
+
spec.homepage = 'https://github.com/markcornick/lita-pwm'
|
9
|
+
spec.license = 'MIT'
|
10
|
+
spec.metadata = { 'lita_plugin_type' => 'handler' }
|
11
|
+
|
12
|
+
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
|
13
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
14
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
15
|
+
spec.require_paths = ['lib']
|
16
|
+
|
17
|
+
spec.add_runtime_dependency 'lita', '>= 4.3'
|
18
|
+
spec.add_runtime_dependency 'pwm', '>= 1.1.0'
|
19
|
+
|
20
|
+
spec.add_development_dependency 'bundler', '~> 1.3'
|
21
|
+
spec.add_development_dependency 'pry-byebug'
|
22
|
+
spec.add_development_dependency 'rake'
|
23
|
+
spec.add_development_dependency 'rack-test'
|
24
|
+
spec.add_development_dependency 'rspec', '>= 3.0.0'
|
25
|
+
end
|
data/locales/en.yml
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Lita::Handlers::Pwm, lita_handler: true do
|
4
|
+
it do
|
5
|
+
is_expected.to(
|
6
|
+
route_command('generate password 12').to(:generate_password))
|
7
|
+
end
|
8
|
+
|
9
|
+
it 'generates a password of default length' do
|
10
|
+
send_command('generate password')
|
11
|
+
expect(replies.last.length).to eq(16)
|
12
|
+
end
|
13
|
+
|
14
|
+
it 'generates a password of a specific length' do
|
15
|
+
send_command('generate password 12')
|
16
|
+
expect(replies.last.length).to eq(12)
|
17
|
+
end
|
18
|
+
|
19
|
+
it 'does not generate a password of too short a length' do
|
20
|
+
send_command('generate password 6')
|
21
|
+
expect(replies.last).to eq('Requested length 6 is too short!')
|
22
|
+
end
|
23
|
+
end
|
data/spec/spec_helper.rb
ADDED
data/templates/.gitkeep
ADDED
File without changes
|
metadata
ADDED
@@ -0,0 +1,157 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lita-pwm
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Mark Cornick
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-05-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: lita
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.3'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: pwm
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.1.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 1.1.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.3'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.3'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: pry-byebug
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rake
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rack-test
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rspec
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 3.0.0
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 3.0.0
|
111
|
+
description: Lita interface to pwm
|
112
|
+
email:
|
113
|
+
- mark@cornick.io
|
114
|
+
executables: []
|
115
|
+
extensions: []
|
116
|
+
extra_rdoc_files: []
|
117
|
+
files:
|
118
|
+
- ".gitignore"
|
119
|
+
- Gemfile
|
120
|
+
- LICENSE
|
121
|
+
- README.md
|
122
|
+
- Rakefile
|
123
|
+
- lib/lita-pwm.rb
|
124
|
+
- lib/lita/handlers/pwm.rb
|
125
|
+
- lita-pwm.gemspec
|
126
|
+
- locales/en.yml
|
127
|
+
- spec/lita/handlers/pwm_spec.rb
|
128
|
+
- spec/spec_helper.rb
|
129
|
+
- templates/.gitkeep
|
130
|
+
homepage: https://github.com/markcornick/lita-pwm
|
131
|
+
licenses:
|
132
|
+
- MIT
|
133
|
+
metadata:
|
134
|
+
lita_plugin_type: handler
|
135
|
+
post_install_message:
|
136
|
+
rdoc_options: []
|
137
|
+
require_paths:
|
138
|
+
- lib
|
139
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
140
|
+
requirements:
|
141
|
+
- - ">="
|
142
|
+
- !ruby/object:Gem::Version
|
143
|
+
version: '0'
|
144
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
145
|
+
requirements:
|
146
|
+
- - ">="
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: '0'
|
149
|
+
requirements: []
|
150
|
+
rubyforge_project:
|
151
|
+
rubygems_version: 2.4.5
|
152
|
+
signing_key:
|
153
|
+
specification_version: 4
|
154
|
+
summary: Connects Lita bots to the pwm password generator
|
155
|
+
test_files:
|
156
|
+
- spec/lita/handlers/pwm_spec.rb
|
157
|
+
- spec/spec_helper.rb
|