lita-reverse_table_flip 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: bae7779041fba6fede056d27316571cdbbda77ca
4
+ data.tar.gz: 4ad3bd33d154898a542a6e1428dd0e5c198419cd
5
+ SHA512:
6
+ metadata.gz: f11adb30a4076f5ec122c6d16475b5bc77b59398b37e6707e397da6c85c6e7d0e68bb64879c685d92482a1790eafa090a37f7b94f356fc47fd57437ff0dd3618
7
+ data.tar.gz: 65b8726fe88ede9ee8d3bf3a216377e311e79b2121fdd6675988f3533358776ee9deb89ef7216192291695df86010e037c8d8467b23fb2bd2c0cfdcf563ac906
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
data/LICENSE ADDED
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2014 Adam Melnyk
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,32 @@
1
+ # lita-reverse_table_flip
2
+
3
+ lita-reverse_table_flip is a handler for Lita that "unflips" tables that have been flipped
4
+
5
+ ## Installation
6
+
7
+ Add lita-reverse_table_flip to your Lita instance's Gemfile:
8
+
9
+ ``` ruby
10
+ gem "lita-reverse_table_flip"
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ ``` ruby
16
+ bundle install
17
+ ```
18
+
19
+ Or install it yourself as:
20
+
21
+ ``` ruby
22
+ gem install lita-reverse_table_flip
23
+ ```
24
+
25
+ ## Usage
26
+
27
+ Use the tableflip emoji (tableflip)
28
+
29
+ ## License
30
+
31
+ [MIT](http://opensource.org/licenses/MIT)
32
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
@@ -0,0 +1,8 @@
1
+ require "lita"
2
+
3
+ Lita.load_locales Dir[File.expand_path(
4
+ File.join("..", "..", "locales", "*.yml"), __FILE__
5
+ )]
6
+
7
+ require "lita/handlers/reverse_table_flip"
8
+
@@ -0,0 +1,17 @@
1
+ module Lita
2
+ module Handlers
3
+ class ReverseTableFlip < Handler
4
+
5
+ route(/\(tableflip\)/i, :flip, command: false,
6
+ help: { "tableflip" => "Flips tables back upright." }
7
+ )
8
+
9
+ def flip(response)
10
+ message = "┬─┬ ノ( ゜-゜ノ)"
11
+ response.reply(message)
12
+ end
13
+ end
14
+ Lita.register_handler(ReverseTableFlip)
15
+ end
16
+ end
17
+
@@ -0,0 +1,6 @@
1
+ module Lita
2
+ module ReverseTableFlip
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
6
+
@@ -0,0 +1,28 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'lita/reverse_table_flip/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "lita-reverse_table_flip"
7
+ spec.version = Lita::ReverseTableFlip::VERSION
8
+ spec.authors = ["Adam Melnyk"]
9
+ spec.email = ["adam.melnyk@gmail.com"]
10
+ spec.description = %q{"Unflips" a flipped table}
11
+ spec.summary = %q{"Unflips" a flipped table}
12
+ spec.homepage = "https://github.com/amaabca/lita-reverse_table_flip"
13
+ spec.license = "MIT"
14
+ spec.metadata = { "lita_plugin_type" => "handler" }
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_runtime_dependency "lita", ">= 4.0"
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.3"
24
+ spec.add_development_dependency "rake"
25
+ spec.add_development_dependency "rack-test"
26
+ spec.add_development_dependency "rspec", ">= 3.0.0"
27
+ end
28
+
data/locales/en.yml ADDED
@@ -0,0 +1,4 @@
1
+ en:
2
+ lita:
3
+ handlers:
4
+ reverse_table_flip:
@@ -0,0 +1,10 @@
1
+ require "spec_helper"
2
+
3
+ describe Lita::Handlers::ReverseTableFlip, lita_handler: true do
4
+
5
+ it "responds to '(tableflip)' with an unflip" do
6
+ send_message("(tableflip)")
7
+
8
+ expect(replies.last).to include("┬─┬ ノ( ゜-゜ノ)")
9
+ end
10
+ end
@@ -0,0 +1,6 @@
1
+ require "lita-reverse_table_flip"
2
+ require "lita/rspec"
3
+
4
+ # A compatibility mode is provided for older plugins upgrading from Lita 3. Since this plugin
5
+ # was generated with Lita 4, the compatibility mode should be left disabled.
6
+ Lita.version_3_compatibility_mode = false
metadata ADDED
@@ -0,0 +1,129 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lita-reverse_table_flip
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Adam Melnyk
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-12-24 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.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '4.0'
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: rack-test
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: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: 3.0.0
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: 3.0.0
83
+ description: '"Unflips" a flipped table'
84
+ email:
85
+ - adam.melnyk@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - Gemfile
92
+ - LICENSE
93
+ - README.md
94
+ - Rakefile
95
+ - lib/lita-reverse_table_flip.rb
96
+ - lib/lita/handlers/reverse_table_flip.rb
97
+ - lib/lita/reverse_table_flip/version.rb
98
+ - lita-reverse_table_flip.gemspec
99
+ - locales/en.yml
100
+ - spec/lita/handlers/reverse_table_flip_spec.rb
101
+ - spec/spec_helper.rb
102
+ homepage: https://github.com/amaabca/lita-reverse_table_flip
103
+ licenses:
104
+ - MIT
105
+ metadata:
106
+ lita_plugin_type: handler
107
+ post_install_message:
108
+ rdoc_options: []
109
+ require_paths:
110
+ - lib
111
+ required_ruby_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ required_rubygems_version: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ requirements: []
122
+ rubyforge_project:
123
+ rubygems_version: 2.2.2
124
+ signing_key:
125
+ specification_version: 4
126
+ summary: '"Unflips" a flipped table'
127
+ test_files:
128
+ - spec/lita/handlers/reverse_table_flip_spec.rb
129
+ - spec/spec_helper.rb