lita-pebbles 0.0.1
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/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +32 -0
- data/Rakefile +1 -0
- data/config/meigens.json +1 -0
- data/lib/lita/handlers/kansai.rb +29 -0
- data/lib/lita/handlers/misawa.rb +22 -0
- data/lib/lita/handlers/omikuji.rb +32 -0
- data/lib/lita/handlers/pebbles.rb +35 -0
- data/lib/lita/pebbles/version.rb +5 -0
- data/lib/lita-pebbles.rb +5 -0
- data/lita-pebbles.gemspec +30 -0
- metadata +142 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7872b3bbbeaf1b00ebc0e0f6b7ae8b22fd346051
|
4
|
+
data.tar.gz: bc25f5673fed80a06be1e6b96ffd6b50ca438300
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 745193562f0526ef6ae844eb7f0f33bcea30830dfcc8595aca4a8a40095463f37da926dd03c4fa2d79f3ed836ed36959f00a2d929f22f77ee2cd5dcdb4b14449
|
7
|
+
data.tar.gz: b56f0505be3fc9c7abf4da389e355d91ee8a3e8f87be3dc65ecd5a067ecca64fcde0673a5c5264d309040049079daaa8df1d2dbff5ca42d12a644081f1d18575
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 fukayatsu
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
# lita-pebbles
|
2
|
+
|
3
|
+
A Lita handler for fun :)
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your lita's Gemfile:
|
8
|
+
|
9
|
+
gem 'lita-pebbles'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
## Usage
|
16
|
+
|
17
|
+
```
|
18
|
+
Lita: sudden 突然の死
|
19
|
+
Lita: flip foobar
|
20
|
+
Lita: omikuji
|
21
|
+
Lita: misawa
|
22
|
+
...
|
23
|
+
```
|
24
|
+
|
25
|
+
|
26
|
+
## Contributing
|
27
|
+
|
28
|
+
1. Fork it ( http://github.com/<my-github-username>/lita-pebbles/fork )
|
29
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
30
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
31
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
32
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|