lita-env 0.0.1
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 +19 -0
- data/README.md +24 -0
- data/Rakefile +6 -0
- data/lib/lita-env.rb +7 -0
- data/lib/lita/handlers/env.rb +40 -0
- data/lita-env.gemspec +22 -0
- data/locales/en.yml +5 -0
- data/spec/lita/handlers/env_spec.rb +4 -0
- data/spec/spec_helper.rb +2 -0
- metadata +114 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 252029ff0e2d777bf965c94e1a8cc7eea69e30a4
|
4
|
+
data.tar.gz: a4e9a1392ba3bd6d71a938bd592ac94fdaa4c54b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 301517d0244d929c6d325dc4407d42084e578e3033b50774659a77c68f122f6d50278ad23f0a2460c4c444b48281bcc665e64cc4eb4fde3c743caf7ad4920274
|
7
|
+
data.tar.gz: e404fd24401218bab2dccfcb925e45002d383cb1b00972fe08e37bfa1d8f84064bb25eaf9cc43c2fa91accb37af1affefc4a2f087ae164a9264ef09b7290abaf
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
Copyright (c) 2014 TODO: Write your name
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
5
|
+
in the Software without restriction, including without limitation the rights
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
8
|
+
furnished to do so, subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
11
|
+
all copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# lita-env
|
2
|
+
|
3
|
+
A plugin for Lita to store details of your environments.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add lita-env to your Lita instance's Gemfile:
|
8
|
+
|
9
|
+
``` ruby
|
10
|
+
gem "lita-env"
|
11
|
+
```
|
12
|
+
|
13
|
+
|
14
|
+
## Configuration
|
15
|
+
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
Add a new environment `lita env add webserver`
|
20
|
+
List all environments `lita env list`
|
21
|
+
|
22
|
+
## License
|
23
|
+
|
24
|
+
[MIT](http://opensource.org/licenses/MIT)
|
data/Rakefile
ADDED
data/lib/lita-env.rb
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
module Lita
|
2
|
+
module Handlers
|
3
|
+
class Env < Handler
|
4
|
+
|
5
|
+
route /env\s+add, :add_env, command: true, help: {
|
6
|
+
"env add" => t("add a new environment")
|
7
|
+
}
|
8
|
+
|
9
|
+
route /env\s+list, :list_env, command: true, help: {
|
10
|
+
"env list" => t("shows status of current environments")
|
11
|
+
}
|
12
|
+
|
13
|
+
def add_env(response)
|
14
|
+
redis.sadd("env:#{response.user.id}", response.matches[0][0])
|
15
|
+
redis.sadd("env", response.user.id)
|
16
|
+
response.reply(t("added environment", type: env))
|
17
|
+
end
|
18
|
+
|
19
|
+
def list_env(response)
|
20
|
+
user_ids = redis.smembers("env")
|
21
|
+
return if user_ids.empty?
|
22
|
+
|
23
|
+
environments = []
|
24
|
+
|
25
|
+
user_ids.each do |user_id|
|
26
|
+
user = User.find_by_id(user_id)
|
27
|
+
next unless user
|
28
|
+
|
29
|
+
redis.smembers("env:#{user.id}").each do |details|
|
30
|
+
environments << t("environment", name: details, user: user.name)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
environments.join("\n")
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
Lita.register_handler(Env)
|
39
|
+
end
|
40
|
+
end
|
data/lita-env.gemspec
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Gem::Specification.new do |spec|
|
2
|
+
spec.name = "lita-env"
|
3
|
+
spec.version = "0.0.1"
|
4
|
+
spec.authors = ["Ben Laplanche"]
|
5
|
+
spec.email = ["ben@laplanche.co.uk"]
|
6
|
+
spec.description = %q{Lita plugin to store the status of your environments}
|
7
|
+
spec.summary = %q{Lita plugin to store the status of your environments}
|
8
|
+
spec.homepage = "http://ben.laplanche.co.uk"
|
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", ">= 3.3"
|
18
|
+
|
19
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
20
|
+
spec.add_development_dependency "rake"
|
21
|
+
spec.add_development_dependency "rspec", ">= 3.0.0"
|
22
|
+
end
|
data/locales/en.yml
ADDED
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,114 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lita-env
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ben Laplanche
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-09-26 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: '3.3'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.3'
|
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: rake
|
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: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 3.0.0
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 3.0.0
|
69
|
+
description: Lita plugin to store the status of your environments
|
70
|
+
email:
|
71
|
+
- ben@laplanche.co.uk
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- Gemfile
|
78
|
+
- LICENSE
|
79
|
+
- README.md
|
80
|
+
- Rakefile
|
81
|
+
- lib/lita-env.rb
|
82
|
+
- lib/lita/handlers/env.rb
|
83
|
+
- lita-env.gemspec
|
84
|
+
- locales/en.yml
|
85
|
+
- spec/lita/handlers/env_spec.rb
|
86
|
+
- spec/spec_helper.rb
|
87
|
+
homepage: http://ben.laplanche.co.uk
|
88
|
+
licenses:
|
89
|
+
- MIT
|
90
|
+
metadata:
|
91
|
+
lita_plugin_type: handler
|
92
|
+
post_install_message:
|
93
|
+
rdoc_options: []
|
94
|
+
require_paths:
|
95
|
+
- lib
|
96
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - ">="
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: '0'
|
101
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
102
|
+
requirements:
|
103
|
+
- - ">="
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '0'
|
106
|
+
requirements: []
|
107
|
+
rubyforge_project:
|
108
|
+
rubygems_version: 2.2.2
|
109
|
+
signing_key:
|
110
|
+
specification_version: 4
|
111
|
+
summary: Lita plugin to store the status of your environments
|
112
|
+
test_files:
|
113
|
+
- spec/lita/handlers/env_spec.rb
|
114
|
+
- spec/spec_helper.rb
|