waylon-db2docs 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.roxanne.yml +8 -0
- data/.rspec +3 -0
- data/.rubocop.yml +38 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +145 -0
- data/LICENSE.txt +21 -0
- data/README.md +50 -0
- data/Rakefile +23 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/lib/waylon/db2docs/version.rb +11 -0
- data/lib/waylon/db2docs.rb +13 -0
- data/lib/waylon/skills/db2docs.rb +48 -0
- data/scripts/release.sh +9 -0
- data/scripts/test.sh +7 -0
- data/waylon-db2docs.gemspec +39 -0
- metadata +197 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 86419d5ab315d34a064b0c3df635566b70711737bd828633e611415d45a75d88
|
4
|
+
data.tar.gz: 6b441f774e26c74b079d0b982fc0de9d1e50ba070e93bed41fff67650d760eaa
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f22283a8766ca1d581edc89424139d2fb0404bf986789b35f0694d702a8ed15d0174d9697ca9451d848a258bc0023be71c0d68171f16f16933e141b2ea8460d1
|
7
|
+
data.tar.gz: c93667ef77404d3bd21abbb8caadc1373ea3001c7e272dc0c1aef25c5bec1a65380aa573c833778f05a8aa04712346bfb50d3412b1ea76cd2f653af519756760
|
data/.gitignore
ADDED
data/.roxanne.yml
ADDED
data/.rspec
ADDED
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
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,145 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
waylon-db2docs (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-db2docs!
|
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/db2docs"
|
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,48 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Waylon
|
4
|
+
module Skills
|
5
|
+
# Lets Waylon tell some jokes
|
6
|
+
class Db2docs < Waylon::Skill
|
7
|
+
IBM_DB2_ERROR_CODE_RANGES_URL = "https://www.ibm.com/docs/en/db2/11.5?topic=messages-sql"
|
8
|
+
IBM_DB2_ERROR_DOC_BASE = "https://www.ibm.com/docs/en/SSEPGG_11.5.0/com.ibm.db2.luw.messages.sql.doc"
|
9
|
+
|
10
|
+
route(
|
11
|
+
/sql([0-9]{4,})([a-z])/i,
|
12
|
+
:lookup_db2_error_message,
|
13
|
+
help: {
|
14
|
+
usage: "SQL1234N",
|
15
|
+
description: "Mention a Db2 Error Code and Waylon will tell you about it"
|
16
|
+
},
|
17
|
+
mention_only: false
|
18
|
+
)
|
19
|
+
|
20
|
+
def lookup_db2_error_message
|
21
|
+
error_number = tokens.first
|
22
|
+
error_letter = tokens.last.downcase
|
23
|
+
|
24
|
+
range = db2_error_code_ranges.find { |_name, r| r.include?(error_number.to_i) }
|
25
|
+
|
26
|
+
if range
|
27
|
+
threaded_reply(
|
28
|
+
"Hey, that looks like an IBM Db2 SQL Error code! This link that might be of interest: " \
|
29
|
+
"#{IBM_DB2_ERROR_DOC_BASE}/#{range.first.downcase.gsub(/\s/, "")}.html#sql#{error_number}#{error_letter}"
|
30
|
+
)
|
31
|
+
else
|
32
|
+
threaded_reply("I'm having trouble finding that SQL error code on IBM's site")
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def db2_error_code_ranges
|
37
|
+
cache("db2_error_code_ranges", expires: 86_400) do
|
38
|
+
conn = Faraday.new
|
39
|
+
response = conn.get(IBM_DB2_ERROR_CODE_RANGES_URL)
|
40
|
+
raw_ranges = response.body.scan(/SQL[0-9]+\s-\sSQL[0-9]+/)
|
41
|
+
break [] if raw_ranges.empty?
|
42
|
+
|
43
|
+
raw_ranges.to_h { |r| [r, Range.new(*r.gsub("SQL", "").split(" - ").map(&:to_i))] }
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
data/scripts/release.sh
ADDED
data/scripts/test.sh
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/waylon/db2docs/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "waylon-db2docs"
|
7
|
+
spec.version = Waylon::Db2docs::VERSION
|
8
|
+
spec.authors = ["Jonathan Gnagy"]
|
9
|
+
spec.email = ["jonathan.gnagy@gmail.com"]
|
10
|
+
|
11
|
+
spec.summary = "A Waylon Skill for looking up IBM Db2 Documentation"
|
12
|
+
spec.homepage = "https://github.com/jgnagy/waylon-db2docs"
|
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-db2docs/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-db2docs
|
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-22 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/db2docs.rb
|
166
|
+
- lib/waylon/db2docs/version.rb
|
167
|
+
- lib/waylon/skills/db2docs.rb
|
168
|
+
- scripts/release.sh
|
169
|
+
- scripts/test.sh
|
170
|
+
- waylon-db2docs.gemspec
|
171
|
+
homepage: https://github.com/jgnagy/waylon-db2docs
|
172
|
+
licenses:
|
173
|
+
- MIT
|
174
|
+
metadata:
|
175
|
+
homepage_uri: https://github.com/jgnagy/waylon-db2docs
|
176
|
+
source_code_uri: https://github.com/jgnagy/waylon-db2docs
|
177
|
+
changelog_uri: https://github.com/jgnagy/waylon-db2docs/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 looking up IBM Db2 Documentation
|
197
|
+
test_files: []
|