lita-likeaboss 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a25947c57b3bafa94407bda3cb0c318b823e2199
4
+ data.tar.gz: 4290731099684b6f9909778c89a6764f9653bd5d
5
+ SHA512:
6
+ metadata.gz: c2c4738aaae77d9af89971f63f9bc5473186f3c9aea58e89c475b071e3b569ad3fcc98c338378440553c523490c1faeac69b9c89db215604e92a7356d02c90e9
7
+ data.tar.gz: 302bbfc54b6f71bea3763eb47eaba55e227eb2cac8cdfb1c24f77abc6b171af8daf91c4fa0cd628517b54f6c595468f4894eb8b82d6dc8a319046ac0c3f7d455
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/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.0.0-p353
data/.travis.yml ADDED
@@ -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,19 @@
1
+ Copyright (c) 2013 Mitch Dempsey
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,23 @@
1
+ # lita-likeaboss
2
+
3
+ [![Build Status](https://travis-ci.org/henrrrik/lita-likeaboss.png)](https://travis-ci.org/likeaboss/lita-likeaboss)
4
+ [![Code Climate](https://codeclimate.com/github/henrrrik/lita-likeaboss.png)](https://codeclimate.com/github/likeaboss/lita-likeaboss)
5
+ [![Coverage Status](https://coveralls.io/repos/henrrrik/lita-likeaboss/badge.png)](https://coveralls.io/r/likeaboss/lita-likeaboss)
6
+
7
+ **lita-likeaboss** is a handler for [Lita](https://github.com/jimmycuadra/lita) that outputs random 'like a boss' images.net. This is based on the hubot likeaboss script.
8
+
9
+ ## Installation
10
+
11
+ Add lita-likeaboss to your Lita instance's Gemfile:
12
+
13
+ ``` ruby
14
+ gem "lita-likeaboss"
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ * `like a boss` - Outputs a radom "like a boss" image
20
+
21
+ ## License
22
+
23
+ [MIT](http://opensource.org/licenses/MIT)
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,47 @@
1
+ require "lita"
2
+
3
+ module Lita
4
+ module Handlers
5
+ class Likeaboss < Handler
6
+
7
+ def self.default_config(config)
8
+ config.command_only = false
9
+ end
10
+
11
+ route %r{like a (boss|baws)|^(boss|baws)$}i, :like_a_boss, help: { "like a boss" => "outputs a random 'like a boss' image"}
12
+
13
+ def like_a_boss(response)
14
+
15
+ images = [
16
+ "http://s3.amazonaws.com/kym-assets/photos/images/original/000/114/151/14185212UtNF3Va6.gif?1302832919",
17
+ "http://s3.amazonaws.com/kym-assets/photos/images/newsfeed/000/110/885/boss.jpg",
18
+ "http://assets.head-fi.org/b/b3/b3ba6b88_funny-facebook-fails-like-a-boss3.jpg",
19
+ "http://img.anongallery.org/img/6/0/like-a-boss.jpg",
20
+ "http://www.demotivers.com/uploads/2011_02/02/7733_1292_500_Like-A-Boss.jpg",
21
+ "http://images.cheezburger.com/completestore/2011/2/20/a4ea536d-4b21-4517-b498-a3491437d224.jpg",
22
+ "http://funcorner.eu/wp-content/uploads/2011/03/like_a_boss.jpg",
23
+ "https://i.chzbgr.com/maxW500/6972126976/hAA5A99AF/",
24
+ "http://like-a-boss.org/wp-content/uploads/2011/06/abd-17.gif",
25
+ "http://like-a-boss.org/wp-content/uploads/2011/06/abd-25.gif",
26
+ "http://like-a-boss.org/wp-content/uploads/2011/06/abd-31.gif",
27
+ "http://like-a-boss.org/wp-content/uploads/2011/06/abd-53.gif",
28
+ "http://like-a-boss.org/wp-content/uploads/2011/06/tumblr_lk82o89vSG1qe0eclo1_r7_500.gif",
29
+ "https://i.chzbgr.com/maxW500/6669391104/h7509954E/",
30
+ "http://i.imgur.com/eNXkb.gif",
31
+ "http://i.imgur.com/WN8Ud.gif",
32
+ "http://i.imgur.com/9y0VV.gif",
33
+ "http://i.imgur.com/68Jtv.gif",
34
+ "http://i.imgur.com/hdVDd.gif",
35
+ "http://i.imgur.com/B0ehW.gif",
36
+ "http://i.imgur.com/3GU2Q.gif",
37
+ "http://i.imgur.com/Z3aAs.gif",
38
+ "http://i.imgur.com/diA9N.gif",
39
+ "http://i.imgur.com/ze3MJ.gif",
40
+ "http://i.imgur.com/rBvJany.gif"
41
+ ]
42
+ response.reply images.sample
43
+ end
44
+ end
45
+ Lita.register_handler(Likeaboss)
46
+ end
47
+ end
@@ -0,0 +1 @@
1
+ require "lita/handlers/likeaboss"
@@ -0,0 +1,23 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = "lita-likeaboss"
3
+ spec.version = "1.0.0"
4
+ spec.authors = ["Henrik Sjökvist"]
5
+ spec.email = ["henrik.sjokvist@gmail.com"]
6
+ spec.description = %q{A Lita handler for outputting random 'like a boss' images.}
7
+ spec.summary = %q{A Lita handler for outputting random 'like a boss' images.}
8
+ spec.homepage = "https://github.com/henrrrik/lita-likeaboss"
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.0"
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,8 @@
1
+ require "spec_helper"
2
+
3
+ describe Lita::Handlers::Likeaboss, lita_handler: true do
4
+ it { routes_command("like a boss").to(:like_a_boss) }
5
+ it { routes_command("like a baws").to(:like_a_boss) }
6
+ it { routes_command("boss").to(:like_a_boss) }
7
+ it { routes_command("baws").to(:like_a_boss) }
8
+ 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-likeaboss"
10
+ require "lita/rspec"
metadata ADDED
@@ -0,0 +1,142 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lita-likeaboss
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Henrik Sjökvist
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-11-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: '2.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '2.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: 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 outputting random 'like a boss' images.
98
+ email:
99
+ - henrik.sjokvist@gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - .gitignore
105
+ - .ruby-version
106
+ - .travis.yml
107
+ - Gemfile
108
+ - LICENSE
109
+ - README.md
110
+ - Rakefile
111
+ - lib/lita-likeaboss.rb
112
+ - lib/lita/handlers/likeaboss.rb
113
+ - lita-likeaboss.gemspec
114
+ - spec/lita/handlers/likeaboss_spec.rb
115
+ - spec/spec_helper.rb
116
+ homepage: https://github.com/henrrrik/lita-likeaboss
117
+ licenses:
118
+ - MIT
119
+ metadata: {}
120
+ post_install_message:
121
+ rdoc_options: []
122
+ require_paths:
123
+ - lib
124
+ required_ruby_version: !ruby/object:Gem::Requirement
125
+ requirements:
126
+ - - '>='
127
+ - !ruby/object:Gem::Version
128
+ version: '0'
129
+ required_rubygems_version: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ requirements: []
135
+ rubyforge_project:
136
+ rubygems_version: 2.0.14
137
+ signing_key:
138
+ specification_version: 4
139
+ summary: A Lita handler for outputting random 'like a boss' images.
140
+ test_files:
141
+ - spec/lita/handlers/likeaboss_spec.rb
142
+ - spec/spec_helper.rb