lita-headline-tips 0.1.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: d945a9c76e7b21e598e9ed73b2addae1a97aadfb
4
+ data.tar.gz: cc960129e4c79a795b2dbf55ddfb9ab7283ddb23
5
+ SHA512:
6
+ metadata.gz: dcda4b941a9991230e2246c075b2b3ab2fd24e1facf28e36500ded39a3e52a668fb8e9c9f447dbc280baa4677876f9ccaaef7a8e08e228a6c6e5e0905adc6bb8
7
+ data.tar.gz: e4e9a42b6216adf2f63cc7c01a014376edbe637349062a6d8cdcd7f60581513acd52bfc2ebfe8f301776638909c4a54c9d6a25733b46baa97063da1ffbc7bf8e
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) 2016 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-headline-tips
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
+ Tips about writing good headlines, mostly for the web, adapted from a Yoda quote generator.
6
+
7
+ ## Installation
8
+
9
+ Add lita-headline-tips to your Lita instance's Gemfile:
10
+
11
+ ``` ruby
12
+ gem "lita-headline-tips"
13
+ ```
14
+
15
+ ## Configuration
16
+
17
+ None at the moment.
18
+
19
+ ## Usage
20
+
21
+ ```
22
+ You > Headline tip!
23
+ Lita > Use the active voice, player.
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/headline_tips'
7
+
8
+ Lita::Handlers::HeadlineTips.template_root(File.expand_path(File.join('..', '..', 'templates'), __FILE__))
@@ -0,0 +1,30 @@
1
+ # -*- coding: utf-8 -*-
2
+ # rubocop:disable Metrics/LineLength
3
+ module Lita
4
+ module Handlers
5
+ class HeadlineTips < Handler
6
+ route(/^headline tip!?$/i, :tip, command: false, help: {
7
+ 'headline tip' => 'On writing headlines.'
8
+ })
9
+
10
+ TIPS = ['Shocking: Readers absorb the first 3 and last 3 words of a headline. Start strong, finish even stronger.',
11
+ 'When should you use a question headline? When it addresses the reader directly.',
12
+ 'Be specific: Here are 12 ways to improve your headlines today (Not broad: How to improve your headlines)',
13
+ 'Make sure your headlines work out of context. Will they make sense when shared in social media?',
14
+ 'More headline tips from Poynter: http://www.poynter.org/2011/10-questions-to-help-you-write-better-headlines/140675/',
15
+ 'Omit needless words.',
16
+ 'When helpful, use one of these words: Top, Why, How, Will, New, Secret, Future, Your, Best, Worst.',
17
+ 'Chartbeat recently disproved some of these tips. Sort of. Get the data: http://blog.chartbeat.com/2015/11/20/youll-never-guess-how-chartbeats-data-scientists-came-up-with-the-single-greatest-headline/',
18
+ 'Put yourself in the shoes of your audience and answer their obvious question.',
19
+ 'Long headlines can work well, but only the first 65 characters are visible in Google search.',
20
+ 'https://imgs.xkcd.com/comics/headlines.png '
21
+ ]
22
+
23
+ def tip(request)
24
+ request.reply(TIPS.sample)
25
+ end
26
+ end
27
+
28
+ Lita.register_handler(HeadlineTips)
29
+ end
30
+ end
@@ -0,0 +1,26 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = 'lita-headline-tips'
3
+ spec.version = '0.1.0'
4
+ spec.authors = ['Ryan Sholin']
5
+ spec.email = ['ryansholin@gmail.com']
6
+ spec.description = 'Headline tips, adapted from lita-yoda-quotes by Pierre Rambaud'
7
+ spec.summary = 'Tip about writing headlines, quickly and easily you can get.'
8
+ spec.homepage = 'https://github.com/ryansholin/lita-headline-tips'
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
+ headline_tips:
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ describe Lita::Handlers::HeadlineTips, lita_handler: true do
4
+ it { is_expected.to route('tip!') }
5
+ it { is_expected.to route('tip!') }
6
+ it { is_expected.to route('Tip!') }
7
+ it { is_expected.to route('tip') }
8
+
9
+ it 'Headline Tips' do
10
+ send_message('tip!')
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-headline-tips'
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-headline-tips
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: 2016-02-12 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: Headline tips, 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-headline-tips.rb
140
+ - lib/lita/handlers/headline_tips.rb
141
+ - lita-headline-tips.gemspec
142
+ - locales/en.yml
143
+ - spec/lita/handlers/headline_tips_spec.rb
144
+ - spec/spec_helper.rb
145
+ - templates/.gitkeep
146
+ homepage: https://github.com/ryansholin/lita-headline-tips
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: Tip about writing headlines, quickly and easily you can get.
171
+ test_files:
172
+ - spec/lita/handlers/headline_tips_spec.rb
173
+ - spec/spec_helper.rb