waylon 0.1.3

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
+ SHA256:
3
+ metadata.gz: 5e8ba4c049c3b7e3290a6909aed66b469cd11be1e496c1090c952ff83824a320
4
+ data.tar.gz: d9105dfc238b869f237f79c31979e204db8965530da95f970b65d926abe0e798
5
+ SHA512:
6
+ metadata.gz: d2eb80b104235f5930c1e910256bea8410c8bed8d5afb0c3c951f6f5226e4b54f96f2ea0cc16c28a67805fc800827d9ea38692f214562e73b6b3fbbaf1427d60
7
+ data.tar.gz: 466dedfd9e97faae7bb38a80ff9276bdb036d15f8b4e299a5efe9b51e9b875db8137abe30070576c53deb53e3d80054fbe9c499bfb087c0a490fca17bbe75cfe
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,4 @@
1
+ version: 1.0
2
+ stages:
3
+ test:
4
+ image: ruby:3.1
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,17 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.0
3
+ NewCops: enable
4
+
5
+ Gemspec/RequireMFA:
6
+ Enabled: false
7
+
8
+ Style/StringLiterals:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Style/StringLiteralsInInterpolation:
13
+ Enabled: true
14
+ EnforcedStyle: double_quotes
15
+
16
+ Layout/LineLength:
17
+ Max: 120
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.1.0
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2021-11-17
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.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,143 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ waylon (0.1.3)
5
+ waylon-core (~> 0.1)
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.9)
14
+ diff-lcs (1.5.0)
15
+ docile (1.4.0)
16
+ faraday (1.9.3)
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.3)
33
+ multipart-post (>= 1.2, < 3)
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
+ i18n (1.9.1)
40
+ concurrent-ruby (~> 1.0)
41
+ json (2.6.1)
42
+ moneta (1.4.2)
43
+ mono_logger (1.1.1)
44
+ multi_json (1.15.0)
45
+ multipart-post (2.1.1)
46
+ mustermann (1.1.1)
47
+ ruby2_keywords (~> 0.0.1)
48
+ nio4r (2.5.8)
49
+ parallel (1.21.0)
50
+ parser (3.1.0.0)
51
+ ast (~> 2.4.1)
52
+ public_suffix (4.0.6)
53
+ puma (5.6.1)
54
+ nio4r (~> 2.0)
55
+ rack (2.2.3)
56
+ rack-protection (2.1.0)
57
+ rack
58
+ rainbow (3.1.1)
59
+ rake (13.0.6)
60
+ redis (4.6.0)
61
+ redis-namespace (1.8.1)
62
+ redis (>= 3.0.4)
63
+ regexp_parser (2.2.0)
64
+ resque (2.2.0)
65
+ mono_logger (~> 1.0)
66
+ multi_json (~> 1.0)
67
+ redis-namespace (~> 1.6)
68
+ sinatra (>= 0.9.2)
69
+ vegas (~> 0.1.2)
70
+ rexml (3.2.5)
71
+ rspec (3.10.0)
72
+ rspec-core (~> 3.10.0)
73
+ rspec-expectations (~> 3.10.0)
74
+ rspec-mocks (~> 3.10.0)
75
+ rspec-core (3.10.2)
76
+ rspec-support (~> 3.10.0)
77
+ rspec-expectations (3.10.2)
78
+ diff-lcs (>= 1.2.0, < 2.0)
79
+ rspec-support (~> 3.10.0)
80
+ rspec-mocks (3.10.3)
81
+ diff-lcs (>= 1.2.0, < 2.0)
82
+ rspec-support (~> 3.10.0)
83
+ rspec-support (3.10.3)
84
+ rubocop (1.25.1)
85
+ parallel (~> 1.10)
86
+ parser (>= 3.1.0.0)
87
+ rainbow (>= 2.2.2, < 4.0)
88
+ regexp_parser (>= 1.8, < 3.0)
89
+ rexml
90
+ rubocop-ast (>= 1.15.1, < 2.0)
91
+ ruby-progressbar (~> 1.7)
92
+ unicode-display_width (>= 1.4.0, < 3.0)
93
+ rubocop-ast (1.15.1)
94
+ parser (>= 3.0.1.1)
95
+ rubocop-rake (0.6.0)
96
+ rubocop (~> 1.0)
97
+ rubocop-rspec (2.8.0)
98
+ rubocop (~> 1.19)
99
+ ruby-progressbar (1.11.0)
100
+ ruby2_keywords (0.0.5)
101
+ simplecov (0.21.2)
102
+ docile (~> 1.1)
103
+ simplecov-html (~> 0.11)
104
+ simplecov_json_formatter (~> 0.1)
105
+ simplecov-html (0.12.3)
106
+ simplecov_json_formatter (0.1.3)
107
+ sinatra (2.1.0)
108
+ mustermann (~> 1.0)
109
+ rack (~> 2.2)
110
+ rack-protection (= 2.1.0)
111
+ tilt (~> 2.0)
112
+ tilt (2.0.10)
113
+ unicode-display_width (2.1.0)
114
+ vegas (0.1.11)
115
+ rack (>= 1.0.0)
116
+ waylon-core (0.1.3)
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
+ resque (~> 2.2)
124
+ webrick (1.7.0)
125
+ yard (0.9.27)
126
+ webrick (~> 1.7.0)
127
+
128
+ PLATFORMS
129
+ arm64-darwin-21
130
+
131
+ DEPENDENCIES
132
+ bundler (~> 2.3)
133
+ rake (~> 13.0)
134
+ rspec (~> 3.0)
135
+ rubocop (~> 1.7)
136
+ rubocop-rake (~> 0.6)
137
+ rubocop-rspec (~> 2.6)
138
+ simplecov (~> 0.21)
139
+ waylon!
140
+ yard (~> 0.9, >= 0.9.27)
141
+
142
+ BUNDLED WITH
143
+ 2.3.4
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2021 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,27 @@
1
+ # Waylon
2
+
3
+ This is a convenience gem for making the installation of [Waylon::Core](https://github.com/jgnagy/waylon-core) easier. See that gem for information about the Waylon bot framework.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'waylon'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle install
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install waylon
20
+
21
+ ## Contributing
22
+
23
+ Bug reports and pull requests are welcome on GitHub at https://github.com/jgnagy/waylon.
24
+
25
+ ## License
26
+
27
+ 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,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+ require "rubocop/rake_task"
6
+ require "yard"
7
+
8
+ RSpec::Core::RakeTask.new(:spec)
9
+ RuboCop::RakeTask.new
10
+ YARD::Rake::YardocTask.new do |y|
11
+ y.options = [
12
+ "--markup", "markdown"
13
+ ]
14
+ end
15
+
16
+ task default: %i[spec rubocop yard]
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,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Waylon
4
+ # Waylon version
5
+ VERSION = [
6
+ 0, # Major
7
+ 1, # Minor
8
+ 3 # Patch
9
+ ].join(".")
10
+ end
data/waylon.gemspec ADDED
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/waylon/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "waylon"
7
+ spec.version = Waylon::VERSION
8
+ spec.authors = ["Jonathan Gnagy"]
9
+ spec.email = ["jonathan@therubyist.org"]
10
+
11
+ spec.summary = "Wrapper gem for the Waylon Bot Framework"
12
+ spec.description = "Wrapper gem to ease the installation of the Waylon Bot Framework"
13
+ spec.homepage = "https://github.com/jgnagy/waylon"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = "~> 3.0"
16
+
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["source_code_uri"] = "https://github.com/jgnagy/waylon"
19
+ spec.metadata["changelog_uri"] = "https://github.com/jgnagy/waylon/blob/main/CHANGELOG.md"
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
25
+ end
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ spec.add_dependency "waylon-core", "~> 0.1"
31
+
32
+ spec.add_development_dependency "bundler", "~> 2.3"
33
+ spec.add_development_dependency "rake", "~> 13.0"
34
+ spec.add_development_dependency "rspec", "~> 3.10"
35
+ spec.add_development_dependency "rubocop", "~> 1.23"
36
+ spec.add_development_dependency "rubocop-rake", "~> 0.6"
37
+ spec.add_development_dependency "rubocop-rspec", "~> 2.6"
38
+ spec.add_development_dependency "simplecov", "~> 0.21"
39
+ spec.add_development_dependency "yard", "~> 0.9", ">= 0.9.27"
40
+ end
metadata ADDED
@@ -0,0 +1,192 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: waylon
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.3
5
+ platform: ruby
6
+ authors:
7
+ - Jonathan Gnagy
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-02-07 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.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.1'
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: Wrapper gem to ease the installation of the Waylon Bot Framework
146
+ email:
147
+ - jonathan@therubyist.org
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/setup
164
+ - lib/waylon/version.rb
165
+ - waylon.gemspec
166
+ homepage: https://github.com/jgnagy/waylon
167
+ licenses:
168
+ - MIT
169
+ metadata:
170
+ homepage_uri: https://github.com/jgnagy/waylon
171
+ source_code_uri: https://github.com/jgnagy/waylon
172
+ changelog_uri: https://github.com/jgnagy/waylon/blob/main/CHANGELOG.md
173
+ post_install_message:
174
+ rdoc_options: []
175
+ require_paths:
176
+ - lib
177
+ required_ruby_version: !ruby/object:Gem::Requirement
178
+ requirements:
179
+ - - "~>"
180
+ - !ruby/object:Gem::Version
181
+ version: '3.0'
182
+ required_rubygems_version: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - ">="
185
+ - !ruby/object:Gem::Version
186
+ version: '0'
187
+ requirements: []
188
+ rubygems_version: 3.3.3
189
+ signing_key:
190
+ specification_version: 4
191
+ summary: Wrapper gem for the Waylon Bot Framework
192
+ test_files: []