waylon-jokes 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
+ SHA256:
3
+ metadata.gz: e42f8139af0d116901738ca8bc6a51933818105c491df9a8ebe1f76baf28c175
4
+ data.tar.gz: 72351eff53e4308af07bdce240b23cf07a2b4d7a6ddb28d19725c5b4ef9be4e7
5
+ SHA512:
6
+ metadata.gz: 3ef6e292db6485cf8ad8093c0f8da309e44f166860a409a16bc032d76bc5036d2850aa2fce3b8da1ff60d6cef1446cd59e08a26967354d8e399001ae401372d6
7
+ data.tar.gz: 210c5cf9b02d7fe242e58a1e013e9e5262bc7edca34f1d55f81bf9b1806cdb29bf161c213931d8006ef6933b58ca008cdff30897a78e54f02cb8f7fd6707fde2
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.roxanne.yml ADDED
@@ -0,0 +1,8 @@
1
+ version: 1.0
2
+ stages:
3
+ test:
4
+ image: ruby:3.1
5
+ release:
6
+ image: ruby:3.1
7
+ only:
8
+ - main
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,38 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.1
3
+ NewCops: enable
4
+
5
+ Style/MixinUsage:
6
+ Exclude:
7
+ - "bin/console"
8
+
9
+ Style/StringLiterals:
10
+ Enabled: true
11
+ EnforcedStyle: double_quotes
12
+
13
+ Style/StringLiteralsInInterpolation:
14
+ Enabled: true
15
+ EnforcedStyle: double_quotes
16
+
17
+ Layout/LineLength:
18
+ Max: 120
19
+
20
+ Gemspec/RequireMFA:
21
+ Enabled: false
22
+
23
+ Metrics/AbcSize:
24
+ Max: 19
25
+
26
+ Metrics/CyclomaticComplexity:
27
+ Max: 9
28
+
29
+ Metrics/PerceivedComplexity:
30
+ Max: 9
31
+
32
+ Metrics/MethodLength:
33
+ Max: 20
34
+
35
+ Metrics/BlockLength:
36
+ Exclude:
37
+ - "**/*_spec.rb"
38
+ - "*.gemspec"
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.1.2
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2022-06-19
4
+
5
+ - Initial release
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in waylon-jokes.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "rubocop", "~> 1.7"
data/Gemfile.lock ADDED
@@ -0,0 +1,145 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ waylon-jokes (0.1.0)
5
+ waylon-core (~> 0.2)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ addressable (2.8.0)
11
+ public_suffix (>= 2.0.2, < 5.0)
12
+ ast (2.4.2)
13
+ concurrent-ruby (1.1.10)
14
+ diff-lcs (1.5.0)
15
+ docile (1.4.0)
16
+ faraday (1.10.0)
17
+ faraday-em_http (~> 1.0)
18
+ faraday-em_synchrony (~> 1.0)
19
+ faraday-excon (~> 1.1)
20
+ faraday-httpclient (~> 1.0)
21
+ faraday-multipart (~> 1.0)
22
+ faraday-net_http (~> 1.0)
23
+ faraday-net_http_persistent (~> 1.0)
24
+ faraday-patron (~> 1.0)
25
+ faraday-rack (~> 1.0)
26
+ faraday-retry (~> 1.0)
27
+ ruby2_keywords (>= 0.0.4)
28
+ faraday-em_http (1.0.0)
29
+ faraday-em_synchrony (1.0.0)
30
+ faraday-excon (1.1.0)
31
+ faraday-httpclient (1.0.1)
32
+ faraday-multipart (1.0.4)
33
+ multipart-post (~> 2)
34
+ faraday-net_http (1.0.1)
35
+ faraday-net_http_persistent (1.2.0)
36
+ faraday-patron (1.0.0)
37
+ faraday-rack (1.0.0)
38
+ faraday-retry (1.0.3)
39
+ ffi (1.15.5)
40
+ i18n (1.10.0)
41
+ concurrent-ruby (~> 1.0)
42
+ json (2.6.2)
43
+ moneta (1.5.1)
44
+ mono_logger (1.1.1)
45
+ multi_json (1.15.0)
46
+ multipart-post (2.2.3)
47
+ mustermann (1.1.1)
48
+ ruby2_keywords (~> 0.0.1)
49
+ nio4r (2.5.8)
50
+ parallel (1.22.1)
51
+ parser (3.1.2.0)
52
+ ast (~> 2.4.1)
53
+ public_suffix (4.0.7)
54
+ puma (5.6.4)
55
+ nio4r (~> 2.0)
56
+ rack (2.2.3.1)
57
+ rack-protection (2.2.0)
58
+ rack
59
+ rainbow (3.1.1)
60
+ rake (13.0.6)
61
+ rbnacl (7.1.1)
62
+ ffi
63
+ redis (4.6.0)
64
+ redis-namespace (1.8.2)
65
+ redis (>= 3.0.4)
66
+ regexp_parser (2.5.0)
67
+ resque (2.2.1)
68
+ mono_logger (~> 1.0)
69
+ multi_json (~> 1.0)
70
+ redis-namespace (~> 1.6)
71
+ sinatra (>= 0.9.2)
72
+ rexml (3.2.5)
73
+ rspec (3.11.0)
74
+ rspec-core (~> 3.11.0)
75
+ rspec-expectations (~> 3.11.0)
76
+ rspec-mocks (~> 3.11.0)
77
+ rspec-core (3.11.0)
78
+ rspec-support (~> 3.11.0)
79
+ rspec-expectations (3.11.0)
80
+ diff-lcs (>= 1.2.0, < 2.0)
81
+ rspec-support (~> 3.11.0)
82
+ rspec-mocks (3.11.1)
83
+ diff-lcs (>= 1.2.0, < 2.0)
84
+ rspec-support (~> 3.11.0)
85
+ rspec-support (3.11.0)
86
+ rubocop (1.30.0)
87
+ parallel (~> 1.10)
88
+ parser (>= 3.1.0.0)
89
+ rainbow (>= 2.2.2, < 4.0)
90
+ regexp_parser (>= 1.8, < 3.0)
91
+ rexml (>= 3.2.5, < 4.0)
92
+ rubocop-ast (>= 1.18.0, < 2.0)
93
+ ruby-progressbar (~> 1.7)
94
+ unicode-display_width (>= 1.4.0, < 3.0)
95
+ rubocop-ast (1.18.0)
96
+ parser (>= 3.1.1.0)
97
+ rubocop-rake (0.6.0)
98
+ rubocop (~> 1.0)
99
+ rubocop-rspec (2.11.1)
100
+ rubocop (~> 1.19)
101
+ ruby-progressbar (1.11.0)
102
+ ruby2_keywords (0.0.5)
103
+ simplecov (0.21.2)
104
+ docile (~> 1.1)
105
+ simplecov-html (~> 0.11)
106
+ simplecov_json_formatter (~> 0.1)
107
+ simplecov-html (0.12.3)
108
+ simplecov_json_formatter (0.1.4)
109
+ sinatra (2.2.0)
110
+ mustermann (~> 1.0)
111
+ rack (~> 2.2)
112
+ rack-protection (= 2.2.0)
113
+ tilt (~> 2.0)
114
+ tilt (2.0.10)
115
+ unicode-display_width (2.1.0)
116
+ waylon-core (0.2.0)
117
+ addressable (~> 2.8)
118
+ faraday (~> 1.8)
119
+ i18n (~> 1.8)
120
+ json (~> 2.6)
121
+ moneta (~> 1.4)
122
+ puma (~> 5.5)
123
+ rbnacl (~> 7.1)
124
+ resque (~> 2.2)
125
+ webrick (1.7.0)
126
+ yard (0.9.28)
127
+ webrick (~> 1.7.0)
128
+
129
+ PLATFORMS
130
+ arm64-darwin-21
131
+ x86_64-linux
132
+
133
+ DEPENDENCIES
134
+ bundler (~> 2.3)
135
+ rake (~> 13.0)
136
+ rspec (~> 3.0)
137
+ rubocop (~> 1.7)
138
+ rubocop-rake (~> 0.6)
139
+ rubocop-rspec (~> 2.6)
140
+ simplecov (~> 0.21)
141
+ waylon-jokes!
142
+ yard (~> 0.9, >= 0.9.27)
143
+
144
+ BUNDLED WITH
145
+ 2.3.10
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Jonathan Gnagy
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,50 @@
1
+ # Waylon::Jokes
2
+
3
+ This is a Skill for the [Waylon Bot Framework](https://github.com/jgnagy/waylon) that enables the bot to tell some jokes. The jokes should be safe for work and are all from https://icanhazdadjoke.com/.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'waylon-jokes'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle install
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install waylon-jokes
20
+
21
+ Finally, require the newly installed code in your bot (usually in your `plugins.rb` file under the `# Skills` section):
22
+
23
+ ```ruby
24
+ require "waylon/jokes"
25
+ ```
26
+
27
+ ## Usage
28
+
29
+ The following skills are available by either direct messaging your bot or by `@` mentioning them:
30
+
31
+ * `tell me a joke`:
32
+ * Description: Tells a dad joke
33
+ * Parameters: None
34
+ * Permissions: `*`
35
+ * Alternatives:
36
+ * `joke`
37
+
38
+ ## Development
39
+
40
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
41
+
42
+ To install this gem onto your local machine, run `bundle exec rake install`.
43
+
44
+ ## Contributing
45
+
46
+ Bug reports and pull requests are welcome on GitHub at https://github.com/jgnagy/waylon-joke.
47
+
48
+ ## License
49
+
50
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+ require "rubocop/rake_task"
6
+ require "redis/errors"
7
+ require "resque/tasks"
8
+ require "yard"
9
+ require "waylon/core"
10
+
11
+ RSpec::Core::RakeTask.new(:spec)
12
+ RuboCop::RakeTask.new
13
+ YARD::Rake::YardocTask.new do |y|
14
+ y.options = [
15
+ "--markup", "markdown"
16
+ ]
17
+ end
18
+
19
+ task default: %i[spec rubocop yard]
20
+
21
+ task :demo do
22
+ require "waylon/rspec/test_server"
23
+ end
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "bundler/setup"
5
+ require "waylon/jokes"
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require "irb"
15
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Waylon
4
+ module Jokes
5
+ VERSION = "0.1.0"
6
+ end
7
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "waylon/core"
4
+ require_relative "jokes/version"
5
+
6
+ module Waylon
7
+ module Jokes
8
+ class Error < StandardError; end
9
+ # Your code goes here...
10
+ end
11
+ end
12
+
13
+ require_relative "skills/jokes"
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Waylon
4
+ module Skills
5
+ # Lets Waylon tell some jokes
6
+ class Jokes < Waylon::Skill
7
+ route(
8
+ /^(tell me a )?joke$/i,
9
+ :tell_a_joke,
10
+ help: {
11
+ usage: "[tell me a] joke",
12
+ description: 'Tells a "dad" joke'
13
+ }
14
+ )
15
+
16
+ def tell_a_joke
17
+ conn = Faraday.new(headers: { accept: "application/json" }) do |f|
18
+ f.request :retry
19
+ f.response :json
20
+ end
21
+ response = conn.get("https://icanhazdadjoke.com/")
22
+
23
+ reply(response.body["joke"])
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,9 @@
1
+ #!/bin/sh
2
+
3
+ apt-get update && apt-get install -y libsodium-dev
4
+
5
+ gem install bundler -v '~> 2.3'
6
+ bundle install
7
+ rm -rf pkg/*.gem
8
+ bundle exec rake build
9
+ bundle exec gem push pkg/*.gem
data/scripts/test.sh ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/sh
2
+
3
+ apt-get update && apt-get install -y libsodium-dev
4
+
5
+ gem install bundler -v '~> 2.2'
6
+ bundle install
7
+ bundle exec rake
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/waylon/jokes/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "waylon-jokes"
7
+ spec.version = Waylon::Jokes::VERSION
8
+ spec.authors = ["Jonathan Gnagy"]
9
+ spec.email = ["jonathan.gnagy@gmail.com"]
10
+
11
+ spec.summary = "A Waylon Skill for telling (mostly dad) jokes"
12
+ spec.homepage = "https://github.com/jgnagy/waylon-jokes"
13
+ spec.license = "MIT"
14
+ spec.required_ruby_version = "~> 3.1"
15
+
16
+ spec.metadata["homepage_uri"] = spec.homepage
17
+ spec.metadata["source_code_uri"] = spec.homepage
18
+ spec.metadata["changelog_uri"] = "https://github.com/jgnagy/waylon-jokes/blob/main/CHANGELOG.md"
19
+
20
+ # Specify which files should be added to the gem when it is released.
21
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
23
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
24
+ end
25
+ spec.bindir = "exe"
26
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
27
+ spec.require_paths = ["lib"]
28
+
29
+ spec.add_dependency "waylon-core", "~> 0.2"
30
+
31
+ spec.add_development_dependency "bundler", "~> 2.3"
32
+ spec.add_development_dependency "rake", "~> 13.0"
33
+ spec.add_development_dependency "rspec", "~> 3.10"
34
+ spec.add_development_dependency "rubocop", "~> 1.23"
35
+ spec.add_development_dependency "rubocop-rake", "~> 0.6"
36
+ spec.add_development_dependency "rubocop-rspec", "~> 2.6"
37
+ spec.add_development_dependency "simplecov", "~> 0.21"
38
+ spec.add_development_dependency "yard", "~> 0.9", ">= 0.9.27"
39
+ end
metadata ADDED
@@ -0,0 +1,197 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: waylon-jokes
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Jonathan Gnagy
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-06-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: waylon-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.3'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.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: '13.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '13.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: '3.10'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.10'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rubocop
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.23'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.23'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rubocop-rake
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '0.6'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '0.6'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rubocop-rspec
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '2.6'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '2.6'
111
+ - !ruby/object:Gem::Dependency
112
+ name: simplecov
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '0.21'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '0.21'
125
+ - !ruby/object:Gem::Dependency
126
+ name: yard
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '0.9'
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ version: 0.9.27
135
+ type: :development
136
+ prerelease: false
137
+ version_requirements: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - "~>"
140
+ - !ruby/object:Gem::Version
141
+ version: '0.9'
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: 0.9.27
145
+ description:
146
+ email:
147
+ - jonathan.gnagy@gmail.com
148
+ executables: []
149
+ extensions: []
150
+ extra_rdoc_files: []
151
+ files:
152
+ - ".gitignore"
153
+ - ".roxanne.yml"
154
+ - ".rspec"
155
+ - ".rubocop.yml"
156
+ - ".ruby-version"
157
+ - CHANGELOG.md
158
+ - Gemfile
159
+ - Gemfile.lock
160
+ - LICENSE.txt
161
+ - README.md
162
+ - Rakefile
163
+ - bin/console
164
+ - bin/setup
165
+ - lib/waylon/jokes.rb
166
+ - lib/waylon/jokes/version.rb
167
+ - lib/waylon/skills/jokes.rb
168
+ - scripts/release.sh
169
+ - scripts/test.sh
170
+ - waylon-jokes.gemspec
171
+ homepage: https://github.com/jgnagy/waylon-jokes
172
+ licenses:
173
+ - MIT
174
+ metadata:
175
+ homepage_uri: https://github.com/jgnagy/waylon-jokes
176
+ source_code_uri: https://github.com/jgnagy/waylon-jokes
177
+ changelog_uri: https://github.com/jgnagy/waylon-jokes/blob/main/CHANGELOG.md
178
+ post_install_message:
179
+ rdoc_options: []
180
+ require_paths:
181
+ - lib
182
+ required_ruby_version: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - "~>"
185
+ - !ruby/object:Gem::Version
186
+ version: '3.1'
187
+ required_rubygems_version: !ruby/object:Gem::Requirement
188
+ requirements:
189
+ - - ">="
190
+ - !ruby/object:Gem::Version
191
+ version: '0'
192
+ requirements: []
193
+ rubygems_version: 3.3.7
194
+ signing_key:
195
+ specification_version: 4
196
+ summary: A Waylon Skill for telling (mostly dad) jokes
197
+ test_files: []