lita-ermahgerd 0.0.2

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: 5d4994a6729746ca5a6c027568ca175b885c441b
4
+ data.tar.gz: c89661f2b449e8fbb70182f1433d41b64cda2cfc
5
+ SHA512:
6
+ metadata.gz: d794649112f1a4c6373906953a5f0a04a50c94a374177d8c298ab2e29226520dbcd4fa079ec2b8c0c40a042078fbbba5ad76fb101def39ad675bd10497b704d5
7
+ data.tar.gz: 659641a09d4d6f68990a789c89126975ca8fa574989b11e759c2d80aa7c3367c339d7bbac21874a8c374c7e9f23729b9d20dcbe74ef2f74c673ee36890a8ce35
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .ruby-version
4
+ .bundle
5
+ .config
6
+ .yardoc
7
+ Gemfile.lock
8
+ InstalledFiles
9
+ _yardoc
10
+ coverage
11
+ doc/
12
+ lib/bundler/man
13
+ pkg
14
+ rdoc
15
+ spec/reports
16
+ test/tmp
17
+ test/version_tmp
18
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in lita-ermahgerd.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Duyet Nguyen
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,18 @@
1
+ # lita-ermahgerd
2
+
3
+ A Lita handler that translates chat to ermahgerd-speak
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'lita-ermahgerd'
10
+
11
+ ## Usage
12
+
13
+ Lita > ermgd oh my god
14
+ ER MAH GERD
15
+
16
+ ## License
17
+
18
+ [MIT](http://opensource.org/licenses/MIT)
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1 @@
1
+ require "lita/handlers/ermahgerd"
@@ -0,0 +1,18 @@
1
+ require "lita"
2
+ require "ermahgerd"
3
+
4
+ module Lita
5
+ module Handlers
6
+ class Ermahgerd < Handler
7
+ route /^ermgd\s+(.+)/, :ermahgerd, help: { "ermgd TEXT" => "Translate TEXT into ermahgerd-speak" }
8
+
9
+ def ermahgerd(response)
10
+ response.reply(
11
+ ::Ermahgerd.translate(response.matches.flatten.first)
12
+ )
13
+ end
14
+ end
15
+
16
+ Lita.register_handler(Ermahgerd)
17
+ end
18
+ end
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ Gem::Specification.new do |spec|
3
+ spec.name = "lita-ermahgerd"
4
+ spec.version = "0.0.2"
5
+ spec.authors = ["Duyet Nguyen"]
6
+ spec.email = ["duyetlnguyen@gmail.com"]
7
+ spec.summary = %q{A Lita handler that translates chat to ermahgerd-speak}
8
+ spec.homepage = "https://github.com/duyetln/lita-ermahgerd"
9
+ spec.license = "MIT"
10
+
11
+ spec.files = `git ls-files`.split($/)
12
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
13
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
14
+ spec.require_paths = ["lib"]
15
+
16
+ spec.add_runtime_dependency "lita", ">= 2.2"
17
+ spec.add_runtime_dependency "ermahgerd", ">= 0.0.1"
18
+
19
+ spec.add_development_dependency "bundler", "~> 1.5"
20
+ spec.add_development_dependency "rake"
21
+ spec.add_development_dependency "rspec", ">= 3.0.0.beta1"
22
+
23
+ spec.metadata = { "lita_plugin_type" => "handler" }
24
+ end
@@ -0,0 +1,15 @@
1
+ require "spec_helper"
2
+
3
+ describe Lita::Handlers::Ermahgerd, lita_handler: true do
4
+
5
+ let(:text) { rand(36**10).to_s(36) }
6
+
7
+ it { routes("ermgd #{text}").to(:ermahgerd) }
8
+ it { routes_command("ermgd #{text}").to(:ermahgerd) }
9
+
10
+ it "ermahgerds" do
11
+
12
+ send_command("ermgd #{text}")
13
+ expect(replies.last).to eq(::Ermahgerd.translate(text))
14
+ end
15
+ end
@@ -0,0 +1,7 @@
1
+ require "lita-ermahgerd"
2
+ require "lita/rspec"
3
+
4
+ RSpec.configure do |config|
5
+ config.color_enabled = true
6
+ config.order = "random"
7
+ end
metadata ADDED
@@ -0,0 +1,127 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lita-ermahgerd
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Duyet Nguyen
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-03-10 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: '2.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '2.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: ermahgerd
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.0.1
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 0.0.1
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.5'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.5'
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: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: 3.0.0.beta1
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.beta1
83
+ description:
84
+ email:
85
+ - duyetlnguyen@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - Gemfile
92
+ - LICENSE.txt
93
+ - README.md
94
+ - Rakefile
95
+ - lib/lita-ermahgerd.rb
96
+ - lib/lita/handlers/ermahgerd.rb
97
+ - lita-ermahgerd.gemspec
98
+ - spec/lita/handlers/ermahgerd_spec.rb
99
+ - spec/spec_helper.rb
100
+ homepage: https://github.com/duyetln/lita-ermahgerd
101
+ licenses:
102
+ - MIT
103
+ metadata:
104
+ lita_plugin_type: handler
105
+ post_install_message:
106
+ rdoc_options: []
107
+ require_paths:
108
+ - lib
109
+ required_ruby_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ required_rubygems_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ requirements: []
120
+ rubyforge_project:
121
+ rubygems_version: 2.2.2
122
+ signing_key:
123
+ specification_version: 4
124
+ summary: A Lita handler that translates chat to ermahgerd-speak
125
+ test_files:
126
+ - spec/lita/handlers/ermahgerd_spec.rb
127
+ - spec/spec_helper.rb