lita-urban-dictionary 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5fd9df671871f783955d7a569d6da64725e04fe8
4
+ data.tar.gz: 55d0f84b60261365a747699954f84eaa769512c0
5
+ SHA512:
6
+ metadata.gz: 20b478c185291d6e3c457667c96c5f9fbc1448529ef9dbf4ecf5969b3e477db11658e57b8d6e632e33f9a61c230815edb9e1acd03e279aeb625053a3e3598087
7
+ data.tar.gz: 342d1fc6283039b6dc8d0a4172a9f0042c71419303a66cbcdc39a8460f06675f1a174c3cab3ec29a7b59033945041fb072f87aba309820d458f5d31e89d14603
@@ -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
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ script: bundle exec rspec
5
+ before_install:
6
+ - gem update --system
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Jimmy Cuadra
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.
@@ -0,0 +1,27 @@
1
+ # lita-urban-dictionary
2
+
3
+ [![Build Status](https://travis-ci.org/jimmycuadra/lita-urban-dictionary.png)](https://travis-ci.org/jimmycuadra/lita-urban-dictionary)
4
+ [![Code Climate](https://codeclimate.com/github/jimmycuadra/lita-urban-dictionary.png)](https://codeclimate.com/github/jimmycuadra/lita-urban-dictionary)
5
+ [![Coverage Status](https://coveralls.io/repos/jimmycuadra/lita-urban-dictionary/badge.png)](https://coveralls.io/r/jimmycuadra/lita-urban-dictionary)
6
+
7
+ **lita-urban-dictionary** is a handler for [Lita](https://github.com/jimmycuadra/lita) looks up the definitions of words on [Urban Dictionary](http://www.urbandictionary.com/).
8
+
9
+ ## Installation
10
+
11
+ Add lita-urban-dictionary to your Lita instance's Gemfile:
12
+
13
+ ``` ruby
14
+ gem "lita-urban-dictionary"
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ To get the definition of a word:
20
+
21
+ ```
22
+ Lita: ud WORD
23
+ ```
24
+
25
+ ## License
26
+
27
+ [MIT](http://opensource.org/licenses/MIT)
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1 @@
1
+ require "lita/handlers/urban_dictionary"
@@ -0,0 +1,48 @@
1
+ require "lita"
2
+
3
+ module Lita
4
+ module Handlers
5
+ # Looks up words on Urban Dictionary.
6
+ class UrbanDictionary < Handler
7
+ route(
8
+ /^(?:ud|urban\s*dictionary)(?:\s+me)? (.+)/,
9
+ :define,
10
+ command: true,
11
+ help: {
12
+ "ud WORD" => "Get the definition of WORD from Urban Dictionary."
13
+ }
14
+ )
15
+
16
+ def define(response)
17
+ requested_word = response.matches[0][0]
18
+ word, definition, example = fetch_definition(requested_word)
19
+ if word
20
+ message = "#{word}: #{definition}"
21
+ message << "\nExample: #{example}" if example
22
+ response.reply(message)
23
+ else
24
+ response.reply("No definition found for #{requested_word}.")
25
+ end
26
+ end
27
+
28
+ private
29
+
30
+ def fetch_definition(requested_word)
31
+ http_response = http.get(
32
+ "http://api.urbandictionary.com/v0/define",
33
+ term: URI.escape(requested_word)
34
+ )
35
+
36
+ if http_response.status == 200
37
+ data = MultiJson.load(http_response.body)
38
+ if data["list"] && data["list"].size > 0
39
+ item = data["list"][0]
40
+ [item["word"], item["definition"], item["example"]]
41
+ end
42
+ end
43
+ end
44
+ end
45
+
46
+ Lita.register_handler(UrbanDictionary)
47
+ end
48
+ end
@@ -0,0 +1,23 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = "lita-urban-dictionary"
3
+ spec.version = "0.0.1"
4
+ spec.authors = ["Jimmy Cuadra"]
5
+ spec.email = ["jimmy@jimmycuadra.com"]
6
+ spec.description = %q{A Lita handler for fetching definitions from Urban Dictionary.}
7
+ spec.summary = %q{A Lita handler for fetching definitions from Urban Dictionary.}
8
+ spec.homepage = "https://github.com/jimmycuadra/lita-urban-dictionary"
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.1"
17
+
18
+ spec.add_development_dependency "bundler", "~> 1.3"
19
+ spec.add_development_dependency "rake"
20
+ spec.add_development_dependency "rspec", "~> 2.14"
21
+ spec.add_development_dependency "simplecov"
22
+ spec.add_development_dependency "coveralls"
23
+ end
@@ -0,0 +1,68 @@
1
+ require "spec_helper"
2
+
3
+ describe Lita::Handlers::UrbanDictionary, lita_handler: true do
4
+ it { routes_command("ud foo").to(:define) }
5
+ it { routes_command("ud me foo").to(:define) }
6
+ it { routes_command("urbandictionary foo").to(:define) }
7
+ it { routes_command("urbandictionary me foo").to(:define) }
8
+ it { routes_command("urban dictionary foo").to(:define) }
9
+ it { routes_command("urban dictionary me foo").to(:define) }
10
+
11
+ describe "#define" do
12
+ let(:json) do
13
+ %Q{{"list":[{"defid":1369633,"word":"robot","author":"Ralius","permalink"\
14
+ :"http://robot.urbanup.com/1369633","definition":"scariest fucking thing on \
15
+ earth.","example":"have you ever been to Chuck E. Cheese and looked behind the \
16
+ curtain?","thumbs_up":565,"thumbs_down":141,"current_vote":""}]}}
17
+ end
18
+
19
+ let(:json_no_example) do
20
+ %Q{{"list":[{"defid":1369633,"word":"robot","author":"Ralius","permalink"\
21
+ :"http://robot.urbanup.com/1369633","definition":"scariest fucking thing on \
22
+ earth.","thumbs_up":565,"thumbs_down":141,"current_vote":""}]}}
23
+ end
24
+
25
+ before do
26
+ allow_any_instance_of(Faraday::Connection).to receive(:get)
27
+ end
28
+
29
+ it "responds with the definition of the word" do
30
+ response = double("Faraday::Response", status: 200, body: json)
31
+ allow_any_instance_of(Faraday::Connection).to receive(:get).and_return(
32
+ response
33
+ )
34
+ send_command("ud robot")
35
+ expect(replies.last).to eq <<-DEF.chomp
36
+ robot: scariest fucking thing on earth.
37
+ Example: have you ever been to Chuck E. Cheese and looked behind the curtain?
38
+ DEF
39
+ end
40
+
41
+ it "doesn't include an example if none were received from the API" do
42
+ response = double("Faraday::Response", status: 200, body: json_no_example)
43
+ allow_any_instance_of(Faraday::Connection).to receive(:get).and_return(
44
+ response
45
+ )
46
+ send_command("ud robot")
47
+ expect(replies.last).to eq("robot: scariest fucking thing on earth.")
48
+ end
49
+
50
+ it "responds with a warning if no definition was found" do
51
+ response = double("Faraday::Response", status: 200, body: "{}")
52
+ allow_any_instance_of(Faraday::Connection).to receive(:get).and_return(
53
+ response
54
+ )
55
+ send_command("ud bar")
56
+ expect(replies.last).to eq("No definition found for bar.")
57
+ end
58
+
59
+ it "responds with a warning if the API responded with a non-200 status" do
60
+ response = double("Faraday::Response", status: 500)
61
+ allow_any_instance_of(Faraday::Connection).to receive(:get).and_return(
62
+ response
63
+ )
64
+ send_command("ud bar")
65
+ expect(replies.last).to eq("No definition found for bar.")
66
+ end
67
+ end
68
+ end
@@ -0,0 +1,10 @@
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-urban-dictionary"
10
+ require "lita/rspec"
metadata ADDED
@@ -0,0 +1,142 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lita-urban-dictionary
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jimmy Cuadra
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-07-30 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.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '2.1'
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: '2.14'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: '2.14'
69
+ - !ruby/object:Gem::Dependency
70
+ name: simplecov
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: coveralls
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: A Lita handler for fetching definitions from Urban Dictionary.
98
+ email:
99
+ - jimmy@jimmycuadra.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - .gitignore
105
+ - .travis.yml
106
+ - Gemfile
107
+ - LICENSE
108
+ - README.md
109
+ - Rakefile
110
+ - lib/lita-urban-dictionary.rb
111
+ - lib/lita/handlers/urban_dictionary.rb
112
+ - lita-urban-dictionary.gemspec
113
+ - spec/lita/handlers/urban_dictionary_spec.rb
114
+ - spec/spec_helper.rb
115
+ homepage: https://github.com/jimmycuadra/lita-urban-dictionary
116
+ licenses:
117
+ - MIT
118
+ metadata: {}
119
+ post_install_message:
120
+ rdoc_options: []
121
+ require_paths:
122
+ - lib
123
+ required_ruby_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - '>='
126
+ - !ruby/object:Gem::Version
127
+ version: '0'
128
+ required_rubygems_version: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - '>='
131
+ - !ruby/object:Gem::Version
132
+ version: '0'
133
+ requirements: []
134
+ rubyforge_project:
135
+ rubygems_version: 2.0.3
136
+ signing_key:
137
+ specification_version: 4
138
+ summary: A Lita handler for fetching definitions from Urban Dictionary.
139
+ test_files:
140
+ - spec/lita/handlers/urban_dictionary_spec.rb
141
+ - spec/spec_helper.rb
142
+ has_rdoc: