dry-web-web_pipe 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +12 -0
- data/.github/ISSUE_TEMPLATE/----please-don-t-ask-for-support-via-issues.md +10 -0
- data/.github/ISSUE_TEMPLATE/---bug-report.md +30 -0
- data/.github/ISSUE_TEMPLATE/---feature-request.md +18 -0
- data/.github/workflows/custom_ci.yml +50 -0
- data/.github/workflows/docsite.yml +34 -0
- data/.github/workflows/sync_configs.yml +34 -0
- data/.rspec +2 -0
- data/.rubocop.yml +95 -0
- data/CHANGELOG.md +15 -1
- data/CODE_OF_CONDUCT.md +13 -0
- data/CONTRIBUTING.md +3 -3
- data/Gemfile +2 -3
- data/LICENSE +16 -18
- data/dry-web-web_pipe.gemspec +1 -1
- data/lib/dry/web/web_pipe/generators/inflections.rb +3 -3
- data/lib/dry/web/web_pipe/inflector.rb +9 -0
- data/lib/dry/web/web_pipe/templates/Gemfile +5 -3
- data/lib/dry/web/web_pipe/templates/types.rb +2 -2
- data/lib/dry/web/web_pipe/version.rb +1 -1
- metadata +16 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88023b6f41445498bd3c8f6857f19870d56225f94c4e8b623afe803ecef3f8c8
|
4
|
+
data.tar.gz: 2019a996d64178d01c09ab945232b5d26090f7f31d673f5ee4e765c8e41d10e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87c464e76d1ea54937a6849f036a8e925665b51bf13404d2550451e65dec039b09dda872bc87131f0eb4054f726209aa5b1645ea26e0f7318d951dde0d79bab9
|
7
|
+
data.tar.gz: 7946b9fbff9d7fdb0798fbd5da2e7735b92fcf0284eee2476ecefe9824a2d6337e0b2faf6a405db30e2ca5e77d6bae7b03f7f99407fa22f62140dcbd69a62de3
|
data/.codeclimate.yml
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
---
|
2
|
+
name: "\U0001F41B Bug report"
|
3
|
+
about: See CONTRIBUTING.md for more information
|
4
|
+
title: ''
|
5
|
+
labels: bug
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
**Before you submit this: WE ONLY ACCEPT BUG REPORTS AND FEATURE REQUESTS**
|
11
|
+
|
12
|
+
For more information see `CONTRIBUTING.md`.
|
13
|
+
|
14
|
+
**Describe the bug**
|
15
|
+
|
16
|
+
A clear and concise description of what the bug is.
|
17
|
+
|
18
|
+
**To Reproduce**
|
19
|
+
|
20
|
+
Provide detailed steps to reproduce, an executable script would be best.
|
21
|
+
|
22
|
+
**Expected behavior**
|
23
|
+
|
24
|
+
A clear and concise description of what you expected to happen.
|
25
|
+
|
26
|
+
**Your environment**
|
27
|
+
|
28
|
+
- Affects my production application: **YES/NO**
|
29
|
+
- Ruby version: ...
|
30
|
+
- OS: ...
|
@@ -0,0 +1,18 @@
|
|
1
|
+
---
|
2
|
+
name: "\U0001F6E0 Feature request"
|
3
|
+
about: See CONTRIBUTING.md for more information
|
4
|
+
title: ''
|
5
|
+
labels: feature
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
Summary of what the feature is supposed to do.
|
11
|
+
|
12
|
+
## Examples
|
13
|
+
|
14
|
+
Code examples showing how the feature could be used.
|
15
|
+
|
16
|
+
## Resources
|
17
|
+
|
18
|
+
Additional information, like a link to the discussion forum thread where the feature was discussed etc.
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# this file is managed by dry-rb/devtools project
|
2
|
+
|
3
|
+
name: ci
|
4
|
+
|
5
|
+
on:
|
6
|
+
push:
|
7
|
+
paths:
|
8
|
+
- .github/workflows/custom_ci.yml
|
9
|
+
- lib/**
|
10
|
+
- spec/**
|
11
|
+
- Gemfile
|
12
|
+
- "*.gemspec"
|
13
|
+
|
14
|
+
jobs:
|
15
|
+
tests-mri:
|
16
|
+
runs-on: ubuntu-latest
|
17
|
+
services:
|
18
|
+
postgres_db:
|
19
|
+
image: postgres:10.8
|
20
|
+
env:
|
21
|
+
POSTGRES_USER: runner
|
22
|
+
POSTGRES_PASSWORD: ""
|
23
|
+
POSTGRES_DB: sandbox_development
|
24
|
+
ports:
|
25
|
+
- 5432:5432
|
26
|
+
# needed because the postgres container does not provide a healthcheck
|
27
|
+
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
28
|
+
strategy:
|
29
|
+
fail-fast: false
|
30
|
+
matrix:
|
31
|
+
ruby: ["2.6.x", "2.5.x", "2.4.x"]
|
32
|
+
include:
|
33
|
+
- ruby: "2.6.x"
|
34
|
+
coverage: "true"
|
35
|
+
steps:
|
36
|
+
- uses: actions/checkout@v1
|
37
|
+
- name: Install dependencies
|
38
|
+
run: sudo apt-get install -y --no-install-recommends libpq-dev
|
39
|
+
- name: Set up Ruby
|
40
|
+
uses: actions/setup-ruby@v1
|
41
|
+
with:
|
42
|
+
ruby-version: ${{matrix.ruby}}
|
43
|
+
- name: Bundle install
|
44
|
+
run: |
|
45
|
+
gem install bundler
|
46
|
+
bundle install --jobs 4 --retry 3 --without tools docs benchmarks
|
47
|
+
- name: Run all tests
|
48
|
+
env:
|
49
|
+
COVERAGE: ${{matrix.coverage}}
|
50
|
+
run: bundle exec rake
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# this file is managed by dry-rb/devtools project
|
2
|
+
|
3
|
+
name: docsite
|
4
|
+
|
5
|
+
on:
|
6
|
+
push:
|
7
|
+
paths:
|
8
|
+
- docsite/**
|
9
|
+
- .github/workflows/docsite.yml
|
10
|
+
branches:
|
11
|
+
- master
|
12
|
+
- release-**
|
13
|
+
tags:
|
14
|
+
|
15
|
+
jobs:
|
16
|
+
update-docs:
|
17
|
+
runs-on: ubuntu-latest
|
18
|
+
steps:
|
19
|
+
- uses: actions/checkout@v1
|
20
|
+
- name: Set up Ruby
|
21
|
+
uses: actions/setup-ruby@v1
|
22
|
+
with:
|
23
|
+
ruby-version: "2.6.x"
|
24
|
+
- name: Install dependencies
|
25
|
+
run: |
|
26
|
+
gem install bundler
|
27
|
+
bundle install --jobs 4 --retry 3 --without benchmarks sql
|
28
|
+
- name: Symlink ossy
|
29
|
+
run: mkdir -p bin && ln -sf "$(bundle show ossy)/bin/ossy" bin/ossy
|
30
|
+
- name: Trigger dry-rb.org deploy
|
31
|
+
env:
|
32
|
+
GITHUB_LOGIN: dry-bot
|
33
|
+
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
|
34
|
+
run: bin/ossy github workflow dry-rb/dry-rb.org ci
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# this file is managed by dry-rb/devtools project
|
2
|
+
|
3
|
+
name: sync_configs
|
4
|
+
|
5
|
+
on:
|
6
|
+
repository_dispatch:
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
sync-configs:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
if: github.event.action == 'sync_configs'
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v1
|
14
|
+
- name: Update configuration files from devtools
|
15
|
+
env:
|
16
|
+
GITHUB_LOGIN: dry-bot
|
17
|
+
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
|
18
|
+
run: |
|
19
|
+
git clone https://github.com/dry-rb/devtools.git tmp/devtools
|
20
|
+
|
21
|
+
if [ -f ".github/workflows/custom_ci.yml" ]; then
|
22
|
+
rsync -av --exclude '.github/workflows/ci.yml' tmp/devtools/shared/ . ;
|
23
|
+
else
|
24
|
+
rsync -av tmp/devtools/shared/ . ;
|
25
|
+
fi
|
26
|
+
|
27
|
+
git config --local user.email "dry-bot@dry-rb.org"
|
28
|
+
git config --local user.name "dry-bot"
|
29
|
+
git add -A
|
30
|
+
git commit -m "[devtools] config sync" || echo "nothing changed"
|
31
|
+
- name: Push changes
|
32
|
+
uses: ad-m/github-push-action@master
|
33
|
+
with:
|
34
|
+
github_token: ${{ secrets.GH_PAT }}
|
data/.rspec
CHANGED
data/.rubocop.yml
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
# this file is managed by dry-rb/devtools project
|
2
|
+
|
3
|
+
AllCops:
|
4
|
+
TargetRubyVersion: 2.4
|
5
|
+
|
6
|
+
Style/EachWithObject:
|
7
|
+
Enabled: false
|
8
|
+
|
9
|
+
Style/StringLiterals:
|
10
|
+
Enabled: true
|
11
|
+
EnforcedStyle: single_quotes
|
12
|
+
|
13
|
+
Style/Alias:
|
14
|
+
Enabled: false
|
15
|
+
|
16
|
+
Style/LambdaCall:
|
17
|
+
Enabled: false
|
18
|
+
|
19
|
+
Style/StabbyLambdaParentheses:
|
20
|
+
Enabled: false
|
21
|
+
|
22
|
+
Style/FormatString:
|
23
|
+
Enabled: false
|
24
|
+
|
25
|
+
Style/Documentation:
|
26
|
+
Enabled: false
|
27
|
+
|
28
|
+
Layout/SpaceInLambdaLiteral:
|
29
|
+
Enabled: false
|
30
|
+
|
31
|
+
Layout/MultilineMethodCallIndentation:
|
32
|
+
Enabled: true
|
33
|
+
EnforcedStyle: indented
|
34
|
+
|
35
|
+
Metrics/LineLength:
|
36
|
+
Max: 100
|
37
|
+
|
38
|
+
Metrics/MethodLength:
|
39
|
+
Max: 22
|
40
|
+
|
41
|
+
Metrics/ClassLength:
|
42
|
+
Max: 150
|
43
|
+
|
44
|
+
Metrics/AbcSize:
|
45
|
+
Max: 20
|
46
|
+
|
47
|
+
Metrics/BlockLength:
|
48
|
+
Enabled: false
|
49
|
+
|
50
|
+
Metrics/CyclomaticComplexity:
|
51
|
+
Enabled: true
|
52
|
+
Max: 10
|
53
|
+
|
54
|
+
Lint/BooleanSymbol:
|
55
|
+
Enabled: false
|
56
|
+
|
57
|
+
Style/AccessModifierDeclarations:
|
58
|
+
Enabled: false
|
59
|
+
|
60
|
+
Style/BlockDelimiters:
|
61
|
+
Enabled: false
|
62
|
+
|
63
|
+
Layout/IndentFirstArrayElement:
|
64
|
+
EnforcedStyle: consistent
|
65
|
+
|
66
|
+
Style/ClassAndModuleChildren:
|
67
|
+
Exclude:
|
68
|
+
- "spec/**/*_spec.rb"
|
69
|
+
|
70
|
+
Lint/HandleExceptions:
|
71
|
+
Exclude:
|
72
|
+
- "spec/spec_helper.rb"
|
73
|
+
|
74
|
+
Naming/FileName:
|
75
|
+
Exclude:
|
76
|
+
- "lib/dry-*.rb"
|
77
|
+
|
78
|
+
Style/SymbolArray:
|
79
|
+
Exclude:
|
80
|
+
- "spec/**/*_spec.rb"
|
81
|
+
|
82
|
+
Style/ConditionalAssignment:
|
83
|
+
Enabled: false
|
84
|
+
|
85
|
+
Naming/MethodName:
|
86
|
+
Enabled: false
|
87
|
+
|
88
|
+
Style/AsciiComments:
|
89
|
+
Enabled: false
|
90
|
+
|
91
|
+
Style/DateTime:
|
92
|
+
Enabled: false
|
93
|
+
|
94
|
+
Style/IfUnlessModifier:
|
95
|
+
Enabled: false
|
data/CHANGELOG.md
CHANGED
@@ -4,7 +4,21 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
6
6
|
|
7
|
-
#
|
7
|
+
# 0.2.0
|
8
|
+
|
9
|
+
Keep fork updated against dry-web-roda 0.13.1
|
10
|
+
|
11
|
+
## Fixed
|
12
|
+
|
13
|
+
* dry-monitor for rom is correctly configured in the generated boot file (@mlk-yozu)
|
14
|
+
|
15
|
+
## Changed
|
16
|
+
|
17
|
+
* Updated generated Gemfile to use the latest dry-* and rom-* gems (@solnic)
|
18
|
+
* Fixed dry-types warning from the generated `types.rb` (@solnic)
|
19
|
+
* Removed `inflecto` in favor of `dry-inflector` (@solnic)
|
20
|
+
|
21
|
+
# 0.1.0
|
8
22
|
|
9
23
|
[dry-web-roda project](https://github.com/dry-rb/dry-web-roda) has been forked
|
10
24
|
into this repository. For this first version, only the minimal changes to adapt
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
4
|
+
|
5
|
+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
|
6
|
+
|
7
|
+
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
8
|
+
|
9
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
10
|
+
|
11
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
12
|
+
|
13
|
+
This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.4.0, available at [https://www.contributor-covenant.org/version/1/4/code-of-conduct](https://www.contributor-covenant.org/version/1/4/code-of-conduct)
|
data/CONTRIBUTING.md
CHANGED
@@ -6,11 +6,11 @@ If you found a bug, report an issue and describe what's the expected behavior ve
|
|
6
6
|
|
7
7
|
## Reporting feature requests
|
8
8
|
|
9
|
-
Report a feature request **only after discussing it first on [
|
9
|
+
Report a feature request **only after discussing it first on [discourse.dry-rb.org](https://discourse.dry-rb.org)** where it was accepted. Please provide a concise description of the feature, don't link to a discussion thread, and instead summarize what was discussed.
|
10
10
|
|
11
11
|
## Reporting questions, support requests, ideas, concerns etc.
|
12
12
|
|
13
|
-
**PLEASE DON'T** - use [
|
13
|
+
**PLEASE DON'T** - use [discourse.dry-rb.org](http://discourse.dry-rb.org) instead.
|
14
14
|
|
15
15
|
# Pull Request Guidelines
|
16
16
|
|
@@ -26,4 +26,4 @@ Other requirements:
|
|
26
26
|
|
27
27
|
# Asking for help
|
28
28
|
|
29
|
-
If these guidelines aren't helpful, and you're stuck, please post a message on [
|
29
|
+
If these guidelines aren't helpful, and you're stuck, please post a message on [discourse.dry-rb.org](https://discourse.dry-rb.org) or join [our chat](https://dry-rb.zulipchat.com).
|
data/Gemfile
CHANGED
@@ -15,13 +15,12 @@ gem "rerun"
|
|
15
15
|
gem "rack", ">= 2.0"
|
16
16
|
gem "pg"
|
17
17
|
gem "rom", "~> 5.1"
|
18
|
-
gem "rom-factory", "~> 0.
|
19
|
-
gem "rom-sql", "~> 3.
|
18
|
+
gem "rom-factory", "~> 0.10"
|
19
|
+
gem "rom-sql", "~> 3.1"
|
20
20
|
gem "dry-matcher", "~> 0.7"
|
21
21
|
gem "dry-monads", "~> 1.2"
|
22
22
|
gem "dry-struct", "~> 1.0"
|
23
23
|
gem "dry-system", "~> 0.9"
|
24
|
-
gem "dry-transaction", "~> 0.13"
|
25
24
|
gem "dry-types", "~> 1.0"
|
26
25
|
gem "dry-validation", "~> 1.0"
|
27
26
|
gem "dry-view", "~> 0.7"
|
data/LICENSE
CHANGED
@@ -1,22 +1,20 @@
|
|
1
|
-
|
1
|
+
The MIT License (MIT)
|
2
2
|
|
3
|
-
|
3
|
+
Copyright (c) 2015-2019 dry-rb team
|
4
4
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
the following conditions:
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
7
|
+
the Software without restriction, including without limitation the rights to
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
10
|
+
subject to the following conditions:
|
12
11
|
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
15
14
|
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
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, FITNESS
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/dry-web-web_pipe.gemspec
CHANGED
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
21
21
|
spec.required_ruby_version = '>= 2.4.0'
|
22
22
|
|
23
23
|
spec.add_runtime_dependency "dry-configurable", "~> 0.2"
|
24
|
-
spec.add_runtime_dependency "
|
24
|
+
spec.add_runtime_dependency "dry-inflector", "~> 0.2"
|
25
25
|
spec.add_runtime_dependency "thor", "~> 0.19"
|
26
26
|
|
27
27
|
spec.add_development_dependency "aruba"
|
@@ -1,4 +1,4 @@
|
|
1
|
-
require
|
1
|
+
require 'dry/web/web_pipe/inflector'
|
2
2
|
|
3
3
|
module Dry
|
4
4
|
module Web
|
@@ -8,11 +8,11 @@ module Dry
|
|
8
8
|
module_function
|
9
9
|
|
10
10
|
def underscored_name(name)
|
11
|
-
|
11
|
+
Inflector.underscore(name)
|
12
12
|
end
|
13
13
|
|
14
14
|
def camel_cased_name(name)
|
15
|
-
|
15
|
+
Inflector.camelize(underscored_name(name))
|
16
16
|
end
|
17
17
|
end
|
18
18
|
end
|
@@ -1,5 +1,8 @@
|
|
1
1
|
source "https://rubygems.org"
|
2
2
|
|
3
|
+
# TODO: The original content of this Gemfile was generated by dry-web-roda.
|
4
|
+
# It is recommended to review the dependencies and define their version
|
5
|
+
# requirements for gems that miss them.
|
3
6
|
gem "rake"
|
4
7
|
|
5
8
|
# Web framework
|
@@ -17,13 +20,12 @@ gem "rack", ">= 2.0"
|
|
17
20
|
# Database persistence
|
18
21
|
gem "pg"
|
19
22
|
gem "rom", "~> 5.1"
|
20
|
-
gem "rom-sql", "~> 3.
|
23
|
+
gem "rom-sql", "~> 3.1"
|
21
24
|
|
22
25
|
# Application dependencies
|
23
26
|
gem "dry-matcher", "~> 0.7"
|
24
27
|
gem "dry-monads", "~> 1.2"
|
25
28
|
gem "dry-struct", "~> 1.0"
|
26
|
-
gem "dry-transaction", "~> 0.13"
|
27
29
|
gem "dry-types", "~> 1.1"
|
28
30
|
gem "dry-validation", "~> 1.0"
|
29
31
|
gem "dry-view", "~> 0.7"
|
@@ -43,5 +45,5 @@ group :test do
|
|
43
45
|
gem "database_cleaner"
|
44
46
|
gem "poltergeist"
|
45
47
|
gem "rspec"
|
46
|
-
gem "rom-factory", "~> 0.
|
48
|
+
gem "rom-factory", "~> 0.10"
|
47
49
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dry-web-web_pipe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marc Busqué
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 1970-01-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dry-configurable
|
@@ -25,19 +25,19 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0.2'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: dry-inflector
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '0.
|
33
|
+
version: '0.2'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '0.
|
40
|
+
version: '0.2'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: thor
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -144,10 +144,19 @@ executables:
|
|
144
144
|
extensions: []
|
145
145
|
extra_rdoc_files: []
|
146
146
|
files:
|
147
|
+
- ".codeclimate.yml"
|
148
|
+
- ".github/ISSUE_TEMPLATE/----please-don-t-ask-for-support-via-issues.md"
|
149
|
+
- ".github/ISSUE_TEMPLATE/---bug-report.md"
|
150
|
+
- ".github/ISSUE_TEMPLATE/---feature-request.md"
|
151
|
+
- ".github/workflows/custom_ci.yml"
|
152
|
+
- ".github/workflows/docsite.yml"
|
153
|
+
- ".github/workflows/sync_configs.yml"
|
147
154
|
- ".gitignore"
|
148
155
|
- ".rspec"
|
156
|
+
- ".rubocop.yml"
|
149
157
|
- ".travis.yml"
|
150
158
|
- CHANGELOG.md
|
159
|
+
- CODE_OF_CONDUCT.md
|
151
160
|
- CONTRIBUTING.md
|
152
161
|
- Gemfile
|
153
162
|
- LICENSE
|
@@ -165,6 +174,7 @@ files:
|
|
165
174
|
- lib/dry/web/web_pipe/generators/inflections.rb
|
166
175
|
- lib/dry/web/web_pipe/generators/sub_app.rb
|
167
176
|
- lib/dry/web/web_pipe/generators/umbrella_project.rb
|
177
|
+
- lib/dry/web/web_pipe/inflector.rb
|
168
178
|
- lib/dry/web/web_pipe/templates/.env.test.tt
|
169
179
|
- lib/dry/web/web_pipe/templates/.env.tt
|
170
180
|
- lib/dry/web/web_pipe/templates/.gitignore.tt
|
@@ -248,8 +258,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
248
258
|
- !ruby/object:Gem::Version
|
249
259
|
version: '0'
|
250
260
|
requirements: []
|
251
|
-
|
252
|
-
rubygems_version: 2.7.8
|
261
|
+
rubygems_version: 3.0.6
|
253
262
|
signing_key:
|
254
263
|
specification_version: 4
|
255
264
|
summary: web_pipe integration for dry-web apps
|