lita-dewey-quotes 0.1.0

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: ce5234a7b3ad5a7f5e7c7baab074f0198f00e5b2
4
+ data.tar.gz: 76e77fa94d3562d50db39e1d403026edb3b7a5e5
5
+ SHA512:
6
+ metadata.gz: 2717fa65d6d32a063e42599d236cee39b8a52dd2adaed975c53cf4c7b95355a88c2d5e327821a50091d727bc8ccce435f6f3a715876f90323e29994eb14693f9
7
+ data.tar.gz: 1f9a9457fcd8356f28d39b5214ae25e74a6a3ce1a44f829cbaae7363ba152a9336d091ea080ebeb9d2eb794fdf6d8e2e03a31bd97145a85cfb47ce512ddace11
data/.gitignore ADDED
@@ -0,0 +1,18 @@
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
18
+ .project
data/.rubocop.yml ADDED
@@ -0,0 +1,4 @@
1
+ Style/Documentation:
2
+ Enabled: false
3
+ Style/FileName:
4
+ Enabled: false
data/.travis.yml ADDED
@@ -0,0 +1,12 @@
1
+ language: ruby
2
+
3
+ rvm:
4
+ - 2.0.0
5
+
6
+ script: bundle exec rake
7
+
8
+ before_install:
9
+ - gem update --system
10
+
11
+ services:
12
+ - redis-server
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) 2015 Ryan Sholin
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,24 @@
1
+ # lita-dewey-quotes
2
+
3
+ [![Build Status](https://travis-ci.org/PierreRambaud/lita-dewey-quotes.png?branch=master)](https://travis-ci.org/PierreRambaud/lita-dewey-quotes) _(I'm not sure what to do with this Travis bit yet. I'll fix this soon.)_
4
+
5
+ Quotes from John Dewey, adapted from a Yoda quote generator.
6
+
7
+ ## Installation
8
+
9
+ Add lita-dewey-quotes to your Lita instance's Gemfile:
10
+
11
+ ``` ruby
12
+ gem "lita-dewey-quotes"
13
+ ```
14
+
15
+ ## Configuration
16
+
17
+ None at the moment.
18
+
19
+ ## Usage
20
+
21
+ ```
22
+ You > Dewey quote!
23
+ Lita > Democracy has to be born anew every generation, and education is its midwife.
24
+ ```
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+ require 'rubocop/rake_task'
4
+
5
+ RuboCop::RakeTask.new(:rubocop)
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: [:spec, :rubocop]
@@ -0,0 +1,8 @@
1
+ require 'lita'
2
+
3
+ # rubocop:disable Metrics/LineLength
4
+ Lita.load_locales(Dir[File.expand_path(File.join('..', '..', 'locales', '*.yml'), __FILE__)])
5
+
6
+ require 'lita/handlers/dewey_quotes'
7
+
8
+ Lita::Handlers::DeweyQuotes.template_root(File.expand_path(File.join('..', '..', 'templates'), __FILE__))
@@ -0,0 +1,29 @@
1
+ # -*- coding: utf-8 -*-
2
+ # rubocop:disable Metrics/LineLength
3
+ module Lita
4
+ module Handlers
5
+ class DeweyQuotes < Handler
6
+ route(/^dewey quote!?$/i, :quote, command: false, help: {
7
+ 'Dewey quote' => 'A random quote from John Dewey.'
8
+ })
9
+
10
+ QUOTES = ['Every thinker puts some portion of an apparently stable world in peril and no one can wholly predict what will emerge in its place.',
11
+ 'Every great advance in science has issued from a new audacity of imagination.',
12
+ 'Democracy means the belief that humanistic culture should prevail.',
13
+ 'It is a familiar and significant saying that a problem well put is half-solved.',
14
+ 'Giving and taking of orders modifies actions and results, but does not of itself effect a sharing of purposes, a communication of interests.',
15
+ 'Still more important is the fact that the human being acquires a habit of learning. He learns to learn.',
16
+ 'A society which is mobile, which is full of channels for the distribution of a change occurring anywhere, must see to it that its members are educated to personal initiative and adaptability.',
17
+ 'Society is one word, but many things.',
18
+ 'Any education given by a group tends to socialize its members, but the quality and value of the socialization depends on the habits and aims of the group.',
19
+ 'But all thinking is research, and all research is native, original, with him who carries it on, even if everybody else in the world already is sure of what he is still looking for. '
20
+ ]
21
+
22
+ def quote(request)
23
+ request.reply(QUOTES.sample)
24
+ end
25
+ end
26
+
27
+ Lita.register_handler(DeweyQuotes)
28
+ end
29
+ end
@@ -0,0 +1,26 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = 'lita-dewey-quotes'
3
+ spec.version = '0.1.0'
4
+ spec.authors = ['Ryan Sholin']
5
+ spec.email = ['ryansholin@gmail.com']
6
+ spec.description = 'John Dewey quotes, adapted from lita-yoda-quotes by Pierre Rambaud'
7
+ spec.summary = 'Quote from dewey, quickly and easily you can get.'
8
+ spec.homepage = 'https://github.com/ryansholin/lita-dewey-quotes'
9
+ spec.license = 'MIT'
10
+ spec.metadata = { 'lita_plugin_type' => 'handler' }
11
+
12
+ spec.files = `git ls-files`.split($RS)
13
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
14
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
15
+ spec.require_paths = ['lib']
16
+
17
+ spec.add_runtime_dependency 'lita', '>= 4.4'
18
+
19
+ spec.add_development_dependency 'bundler', '~> 1.3'
20
+ spec.add_development_dependency 'pry-byebug'
21
+ spec.add_development_dependency 'rake'
22
+ spec.add_development_dependency 'rack-test'
23
+ spec.add_development_dependency 'rspec', '>= 3.0.0'
24
+ spec.add_development_dependency 'simplecov'
25
+ spec.add_development_dependency 'rubocop', '~>0.30'
26
+ end
data/locales/en.yml ADDED
@@ -0,0 +1,4 @@
1
+ en:
2
+ lita:
3
+ handlers:
4
+ dewey_quotes:
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ describe Lita::Handlers::DeweyQuotes, lita_handler: true do
4
+ it { is_expected.to route('quote!') }
5
+ it { is_expected.to route('quote!') }
6
+ it { is_expected.to route('Quote!') }
7
+ it { is_expected.to route('quote') }
8
+
9
+ it 'John Dewey quotes' do
10
+ send_message('quote!')
11
+ expect(replies.last).to be_a(String)
12
+ end
13
+ end
@@ -0,0 +1,11 @@
1
+ require 'simplecov'
2
+
3
+ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
4
+ SimpleCov::Formatter::HTMLFormatter
5
+ ]
6
+ SimpleCov.start { add_filter '/spec/' }
7
+
8
+ require 'lita-dewey-quotes'
9
+ require 'lita/rspec'
10
+
11
+ Lita.version_3_compatibility_mode = false
File without changes
metadata ADDED
@@ -0,0 +1,173 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lita-dewey-quotes
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Ryan Sholin
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-12-20 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.4'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '4.4'
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: pry-byebug
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: 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: rack-test
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: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: 3.0.0
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: 3.0.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: simplecov
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rubocop
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '0.30'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '0.30'
125
+ description: John Dewey quotes, adapted from lita-yoda-quotes by Pierre Rambaud
126
+ email:
127
+ - ryansholin@gmail.com
128
+ executables: []
129
+ extensions: []
130
+ extra_rdoc_files: []
131
+ files:
132
+ - ".gitignore"
133
+ - ".rubocop.yml"
134
+ - ".travis.yml"
135
+ - Gemfile
136
+ - LICENSE
137
+ - README.md
138
+ - Rakefile
139
+ - lib/lita-dewey-quotes.rb
140
+ - lib/lita/handlers/dewey_quotes.rb
141
+ - lita-dewey-quotes.gemspec
142
+ - locales/en.yml
143
+ - spec/lita/handlers/dewey_quotes_spec.rb
144
+ - spec/spec_helper.rb
145
+ - templates/.gitkeep
146
+ homepage: https://github.com/ryansholin/lita-dewey-quotes
147
+ licenses:
148
+ - MIT
149
+ metadata:
150
+ lita_plugin_type: handler
151
+ post_install_message:
152
+ rdoc_options: []
153
+ require_paths:
154
+ - lib
155
+ required_ruby_version: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ required_rubygems_version: !ruby/object:Gem::Requirement
161
+ requirements:
162
+ - - ">="
163
+ - !ruby/object:Gem::Version
164
+ version: '0'
165
+ requirements: []
166
+ rubyforge_project:
167
+ rubygems_version: 2.4.5.1
168
+ signing_key:
169
+ specification_version: 4
170
+ summary: Quote from dewey, quickly and easily you can get.
171
+ test_files:
172
+ - spec/lita/handlers/dewey_quotes_spec.rb
173
+ - spec/spec_helper.rb