lita-command-not-found 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.travis.yml +8 -0
- data/Gemfile +3 -0
- data/README.md +26 -0
- data/Rakefile +6 -0
- data/lib/lita-command-not-found.rb +12 -0
- data/lib/lita/handlers/command_not_found.rb +20 -0
- data/lita-command-not-found.gemspec +26 -0
- data/locales/en.yml +4 -0
- data/spec/lita/handlers/command_not_found_spec.rb +28 -0
- data/spec/spec_helper.rb +14 -0
- data/templates/.gitkeep +0 -0
- metadata +171 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: f3fff58aaf6ad26fb339d3514a91c63b4c78b42e
|
4
|
+
data.tar.gz: f1923b67a50e9d69b102826674cb9d3757e40142
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 4848008f79e22756c0d8ea47c592f005de57636bdd2f6f3c2ea0e6d4e4a496f70486c5304d26a55ddc04d6db231333ed210324d77be82897b11af861dc476b52
|
7
|
+
data.tar.gz: c02e2de9e22c83f871d2abc34c14d423ea9a8590d44d721d4dbbaed3349378b581c9f4afd6b49f86c5fb6aa4c3455c310d8cf09bc8316097464e562035a6fb22
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# lita-command-not-found
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.org/jjasghar/lita-command-not-found.png?branch=master)](https://travis-ci.org/jjasghar/lita-command-not-found)
|
4
|
+
[![Coverage Status](https://coveralls.io/repos/jjasghar/lita-command-not-found/badge.png)](https://coveralls.io/r/jjasghar/lita-command-not-found)
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
Add lita-command-not-found to your Lita instance's Gemfile:
|
9
|
+
|
10
|
+
``` ruby
|
11
|
+
gem "lita-command-not-found"
|
12
|
+
```
|
13
|
+
|
14
|
+
## Configuration
|
15
|
+
|
16
|
+
None!
|
17
|
+
|
18
|
+
## Usage
|
19
|
+
|
20
|
+
This plugin is a nice reminder for people who aren't paying attention to their
|
21
|
+
terminal/windows.
|
22
|
+
|
23
|
+
The bot will respond with `Command not found` for a few commands if you
|
24
|
+
accidentally send it to the channel.
|
25
|
+
|
26
|
+
NOTE: I've only started with a few, I'm more then willing to accept other suggestions.
|
data/Rakefile
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/command_not_found"
|
8
|
+
|
9
|
+
Lita::Handlers::CommandNotFound.template_root File.expand_path(
|
10
|
+
File.join("..", "..", "templates"),
|
11
|
+
__FILE__
|
12
|
+
)
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Lita
|
2
|
+
module Handlers
|
3
|
+
class CommandNotFound < Handler
|
4
|
+
|
5
|
+
route(/^cd$/i, :command_not_found, command: false, help: { "cd" => "Command not found."} )
|
6
|
+
route(/^dir$/i, :command_not_found, command: false, help: { "dir" => "Command not found."} )
|
7
|
+
route(/^exit$/i, :command_not_found, command: false, help: { "exit" => "Command not found."} )
|
8
|
+
route(/^ls$/i, :command_not_found, command: false, help: { "ls" => "Command not found."} )
|
9
|
+
|
10
|
+
def command_not_found(request)
|
11
|
+
request.reply("Command not found")
|
12
|
+
end
|
13
|
+
|
14
|
+
end
|
15
|
+
|
16
|
+
Lita.register_handler(CommandNotFound)
|
17
|
+
|
18
|
+
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
Gem::Specification.new do |spec|
|
2
|
+
spec.name = "lita-command-not-found"
|
3
|
+
spec.version = "0.1.0"
|
4
|
+
spec.authors = ["JJ Asghar"]
|
5
|
+
spec.email = ["jjasghar@gmail.com"]
|
6
|
+
spec.description = "Have your bot look for those commands you don't mean to send to the channel."
|
7
|
+
spec.summary = "Have your bot look for those commands you don't mean to send to the channel."
|
8
|
+
spec.homepage = "https://github.com/jjasghar/lita-command-not-found"
|
9
|
+
spec.license = "MIT"
|
10
|
+
spec.metadata = { "lita_plugin_type" => "handler" }
|
11
|
+
|
12
|
+
spec.files = `git ls-files`.split($/)
|
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.4"
|
18
|
+
|
19
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
20
|
+
spec.add_development_dependency "pry-byebug"
|
21
|
+
spec.add_development_dependency "rake"
|
22
|
+
spec.add_development_dependency "rack-test"
|
23
|
+
spec.add_development_dependency "rspec", ">= 3.0.0"
|
24
|
+
spec.add_development_dependency "simplecov"
|
25
|
+
spec.add_development_dependency "coveralls"
|
26
|
+
end
|
data/locales/en.yml
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe Lita::Handlers::CommandNotFound, lita_handler: true do
|
4
|
+
it { is_expected.to route("cd") }
|
5
|
+
it { is_expected.to route("dir") }
|
6
|
+
it { is_expected.to route("exit") }
|
7
|
+
it { is_expected.to route("ls") }
|
8
|
+
|
9
|
+
it "should respond with cd with 'Command not found'" do
|
10
|
+
send_message("cd")
|
11
|
+
expect(replies.last).to eq("Command not found")
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should respond with dir with 'Command not found'" do
|
15
|
+
send_message("dir")
|
16
|
+
expect(replies.last).to eq("Command not found")
|
17
|
+
end
|
18
|
+
|
19
|
+
it "should respond with exit with 'Command not found'" do
|
20
|
+
send_message("exit")
|
21
|
+
expect(replies.last).to eq("Command not found")
|
22
|
+
end
|
23
|
+
|
24
|
+
it "should respond with ls with 'Command not found'" do
|
25
|
+
send_message("ls")
|
26
|
+
expect(replies.last).to eq("Command not found")
|
27
|
+
end
|
28
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
require "simplecov"
|
2
|
+
require "coveralls"
|
3
|
+
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
|
4
|
+
SimpleCov::Formatter::HTMLFormatter,
|
5
|
+
Coveralls::SimpleCov::Formatter
|
6
|
+
]
|
7
|
+
SimpleCov.start { add_filter "/spec/" }
|
8
|
+
|
9
|
+
require "lita-command-not-found"
|
10
|
+
require "lita/rspec"
|
11
|
+
|
12
|
+
# A compatibility mode is provided for older plugins upgrading from Lita 3. Since this plugin
|
13
|
+
# was generated with Lita 4, the compatibility mode should be left disabled.
|
14
|
+
Lita.version_3_compatibility_mode = false
|
data/templates/.gitkeep
ADDED
File without changes
|
metadata
ADDED
@@ -0,0 +1,171 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lita-command-not-found
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- JJ Asghar
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-02-07 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.4'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.4'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.3'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.3'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: pry-byebug
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
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: rack-test
|
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: rspec
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 3.0.0
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 3.0.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: simplecov
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: coveralls
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
description: Have your bot look for those commands you don't mean to send to the channel.
|
126
|
+
email:
|
127
|
+
- jjasghar@gmail.com
|
128
|
+
executables: []
|
129
|
+
extensions: []
|
130
|
+
extra_rdoc_files: []
|
131
|
+
files:
|
132
|
+
- ".gitignore"
|
133
|
+
- ".travis.yml"
|
134
|
+
- Gemfile
|
135
|
+
- README.md
|
136
|
+
- Rakefile
|
137
|
+
- lib/lita-command-not-found.rb
|
138
|
+
- lib/lita/handlers/command_not_found.rb
|
139
|
+
- lita-command-not-found.gemspec
|
140
|
+
- locales/en.yml
|
141
|
+
- spec/lita/handlers/command_not_found_spec.rb
|
142
|
+
- spec/spec_helper.rb
|
143
|
+
- templates/.gitkeep
|
144
|
+
homepage: https://github.com/jjasghar/lita-command-not-found
|
145
|
+
licenses:
|
146
|
+
- MIT
|
147
|
+
metadata:
|
148
|
+
lita_plugin_type: handler
|
149
|
+
post_install_message:
|
150
|
+
rdoc_options: []
|
151
|
+
require_paths:
|
152
|
+
- lib
|
153
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
154
|
+
requirements:
|
155
|
+
- - ">="
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: '0'
|
158
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
159
|
+
requirements:
|
160
|
+
- - ">="
|
161
|
+
- !ruby/object:Gem::Version
|
162
|
+
version: '0'
|
163
|
+
requirements: []
|
164
|
+
rubyforge_project:
|
165
|
+
rubygems_version: 2.2.2
|
166
|
+
signing_key:
|
167
|
+
specification_version: 4
|
168
|
+
summary: Have your bot look for those commands you don't mean to send to the channel.
|
169
|
+
test_files:
|
170
|
+
- spec/lita/handlers/command_not_found_spec.rb
|
171
|
+
- spec/spec_helper.rb
|