runger_actions 0.19.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 +7 -0
- data/.github/dependabot.yml +13 -0
- data/.github/workflows/ruby.yml +25 -0
- data/.gitignore +11 -0
- data/.release_assistant.yml +3 -0
- data/.rspec +3 -0
- data/.rubocop.yml +10 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +225 -0
- data/Gemfile +29 -0
- data/Gemfile.lock +268 -0
- data/LICENSE.txt +21 -0
- data/README.md +662 -0
- data/RELEASING.md +7 -0
- data/Rakefile +8 -0
- data/bin/_guard-core +28 -0
- data/bin/console +15 -0
- data/bin/guard +28 -0
- data/bin/release +28 -0
- data/bin/rspec +30 -0
- data/bin/rubocop +30 -0
- data/bin/setup +8 -0
- data/lib/generators/runger_actions/action/USAGE +8 -0
- data/lib/generators/runger_actions/action/action_generator.rb +13 -0
- data/lib/generators/runger_actions/action/templates/action.rb +12 -0
- data/lib/runger_actions/base.rb +229 -0
- data/lib/runger_actions/error.rb +3 -0
- data/lib/runger_actions/result.rb +23 -0
- data/lib/runger_actions/version.rb +5 -0
- data/lib/runger_actions.rb +18 -0
- data/runger_actions.gemspec +34 -0
- metadata +131 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 31d6a155048b68d9c185337c270d65745883c7233cbf2d62d32e4304625e215a
|
4
|
+
data.tar.gz: 5e48b14544e523f23d5bd061e63f836961e54e718e8898bf8be638e382702645
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ef95ab3fa31979b0a9bb780085ef50ba396ec994a0b7e3769d31d6ca222b8f8365231bbad7b375b0137acfe3db1ffe41bc9f4a0f2ca8f7ea6b415655129848f8
|
7
|
+
data.tar.gz: 508050ed87530bfe4b42e2488ffa78e0c4bb462549c6adc3a34c7554edaa3619a1c1a542d408698711d322f8c846f6fe9f066b3c11de45fc2031e3f04d353f46
|
@@ -0,0 +1,25 @@
|
|
1
|
+
name: Run Rspec Tests
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
build:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
steps:
|
12
|
+
- uses: actions/checkout@v3
|
13
|
+
- uses: ruby/setup-ruby@v1
|
14
|
+
with:
|
15
|
+
bundler-cache: true
|
16
|
+
- name: Run Rubocop
|
17
|
+
run: bin/rubocop --format clang
|
18
|
+
- name: Run RSpec tests
|
19
|
+
run: bin/rspec --format progress
|
20
|
+
- name: Ensure alpha version
|
21
|
+
run: grep alpha $(find . -type f -name version.rb)
|
22
|
+
- name: Ensure no git diff
|
23
|
+
run: git diff --exit-code && git diff-index --quiet --cached HEAD
|
24
|
+
- name: Ensure "## Unreleased" is in CHANGELOG.md
|
25
|
+
run: grep "^## Unreleased" CHANGELOG.md
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
inherit_gem:
|
2
|
+
runger_style:
|
3
|
+
- rulesets/default.yml # gem 'rubocop'
|
4
|
+
- rulesets/performance.yml # gem 'rubocop-performance'
|
5
|
+
- rulesets/rspec.yml # gem 'rubocop-rspec'
|
6
|
+
|
7
|
+
AllCops:
|
8
|
+
Exclude:
|
9
|
+
- lib/generators/runger_actions/action/templates/action.rb
|
10
|
+
- vendor/**/*
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
3.2.0
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,225 @@
|
|
1
|
+
## v0.19.0 (2023-05-20)
|
2
|
+
### Added
|
3
|
+
- Release gem via RubyGems.
|
4
|
+
|
5
|
+
## v0.18.0 (2023-05-20)
|
6
|
+
### Breaking Changes
|
7
|
+
- Change project name from "ActiveActions" to "RungerActions"
|
8
|
+
|
9
|
+
## v0.17.1 (2021-03-23)
|
10
|
+
### Fixed
|
11
|
+
- Remove no-longe-accurate claim in README.md that `shaped` must be listed in apps' `Gemfile`s
|
12
|
+
|
13
|
+
## v0.17.0 (2021-02-17)
|
14
|
+
### Added
|
15
|
+
- Allow setting `error_message` on the result object when invoking a `fails_with` case
|
16
|
+
|
17
|
+
### Maintenance
|
18
|
+
- Specify Ruby 3.0.0 for gem development
|
19
|
+
|
20
|
+
## v0.16.1 (2021-02-13)
|
21
|
+
### Docs
|
22
|
+
- Fix README.md typo (change `requires` to `returns`)
|
23
|
+
|
24
|
+
## v0.16.0 (2021-02-01)
|
25
|
+
### Dependencies
|
26
|
+
- Bump `shaped` from 0.7.0 to 0.8.0
|
27
|
+
|
28
|
+
## v0.15.1 (2021-01-28)
|
29
|
+
### Fixed
|
30
|
+
- Mention the correct class (the action class rather than the result class) in error messages when
|
31
|
+
invoking a failure condition when executing via `run!`
|
32
|
+
|
33
|
+
## v0.15.0 (2021-01-28)
|
34
|
+
### BREAKING CHANGES
|
35
|
+
- Change the behavior of the `#run!` instance method to also raise an error if any failure
|
36
|
+
conditions (i.e. failures set via a `fails_with` case) occur during the execution of the action.
|
37
|
+
(Previously, `#run!` would only raise if any of the initialization params were invalid.)
|
38
|
+
|
39
|
+
### Added
|
40
|
+
- Add `::new!` and `::run!` class methods for actions
|
41
|
+
|
42
|
+
## v0.14.2 (2021-01-26)
|
43
|
+
### Dependencies
|
44
|
+
- Bump `release_assistant` to `0.1.1.alpha`
|
45
|
+
|
46
|
+
## v0.14.1 (2021-01-26)
|
47
|
+
### Internal
|
48
|
+
- Move CI from Travis to GitHub Actions
|
49
|
+
- Ensure in PR CI runs that the current version contains "alpha", that there's no git diff (e.g. due
|
50
|
+
to failing to run `bundle` after updating the version), and that there is an "Unreleased" section
|
51
|
+
in `CHANGELOG.md`
|
52
|
+
- Use `release_assistant` gem to manage the release process
|
53
|
+
|
54
|
+
## v0.14.0 (2021-01-21)
|
55
|
+
### Added
|
56
|
+
- Add Rails generator (e.g. `bin/rails g runger_actions:action Users::Create`)
|
57
|
+
|
58
|
+
## v0.13.3 (2020-07-02)
|
59
|
+
### Internal
|
60
|
+
- Source Rubocop rules/config from `runger_style` gem
|
61
|
+
|
62
|
+
## v0.13.2 (2020-06-24)
|
63
|
+
### Dependencies
|
64
|
+
- Bump `shaped` from 0.6.4 to 0.7.0
|
65
|
+
|
66
|
+
## v0.13.1 (2020-06-22)
|
67
|
+
### Docs
|
68
|
+
- List some alternatives
|
69
|
+
- Add detail about the project status/context
|
70
|
+
|
71
|
+
## v0.13.0 (2020-06-22)
|
72
|
+
### Dependencies
|
73
|
+
- Bump `shaped` from 0.6.3 to 0.6.4
|
74
|
+
|
75
|
+
## v0.12.0 (2020-06-22)
|
76
|
+
### Changed
|
77
|
+
- Source `shaped` from RubyGems
|
78
|
+
|
79
|
+
### Docs
|
80
|
+
- Add more badges to README.md (Dependabot; GitHub tag/version)
|
81
|
+
|
82
|
+
## v0.11.0 (2020-06-21)
|
83
|
+
### Fixed
|
84
|
+
- Only check for promised return values if the action is successful
|
85
|
+
|
86
|
+
## v0.10.2 (2020-06-20)
|
87
|
+
### Docs
|
88
|
+
- Add Travis build status badge to README.md
|
89
|
+
|
90
|
+
## v0.10.1 (2020-06-20)
|
91
|
+
### Docs
|
92
|
+
- Add example of controller code using an action
|
93
|
+
- Add a table of contents to README.md
|
94
|
+
- Simplify README.md action example by removing check for NEXMO_API_KEY
|
95
|
+
- Illustrate `returns` in README.md example
|
96
|
+
- Add more detailed documentation/examples to README.md
|
97
|
+
|
98
|
+
## 0.10.0 (2020-06-19)
|
99
|
+
### Added
|
100
|
+
- Validate (at the time of assignment to the `result`) the "shape" of all `returns`ed result values
|
101
|
+
|
102
|
+
### Changed
|
103
|
+
- Tweaked the wording/formatting of some validation failure error messages.
|
104
|
+
|
105
|
+
## v0.9.0 (2020-06-19)
|
106
|
+
### Dependencies
|
107
|
+
- Bump `shaped` from 0.5.8 to 0.6.0
|
108
|
+
|
109
|
+
## v0.8.1 (2020-06-19)
|
110
|
+
### Dependencies
|
111
|
+
- Bump `shaped` from 0.5.0 to 0.5.8
|
112
|
+
|
113
|
+
## v0.8.0 (2020-06-19)
|
114
|
+
### Added
|
115
|
+
- Bump `shaped` from 0.4.0 to 0.5.0, which adds support for a new `Shaped::Shape::Callable` shape
|
116
|
+
description, so you can now do something like this:
|
117
|
+
|
118
|
+
```rb
|
119
|
+
class ProcessOrder < ApplicationAction
|
120
|
+
# allow ordering only 2, 4, or 6 widgets
|
121
|
+
requires :number_of_widgets, ->(num) { num.is_a?(Integer) && (2..6).cover?(num) && num.even? }
|
122
|
+
# [...]
|
123
|
+
end
|
124
|
+
```
|
125
|
+
|
126
|
+
## v0.7.0 (2020-06-18)
|
127
|
+
### Added
|
128
|
+
- Bump `shaped` from 0.3.2 to 0.4.0, which adds support for ActiveModel-style validations of
|
129
|
+
`Shaped::Shape::Class` shapes. So now you can do something like this:
|
130
|
+
|
131
|
+
```rb
|
132
|
+
class ProcessOrder < ApplicationAction
|
133
|
+
requires :number_of_widgets, Integer, numericality: { greater_than: 0, less_than: 1_000 }
|
134
|
+
# [...]
|
135
|
+
end
|
136
|
+
```
|
137
|
+
|
138
|
+
## v0.6.1 (2020-06-18)
|
139
|
+
### Maintenance
|
140
|
+
- Add test coverage reporting (via `codecov` and `simplecov`)
|
141
|
+
|
142
|
+
### Tests
|
143
|
+
- Add test for `Result#success?`
|
144
|
+
|
145
|
+
## v0.6.0 (2020-06-18)
|
146
|
+
### Breaking changes
|
147
|
+
- Update `shaped` (which is used for param validation) from version 0.2.1 to 0.3.0, which has
|
148
|
+
breaking changes. For more details, see the [`shaped`
|
149
|
+
changelog](https://github.com/davidrunger/shaped/blob/master/CHANGELOG.md#030---2020-06-18).
|
150
|
+
- For `requires`, _all_ type/shape descriptions (i.e. arguments `[1..]`) are now passed through the
|
151
|
+
`Shaped::Shape(...)` constructor method. (In most cases, this change will not have any effect,
|
152
|
+
because in most cases the type/shape description was a single class, and this change has no effect
|
153
|
+
in that case.)
|
154
|
+
|
155
|
+
## 0.5.1 - 2020-06-16
|
156
|
+
### Docs
|
157
|
+
- Mention in README.md that `shaped` needs to be installed explicitly/manually as a dependency in the user's own
|
158
|
+
`Gemfile`.
|
159
|
+
|
160
|
+
## 0.5.0 - 2020-06-16
|
161
|
+
### Added
|
162
|
+
- Use [`shaped`](https://github.com/davidrunger/shaped/) gem to describe the shape of Hahes and
|
163
|
+
Arrays
|
164
|
+
|
165
|
+
## 0.4.0 - 2020-06-16
|
166
|
+
### Added
|
167
|
+
- Raise an `RungerActions::MissingResultValue` error if a promised return value (as declared via the
|
168
|
+
`returns` class method on the action) has not been set by the action's `#execute` method.
|
169
|
+
|
170
|
+
## 0.3.1 - 2020-06-16
|
171
|
+
### Fixed
|
172
|
+
- Don't raise an error when running an action that doesn't have any `requires` / input params
|
173
|
+
|
174
|
+
## 0.3.0 - 2020-06-15
|
175
|
+
### Added
|
176
|
+
- Add `RungerActions::Base#run!` method that will raise `RungerActions::InvalidParam` if there are
|
177
|
+
any ActiveRecord params provided to the action that fail any validation(s) specified for that
|
178
|
+
param. This can be used as an (error-raising) alternative to manually checking `action.valid?`.
|
179
|
+
|
180
|
+
## 0.2.2 - 2020-06-15
|
181
|
+
### Added
|
182
|
+
- Prevent mutating a returned `result` from outside of the action
|
183
|
+
|
184
|
+
### Maintenance
|
185
|
+
- Don't install a specific `bundler` version in Travis
|
186
|
+
- Run tests on Travis via `bin/rspec` (rather than (implicitly) via `bundle exec rake`)
|
187
|
+
- Run rubocop in Travis
|
188
|
+
|
189
|
+
## 0.2.1 - 2020-06-15
|
190
|
+
### Added
|
191
|
+
- Raise an explicit error if action class fails to implement #execute
|
192
|
+
|
193
|
+
## 0.2.0 - 2020-06-15
|
194
|
+
### Added
|
195
|
+
- Add stricter type validations and better error messages for type validation failures
|
196
|
+
- Add support for arrays of allowed classes (rather than only allowing a single allowed class type
|
197
|
+
to be specified)
|
198
|
+
|
199
|
+
### Maintenance
|
200
|
+
- Only send Travis notifications when builds fail (not when they pass)
|
201
|
+
- Specify Ruby 2.7.0 (not 2.7.1)
|
202
|
+
- Specify `os: linux` for Travis
|
203
|
+
- Specify `dist: bionic` for Travis
|
204
|
+
|
205
|
+
## 0.1.3 - 2020-06-14
|
206
|
+
### Fixed
|
207
|
+
- Allow #result to return a result even w/o any returns or fails_with
|
208
|
+
|
209
|
+
## 0.1.2 - 2020-06-14
|
210
|
+
### Fixed
|
211
|
+
- Create reader methods on `Result` object for `returns`ed values
|
212
|
+
|
213
|
+
## 0.1.1 - 2020-06-14
|
214
|
+
### Docs
|
215
|
+
- Add usage instructions (including code example) to README.md and make other tweaks to README.md.
|
216
|
+
|
217
|
+
### Maintenance
|
218
|
+
- Add `bin/release` executable
|
219
|
+
|
220
|
+
### Refactor
|
221
|
+
- Autocorrect all autocorrectable rubocop violations
|
222
|
+
|
223
|
+
## 0.1.0 - 2020-06-14
|
224
|
+
- Initial release of RungerActions! Organize and validate the business logic of your Rails
|
225
|
+
application with this combined form object / command object.
|
data/Gemfile
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
ruby '3.2.0'
|
5
|
+
|
6
|
+
# Specify your gem's dependencies in runger_actions.gemspec
|
7
|
+
gemspec
|
8
|
+
|
9
|
+
group :development, :test do
|
10
|
+
gem 'amazing_print'
|
11
|
+
gem 'pry-byebug'
|
12
|
+
gem 'rake', '~> 13.0', require: false
|
13
|
+
gem 'rubocop', require: false
|
14
|
+
gem 'rubocop-performance', require: false
|
15
|
+
gem 'rubocop-rake', require: false
|
16
|
+
gem 'rubocop-rspec', require: false
|
17
|
+
gem 'runger_style', require: false
|
18
|
+
end
|
19
|
+
|
20
|
+
group :development do
|
21
|
+
gem 'release_assistant', require: false, github: 'davidrunger/release_assistant'
|
22
|
+
end
|
23
|
+
|
24
|
+
group :test do
|
25
|
+
gem 'codecov', require: false
|
26
|
+
gem 'rspec', '~> 3.12'
|
27
|
+
gem 'simple_cov-formatter-terminal'
|
28
|
+
gem 'sqlite3'
|
29
|
+
end
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,268 @@
|
|
1
|
+
GIT
|
2
|
+
remote: https://github.com/davidrunger/release_assistant.git
|
3
|
+
revision: bd6955962211ee0d89d699a19a2225c2f52ce500
|
4
|
+
specs:
|
5
|
+
release_assistant (0.3.3.alpha)
|
6
|
+
activesupport (>= 6, < 8)
|
7
|
+
colorize (~> 0.8)
|
8
|
+
memoist (~> 0.16)
|
9
|
+
slop (~> 4.8)
|
10
|
+
|
11
|
+
PATH
|
12
|
+
remote: .
|
13
|
+
specs:
|
14
|
+
runger_actions (0.19.0)
|
15
|
+
memoist (~> 0.16)
|
16
|
+
rails (>= 6, < 8)
|
17
|
+
shaped (>= 0.9, < 0.11)
|
18
|
+
|
19
|
+
GEM
|
20
|
+
remote: https://rubygems.org/
|
21
|
+
specs:
|
22
|
+
actioncable (7.0.4.3)
|
23
|
+
actionpack (= 7.0.4.3)
|
24
|
+
activesupport (= 7.0.4.3)
|
25
|
+
nio4r (~> 2.0)
|
26
|
+
websocket-driver (>= 0.6.1)
|
27
|
+
actionmailbox (7.0.4.3)
|
28
|
+
actionpack (= 7.0.4.3)
|
29
|
+
activejob (= 7.0.4.3)
|
30
|
+
activerecord (= 7.0.4.3)
|
31
|
+
activestorage (= 7.0.4.3)
|
32
|
+
activesupport (= 7.0.4.3)
|
33
|
+
mail (>= 2.7.1)
|
34
|
+
net-imap
|
35
|
+
net-pop
|
36
|
+
net-smtp
|
37
|
+
actionmailer (7.0.4.3)
|
38
|
+
actionpack (= 7.0.4.3)
|
39
|
+
actionview (= 7.0.4.3)
|
40
|
+
activejob (= 7.0.4.3)
|
41
|
+
activesupport (= 7.0.4.3)
|
42
|
+
mail (~> 2.5, >= 2.5.4)
|
43
|
+
net-imap
|
44
|
+
net-pop
|
45
|
+
net-smtp
|
46
|
+
rails-dom-testing (~> 2.0)
|
47
|
+
actionpack (7.0.4.3)
|
48
|
+
actionview (= 7.0.4.3)
|
49
|
+
activesupport (= 7.0.4.3)
|
50
|
+
rack (~> 2.0, >= 2.2.0)
|
51
|
+
rack-test (>= 0.6.3)
|
52
|
+
rails-dom-testing (~> 2.0)
|
53
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
54
|
+
actiontext (7.0.4.3)
|
55
|
+
actionpack (= 7.0.4.3)
|
56
|
+
activerecord (= 7.0.4.3)
|
57
|
+
activestorage (= 7.0.4.3)
|
58
|
+
activesupport (= 7.0.4.3)
|
59
|
+
globalid (>= 0.6.0)
|
60
|
+
nokogiri (>= 1.8.5)
|
61
|
+
actionview (7.0.4.3)
|
62
|
+
activesupport (= 7.0.4.3)
|
63
|
+
builder (~> 3.1)
|
64
|
+
erubi (~> 1.4)
|
65
|
+
rails-dom-testing (~> 2.0)
|
66
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
67
|
+
activejob (7.0.4.3)
|
68
|
+
activesupport (= 7.0.4.3)
|
69
|
+
globalid (>= 0.3.6)
|
70
|
+
activemodel (7.0.4.3)
|
71
|
+
activesupport (= 7.0.4.3)
|
72
|
+
activerecord (7.0.4.3)
|
73
|
+
activemodel (= 7.0.4.3)
|
74
|
+
activesupport (= 7.0.4.3)
|
75
|
+
activestorage (7.0.4.3)
|
76
|
+
actionpack (= 7.0.4.3)
|
77
|
+
activejob (= 7.0.4.3)
|
78
|
+
activerecord (= 7.0.4.3)
|
79
|
+
activesupport (= 7.0.4.3)
|
80
|
+
marcel (~> 1.0)
|
81
|
+
mini_mime (>= 1.1.0)
|
82
|
+
activesupport (7.0.4.3)
|
83
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
84
|
+
i18n (>= 1.6, < 2)
|
85
|
+
minitest (>= 5.1)
|
86
|
+
tzinfo (~> 2.0)
|
87
|
+
amazing_print (1.4.0)
|
88
|
+
ast (2.4.2)
|
89
|
+
builder (3.2.4)
|
90
|
+
byebug (11.1.3)
|
91
|
+
codecov (0.6.0)
|
92
|
+
simplecov (>= 0.15, < 0.22)
|
93
|
+
coderay (1.1.3)
|
94
|
+
colorize (0.8.1)
|
95
|
+
concurrent-ruby (1.2.2)
|
96
|
+
crass (1.0.6)
|
97
|
+
date (3.3.3)
|
98
|
+
diff-lcs (1.5.0)
|
99
|
+
docile (1.4.0)
|
100
|
+
erubi (1.12.0)
|
101
|
+
globalid (1.1.0)
|
102
|
+
activesupport (>= 5.0)
|
103
|
+
i18n (1.13.0)
|
104
|
+
concurrent-ruby (~> 1.0)
|
105
|
+
json (2.6.3)
|
106
|
+
loofah (2.21.3)
|
107
|
+
crass (~> 1.0.2)
|
108
|
+
nokogiri (>= 1.12.0)
|
109
|
+
mail (2.8.1)
|
110
|
+
mini_mime (>= 0.1.1)
|
111
|
+
net-imap
|
112
|
+
net-pop
|
113
|
+
net-smtp
|
114
|
+
marcel (1.0.2)
|
115
|
+
memoist (0.16.2)
|
116
|
+
method_source (1.0.0)
|
117
|
+
mini_mime (1.1.2)
|
118
|
+
mini_portile2 (2.8.2)
|
119
|
+
minitest (5.18.0)
|
120
|
+
net-imap (0.3.4)
|
121
|
+
date
|
122
|
+
net-protocol
|
123
|
+
net-pop (0.1.2)
|
124
|
+
net-protocol
|
125
|
+
net-protocol (0.2.1)
|
126
|
+
timeout
|
127
|
+
net-smtp (0.3.3)
|
128
|
+
net-protocol
|
129
|
+
nio4r (2.5.9)
|
130
|
+
nokogiri (1.15.1-x86_64-darwin)
|
131
|
+
racc (~> 1.4)
|
132
|
+
parallel (1.23.0)
|
133
|
+
parser (3.2.2.1)
|
134
|
+
ast (~> 2.4.1)
|
135
|
+
pry (0.14.2)
|
136
|
+
coderay (~> 1.1)
|
137
|
+
method_source (~> 1.0)
|
138
|
+
pry-byebug (3.10.1)
|
139
|
+
byebug (~> 11.0)
|
140
|
+
pry (>= 0.13, < 0.15)
|
141
|
+
racc (1.6.2)
|
142
|
+
rack (2.2.7)
|
143
|
+
rack-test (2.1.0)
|
144
|
+
rack (>= 1.3)
|
145
|
+
rails (7.0.4.3)
|
146
|
+
actioncable (= 7.0.4.3)
|
147
|
+
actionmailbox (= 7.0.4.3)
|
148
|
+
actionmailer (= 7.0.4.3)
|
149
|
+
actionpack (= 7.0.4.3)
|
150
|
+
actiontext (= 7.0.4.3)
|
151
|
+
actionview (= 7.0.4.3)
|
152
|
+
activejob (= 7.0.4.3)
|
153
|
+
activemodel (= 7.0.4.3)
|
154
|
+
activerecord (= 7.0.4.3)
|
155
|
+
activestorage (= 7.0.4.3)
|
156
|
+
activesupport (= 7.0.4.3)
|
157
|
+
bundler (>= 1.15.0)
|
158
|
+
railties (= 7.0.4.3)
|
159
|
+
rails-dom-testing (2.0.3)
|
160
|
+
activesupport (>= 4.2.0)
|
161
|
+
nokogiri (>= 1.6)
|
162
|
+
rails-html-sanitizer (1.5.0)
|
163
|
+
loofah (~> 2.19, >= 2.19.1)
|
164
|
+
railties (7.0.4.3)
|
165
|
+
actionpack (= 7.0.4.3)
|
166
|
+
activesupport (= 7.0.4.3)
|
167
|
+
method_source
|
168
|
+
rake (>= 12.2)
|
169
|
+
thor (~> 1.0)
|
170
|
+
zeitwerk (~> 2.5)
|
171
|
+
rainbow (3.1.1)
|
172
|
+
rake (13.0.6)
|
173
|
+
regexp_parser (2.8.0)
|
174
|
+
rexml (3.2.5)
|
175
|
+
rouge (4.1.1)
|
176
|
+
rspec (3.12.0)
|
177
|
+
rspec-core (~> 3.12.0)
|
178
|
+
rspec-expectations (~> 3.12.0)
|
179
|
+
rspec-mocks (~> 3.12.0)
|
180
|
+
rspec-core (3.12.2)
|
181
|
+
rspec-support (~> 3.12.0)
|
182
|
+
rspec-expectations (3.12.2)
|
183
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
184
|
+
rspec-support (~> 3.12.0)
|
185
|
+
rspec-mocks (3.12.3)
|
186
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
187
|
+
rspec-support (~> 3.12.0)
|
188
|
+
rspec-support (3.12.0)
|
189
|
+
rubocop (1.51.0)
|
190
|
+
json (~> 2.3)
|
191
|
+
parallel (~> 1.10)
|
192
|
+
parser (>= 3.2.0.0)
|
193
|
+
rainbow (>= 2.2.2, < 4.0)
|
194
|
+
regexp_parser (>= 1.8, < 3.0)
|
195
|
+
rexml (>= 3.2.5, < 4.0)
|
196
|
+
rubocop-ast (>= 1.28.0, < 2.0)
|
197
|
+
ruby-progressbar (~> 1.7)
|
198
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
199
|
+
rubocop-ast (1.28.1)
|
200
|
+
parser (>= 3.2.1.0)
|
201
|
+
rubocop-capybara (2.18.0)
|
202
|
+
rubocop (~> 1.41)
|
203
|
+
rubocop-factory_bot (2.22.0)
|
204
|
+
rubocop (~> 1.33)
|
205
|
+
rubocop-performance (1.17.1)
|
206
|
+
rubocop (>= 1.7.0, < 2.0)
|
207
|
+
rubocop-ast (>= 0.4.0)
|
208
|
+
rubocop-rake (0.6.0)
|
209
|
+
rubocop (~> 1.0)
|
210
|
+
rubocop-rspec (2.22.0)
|
211
|
+
rubocop (~> 1.33)
|
212
|
+
rubocop-capybara (~> 2.17)
|
213
|
+
rubocop-factory_bot (~> 2.22)
|
214
|
+
ruby-progressbar (1.13.0)
|
215
|
+
runger_style (0.2.22)
|
216
|
+
rubocop (>= 1.38.0, < 2)
|
217
|
+
shaped (0.10.0)
|
218
|
+
activemodel (>= 6, < 8)
|
219
|
+
activesupport (>= 6, < 8)
|
220
|
+
simple_cov-formatter-terminal (0.2.2)
|
221
|
+
activesupport (>= 7.0.4, < 8)
|
222
|
+
memoist (>= 0.16.2, < 1)
|
223
|
+
rouge (>= 4.0.0, < 5)
|
224
|
+
rspec-core (>= 3.11.0, < 4)
|
225
|
+
simplecov (>= 0.21.2, < 1)
|
226
|
+
simplecov (0.21.2)
|
227
|
+
docile (~> 1.1)
|
228
|
+
simplecov-html (~> 0.11)
|
229
|
+
simplecov_json_formatter (~> 0.1)
|
230
|
+
simplecov-html (0.12.3)
|
231
|
+
simplecov_json_formatter (0.1.4)
|
232
|
+
slop (4.10.1)
|
233
|
+
sqlite3 (1.6.3)
|
234
|
+
mini_portile2 (~> 2.8.0)
|
235
|
+
thor (1.2.2)
|
236
|
+
timeout (0.3.2)
|
237
|
+
tzinfo (2.0.6)
|
238
|
+
concurrent-ruby (~> 1.0)
|
239
|
+
unicode-display_width (2.4.2)
|
240
|
+
websocket-driver (0.7.5)
|
241
|
+
websocket-extensions (>= 0.1.0)
|
242
|
+
websocket-extensions (0.1.5)
|
243
|
+
zeitwerk (2.6.8)
|
244
|
+
|
245
|
+
PLATFORMS
|
246
|
+
ruby
|
247
|
+
|
248
|
+
DEPENDENCIES
|
249
|
+
amazing_print
|
250
|
+
codecov
|
251
|
+
pry-byebug
|
252
|
+
rake (~> 13.0)
|
253
|
+
release_assistant!
|
254
|
+
rspec (~> 3.12)
|
255
|
+
rubocop
|
256
|
+
rubocop-performance
|
257
|
+
rubocop-rake
|
258
|
+
rubocop-rspec
|
259
|
+
runger_actions!
|
260
|
+
runger_style
|
261
|
+
simple_cov-formatter-terminal
|
262
|
+
sqlite3
|
263
|
+
|
264
|
+
RUBY VERSION
|
265
|
+
ruby 3.2.0p0
|
266
|
+
|
267
|
+
BUNDLED WITH
|
268
|
+
2.2.22
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 David Runger
|
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.
|