rom-factory 0.10.2 → 0.11.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 +4 -4
- data/.action_hero.yml +21 -0
- data/.devtools/templates/changelog.erb +3 -0
- data/.devtools/templates/release.erb +36 -0
- data/.github/FUNDING.yml +1 -0
- data/.github/ISSUE_TEMPLATE/{---bug-report.md → bug-report.md} +6 -10
- data/.github/ISSUE_TEMPLATE/config.yml +5 -0
- data/.github/SUPPORT.md +3 -0
- data/.github/workflows/ci.yml +14 -23
- data/.github/workflows/docsite.yml +5 -4
- data/.github/workflows/rubocop.yml +46 -0
- data/.github/workflows/sync_configs.yml +17 -17
- data/.rubocop.yml +135 -16
- data/CHANGELOG.md +44 -0
- data/CODEOWNERS +1 -0
- data/CONTRIBUTING.md +3 -3
- data/Gemfile +20 -19
- data/Gemfile.devtools +6 -5
- data/LICENSE +1 -1
- data/README.md +3 -3
- data/Rakefile +1 -1
- data/benchmarks/basic.rb +10 -10
- data/changelog.yml +23 -0
- data/docsite/source/index.html.md +162 -1
- data/lib/rom/factory/attribute_registry.rb +2 -2
- data/lib/rom/factory/attributes/association.rb +52 -12
- data/lib/rom/factory/attributes/callable.rb +1 -1
- data/lib/rom/factory/attributes/value.rb +1 -1
- data/lib/rom/factory/attributes.rb +4 -6
- data/lib/rom/factory/builder/persistable.rb +3 -5
- data/lib/rom/factory/builder.rb +8 -18
- data/lib/rom/factory/constants.rb +1 -1
- data/lib/rom/factory/dsl.rb +36 -24
- data/lib/rom/factory/factories.rb +13 -15
- data/lib/rom/factory/registry.rb +2 -2
- data/lib/rom/factory/sequences.rb +1 -1
- data/lib/rom/factory/tuple_evaluator.rb +18 -22
- data/lib/rom/factory/version.rb +1 -1
- data/lib/rom/factory.rb +8 -5
- data/lib/rom-factory.rb +1 -1
- data/project.yml +1 -0
- data/rom-factory.gemspec +9 -10
- metadata +38 -24
- data/.github/ISSUE_TEMPLATE/----please-don-t-ask-for-support-via-issues.md +0 -10
- data/.github/ISSUE_TEMPLATE/----please-don-t-report-feature-requests-via-issues.md +0 -10
- data/.github/ISSUE_TEMPLATE/---a-detailed-bug-report.md +0 -30
- data/.github/ISSUE_TEMPLATE/---feature-request.md +0 -18
- data/.github/workflows/custom/ci.yml +0 -26
- data/Appraisals +0 -9
- data/LICENSE.txt +0 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef868642e36f9a4e7b18c91925f378a2c0da27bd4c7ac6d048650c0c739ce3d9
|
4
|
+
data.tar.gz: 8815cd6d8318b35298ff341e5308e7b76692be6d6af58b076a9c5ddd23688bd2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb80a101f1b6c380ee4660d49756c02a0af58ed60d8c53d7a97ba5f94b5a04b37255a11018c7f47fe0665b71ba4a47ee70c65b1c6418c0d642b7e662bc5beffa
|
7
|
+
data.tar.gz: 9f74c1af825e6927a2f1926963c39ac41b7b74471e2795cd6e8b28d1aca839c8fe1a1c688d4116e371a759ababa0b5df3147fcf8ae6b15fc0aaa5418fc4af9db
|
data/.action_hero.yml
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# This is a config synced from rom-rb/template-gem repo
|
2
|
+
|
3
|
+
sources:
|
4
|
+
- repo: rom-rb/template-gem
|
5
|
+
sync:
|
6
|
+
- "!.github/workflows/ci.yml.erb"
|
7
|
+
- ".action_hero.yml.erb"
|
8
|
+
- ".devtools/templates/*.sync:${{dir}}/${{name}}"
|
9
|
+
- ".github/**/*.*"
|
10
|
+
- "spec/support/*"
|
11
|
+
- "CODE_OF_CONDUCT.md"
|
12
|
+
- "CONTRIBUTING.md"
|
13
|
+
- "CODEOWNERS"
|
14
|
+
- "LICENSE.erb"
|
15
|
+
- "README.erb"
|
16
|
+
- "Gemfile.devtools"
|
17
|
+
- ".rspec"
|
18
|
+
- ".rubocop.yml"
|
19
|
+
- repo: action-hero/workflows
|
20
|
+
sync:
|
21
|
+
- ".github/workflows/*.yml"
|
@@ -0,0 +1,36 @@
|
|
1
|
+
|
2
|
+
<!--- DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS --->
|
3
|
+
|
4
|
+
<% if latest_release.summary %>
|
5
|
+
<%= latest_release.summary %>
|
6
|
+
|
7
|
+
<% end %>
|
8
|
+
|
9
|
+
<% if latest_release.added? %>
|
10
|
+
### Added
|
11
|
+
|
12
|
+
<% latest_release.added.each do |log| %>
|
13
|
+
- <%= log %>
|
14
|
+
<% end %>
|
15
|
+
|
16
|
+
<% end %>
|
17
|
+
<% if latest_release.fixed? %>
|
18
|
+
### Fixed
|
19
|
+
|
20
|
+
<% latest_release.fixed.each do |log| %>
|
21
|
+
- <%= log %>
|
22
|
+
<% end %>
|
23
|
+
|
24
|
+
<% end %>
|
25
|
+
<% if latest_release.changed? %>
|
26
|
+
### Changed
|
27
|
+
|
28
|
+
<% latest_release.changed.each do |log| %>
|
29
|
+
- <%= log %>
|
30
|
+
<% end %>
|
31
|
+
<% end %>
|
32
|
+
<% if previous_release %>
|
33
|
+
<% ver_range = "v#{previous_release.version}...v#{latest_release.version}" %>
|
34
|
+
|
35
|
+
[Compare <%=ver_range%>](https://github.com/rom-rb/<%= project.name %>/compare/<%=ver_range%>)
|
36
|
+
<% end %>
|
data/.github/FUNDING.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
github: hanami
|
@@ -2,28 +2,24 @@
|
|
2
2
|
name: "\U0001F41B Bug report"
|
3
3
|
about: See CONTRIBUTING.md for more information
|
4
4
|
title: ''
|
5
|
-
labels: bug
|
5
|
+
labels: bug, help wanted
|
6
6
|
assignees: ''
|
7
7
|
|
8
8
|
---
|
9
9
|
|
10
|
-
|
11
|
-
|
12
|
-
For more information see `CONTRIBUTING.md`.
|
13
|
-
|
14
|
-
**Describe the bug**
|
10
|
+
## Describe the bug
|
15
11
|
|
16
12
|
A clear and concise description of what the bug is.
|
17
13
|
|
18
|
-
|
14
|
+
## To Reproduce
|
19
15
|
|
20
|
-
Provide detailed steps to reproduce, an executable script would be best
|
16
|
+
Provide detailed steps to reproduce, **an executable script would be best**.
|
21
17
|
|
22
|
-
|
18
|
+
## Expected behavior
|
23
19
|
|
24
20
|
A clear and concise description of what you expected to happen.
|
25
21
|
|
26
|
-
|
22
|
+
## My environment
|
27
23
|
|
28
24
|
- Affects my production application: **YES/NO**
|
29
25
|
- Ruby version: ...
|
data/.github/SUPPORT.md
ADDED
@@ -0,0 +1,3 @@
|
|
1
|
+
## Support
|
2
|
+
|
3
|
+
If you need help with any of the rom-rb libraries, feel free to ask questions on our [discussion forum](https://discourse.rom-rb.org/). This is the best place to seek help. Make sure to search for a potential solution in past threads before posting your question. Thanks! :heart:
|
data/.github/workflows/ci.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
---
|
2
2
|
name: ci
|
3
|
-
|
3
|
+
on:
|
4
4
|
push:
|
5
5
|
paths:
|
6
6
|
- ".github/workflows/ci.yml"
|
@@ -15,7 +15,7 @@ name: ci
|
|
15
15
|
pull_request:
|
16
16
|
branches:
|
17
17
|
- master
|
18
|
-
create:
|
18
|
+
create:
|
19
19
|
jobs:
|
20
20
|
tests:
|
21
21
|
runs-on: ubuntu-latest
|
@@ -23,31 +23,16 @@ jobs:
|
|
23
23
|
fail-fast: false
|
24
24
|
matrix:
|
25
25
|
ruby:
|
26
|
+
- '3.1'
|
27
|
+
- '3.0'
|
26
28
|
- '2.7'
|
27
|
-
- '2.6'
|
28
|
-
- '2.5'
|
29
|
-
- '2.4'
|
30
|
-
- jruby
|
31
|
-
include:
|
32
|
-
- ruby: '2.6'
|
33
|
-
coverage: 'true'
|
34
|
-
- ruby: '2.6'
|
35
|
-
faker: faker-2
|
36
|
-
coverage: 'true'
|
37
|
-
- ruby: jruby
|
38
|
-
database_url: jdbc:postgresql://localhost/rom_factory
|
39
|
-
faker:
|
40
|
-
- faker-1
|
41
|
-
- faker-2
|
42
29
|
env:
|
43
|
-
CLASSPATH: ''
|
44
30
|
COVERAGE: "${{matrix.coverage}}"
|
45
|
-
|
46
|
-
CODACY_PROJECT_TOKEN: "${{secrets.CODACY_PROJECT_TOKEN}}"
|
47
|
-
FAKER: "${{matrix.faker}}"
|
31
|
+
COVERAGE_TOKEN: "${{secrets.CODACY_PROJECT_TOKEN}}"
|
48
32
|
APT_DEPS: libpq-dev libmysqlclient-dev libsqlite3-dev
|
49
33
|
steps:
|
50
|
-
-
|
34
|
+
- name: Checkout
|
35
|
+
uses: actions/checkout@v1
|
51
36
|
- name: Install package dependencies
|
52
37
|
run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS"
|
53
38
|
- name: Set up Ruby
|
@@ -62,6 +47,12 @@ jobs:
|
|
62
47
|
run: bundle install --jobs 4 --retry 3
|
63
48
|
- name: Run all tests
|
64
49
|
run: bundle exec rake
|
50
|
+
- name: Run codacy-coverage-reporter
|
51
|
+
uses: codacy/codacy-coverage-reporter-action@master
|
52
|
+
if: env.COVERAGE == 'true' && env.COVERAGE_TOKEN != ''
|
53
|
+
with:
|
54
|
+
project-token: "${{secrets.CODACY_PROJECT_TOKEN}}"
|
55
|
+
coverage-reports: coverage/coverage.xml
|
65
56
|
services:
|
66
57
|
db:
|
67
58
|
image: postgres:10.8
|
@@ -93,4 +84,4 @@ jobs:
|
|
93
84
|
- name: Trigger release workflow
|
94
85
|
run: |
|
95
86
|
tag=$(echo $GITHUB_REF | cut -d / -f 3)
|
96
|
-
ossy gh w rom-rb/devtools release --payload "{\"tag\":\"$tag\",\"tag_creator\":\"$GITHUB_ACTOR\",\"repo\":\"$GITHUB_REPOSITORY\"}"
|
87
|
+
ossy gh w rom-rb/devtools release --payload "{\"tag\":\"$tag\",\"sha\":\"${{github.sha}}\",\"tag_creator\":\"$GITHUB_ACTOR\",\"repo\":\"$GITHUB_REPOSITORY\",\"repo_name\":\"${{github.event.repository.name}}\"}"
|
@@ -1,6 +1,6 @@
|
|
1
|
-
#
|
1
|
+
# This file is synced from rom-rb/template-gem repo
|
2
2
|
|
3
|
-
name:
|
3
|
+
name: docsite
|
4
4
|
|
5
5
|
on:
|
6
6
|
push:
|
@@ -8,7 +8,7 @@ on:
|
|
8
8
|
- docsite/**
|
9
9
|
- .github/workflows/docsite.yml
|
10
10
|
branches:
|
11
|
-
-
|
11
|
+
- main
|
12
12
|
- release-**
|
13
13
|
tags:
|
14
14
|
|
@@ -51,7 +51,7 @@ jobs:
|
|
51
51
|
|
52
52
|
git push --all "https://rom-bot:${{secrets.GH_PAT}}@github.com/$GITHUB_REPOSITORY.git"
|
53
53
|
|
54
|
-
git checkout
|
54
|
+
git checkout main
|
55
55
|
else
|
56
56
|
echo "no need to update branches"
|
57
57
|
fi
|
@@ -60,3 +60,4 @@ jobs:
|
|
60
60
|
GITHUB_LOGIN: rom-bot
|
61
61
|
GITHUB_TOKEN: ${{secrets.GH_PAT}}
|
62
62
|
run: ossy github workflow rom-rb/rom-rb.org ci
|
63
|
+
|
@@ -0,0 +1,46 @@
|
|
1
|
+
name: "RuboCop"
|
2
|
+
on:
|
3
|
+
push:
|
4
|
+
branches:
|
5
|
+
- "main"
|
6
|
+
- "master"
|
7
|
+
paths:
|
8
|
+
- "**/*.rb"
|
9
|
+
- "**/*.rake"
|
10
|
+
- "Rakefile"
|
11
|
+
- "Gemfile*"
|
12
|
+
- ".rubocop.yml"
|
13
|
+
pull_request:
|
14
|
+
branches:
|
15
|
+
- "main"
|
16
|
+
- "master"
|
17
|
+
types:
|
18
|
+
- "opened"
|
19
|
+
- "synchronize"
|
20
|
+
workflow_dispatch:
|
21
|
+
jobs:
|
22
|
+
run:
|
23
|
+
runs-on: ubuntu-latest
|
24
|
+
name: ${{ matrix.type }}
|
25
|
+
strategy:
|
26
|
+
fail-fast: false
|
27
|
+
matrix:
|
28
|
+
type: ["Style", "Layout", "Naming", "Lint", "Metrics", "Security"]
|
29
|
+
steps:
|
30
|
+
- name: Clone
|
31
|
+
uses: actions/checkout@v2
|
32
|
+
- name: Get git diff
|
33
|
+
id: get_diff
|
34
|
+
uses: technote-space/get-diff-action@v4
|
35
|
+
with:
|
36
|
+
PATTERNS: |
|
37
|
+
**/*.rb
|
38
|
+
**/*.rake
|
39
|
+
Gemfile
|
40
|
+
Rakefile
|
41
|
+
- name: Check ${{ matrix.type }}
|
42
|
+
uses: action-hero/actions/rubocop@main
|
43
|
+
if: ${{ env.GIT_DIFF != '' }}
|
44
|
+
with:
|
45
|
+
diff: ${{ env.GIT_DIFF }}
|
46
|
+
type: ${{ matrix.type }}
|
@@ -1,17 +1,23 @@
|
|
1
|
-
#
|
1
|
+
# This file is synced from rom-rb/template-gem repo
|
2
2
|
|
3
|
-
name:
|
3
|
+
name: Changelog
|
4
4
|
|
5
5
|
on:
|
6
|
-
repository_dispatch:
|
7
6
|
push:
|
7
|
+
paths:
|
8
|
+
- "changelog.yml"
|
8
9
|
branches:
|
9
|
-
- "
|
10
|
+
- "main"
|
11
|
+
pull_request:
|
12
|
+
branches:
|
13
|
+
- "main"
|
14
|
+
types: [closed]
|
10
15
|
|
11
16
|
jobs:
|
12
|
-
|
17
|
+
sync:
|
13
18
|
runs-on: ubuntu-latest
|
14
|
-
if:
|
19
|
+
if: github.event.pull_request.merged == true
|
20
|
+
name: Update
|
15
21
|
env:
|
16
22
|
GITHUB_LOGIN: rom-bot
|
17
23
|
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
|
@@ -28,17 +34,11 @@ jobs:
|
|
28
34
|
git config --local user.email "rom-bot@rom-rb.org"
|
29
35
|
git config --local user.name "rom-bot"
|
30
36
|
- name: Set up Ruby
|
31
|
-
uses:
|
37
|
+
uses: actions/setup-ruby@v1
|
32
38
|
with:
|
33
|
-
ruby-version: 2.6
|
39
|
+
ruby-version: "2.6"
|
34
40
|
- name: Install dependencies
|
35
41
|
run: gem install ossy --no-document
|
36
|
-
- name: Compile file templates
|
37
|
-
run: tmp/devtools/bin/compile-templates
|
38
|
-
- name: Update workflow files from devtools
|
39
|
-
run: tmp/devtools/bin/sync-workflows
|
40
|
-
- name: Update configuration files from devtools
|
41
|
-
run: tmp/devtools/bin/sync-shared-files
|
42
42
|
- name: Update changelog.yml from commit
|
43
43
|
run: tmp/devtools/bin/update-changelog-from-commit $GITHUB_SHA
|
44
44
|
- name: Compile CHANGELOG.md
|
@@ -46,8 +46,8 @@ jobs:
|
|
46
46
|
- name: Commit
|
47
47
|
run: |
|
48
48
|
git add -A
|
49
|
-
git commit -m "
|
49
|
+
git commit -m "Update CHANGELOG.md" || echo "nothing to commit"
|
50
50
|
- name: Push changes
|
51
51
|
run: |
|
52
|
-
git pull --rebase origin
|
53
|
-
git push https://rom-bot:${{secrets.GH_PAT}}@github.com/${{github.repository}}.git HEAD:
|
52
|
+
git pull --rebase origin main
|
53
|
+
git push https://rom-bot:${{secrets.GH_PAT}}@github.com/${{github.repository}}.git HEAD:main
|
data/.rubocop.yml
CHANGED
@@ -1,13 +1,22 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# This is a config synced from rom-rb/template-gem repo
|
3
2
|
AllCops:
|
4
|
-
TargetRubyVersion: 2.
|
3
|
+
TargetRubyVersion: 2.7
|
4
|
+
NewCops: disable
|
5
|
+
SuggestExtensions: false
|
5
6
|
Exclude:
|
6
7
|
- spec/support/coverage.rb
|
7
8
|
- spec/support/warnings.rb
|
9
|
+
- spec/support/rspec_options.rb
|
8
10
|
- Gemfile.devtools
|
9
11
|
- "*.gemspec"
|
10
12
|
|
13
|
+
Layout/ArgumentAlignment:
|
14
|
+
Enabled: false
|
15
|
+
EnforcedStyle: with_fixed_indentation
|
16
|
+
|
17
|
+
Layout/SpaceAroundMethodCallOperator:
|
18
|
+
Enabled: false
|
19
|
+
|
11
20
|
Layout/SpaceInLambdaLiteral:
|
12
21
|
Enabled: false
|
13
22
|
|
@@ -15,7 +24,7 @@ Layout/MultilineMethodCallIndentation:
|
|
15
24
|
Enabled: true
|
16
25
|
EnforcedStyle: indented
|
17
26
|
|
18
|
-
Layout/
|
27
|
+
Layout/FirstArrayElementIndentation:
|
19
28
|
EnforcedStyle: consistent
|
20
29
|
|
21
30
|
Layout/SpaceInsideHashLiteralBraces:
|
@@ -23,13 +32,64 @@ Layout/SpaceInsideHashLiteralBraces:
|
|
23
32
|
EnforcedStyle: no_space
|
24
33
|
EnforcedStyleForEmptyBraces: no_space
|
25
34
|
|
26
|
-
|
35
|
+
Layout/LineLength:
|
36
|
+
Max: 120
|
27
37
|
Exclude:
|
28
|
-
- "spec
|
38
|
+
- "spec/**/*_spec.rb"
|
39
|
+
|
40
|
+
Lint/AmbiguousBlockAssociation:
|
41
|
+
Enabled: true
|
42
|
+
# because 'expect { foo }.to change { bar }' is fine
|
43
|
+
Exclude:
|
44
|
+
- "spec/**/*.rb"
|
29
45
|
|
30
46
|
Lint/BooleanSymbol:
|
31
47
|
Enabled: false
|
32
48
|
|
49
|
+
Lint/MissingSuper:
|
50
|
+
Enabled: false
|
51
|
+
|
52
|
+
Lint/ConstantDefinitionInBlock:
|
53
|
+
Enabled: false
|
54
|
+
|
55
|
+
Lint/EmptyBlock:
|
56
|
+
Exclude:
|
57
|
+
- "spec/**/*.rb"
|
58
|
+
|
59
|
+
Lint/EmptyClass:
|
60
|
+
Exclude:
|
61
|
+
- "spec/**/*.rb"
|
62
|
+
|
63
|
+
Lint/RaiseException:
|
64
|
+
Enabled: false
|
65
|
+
|
66
|
+
Lint/StructNewOverride:
|
67
|
+
Enabled: false
|
68
|
+
|
69
|
+
Lint/SuppressedException:
|
70
|
+
Exclude:
|
71
|
+
- "spec/**/*.rb"
|
72
|
+
|
73
|
+
Lint/UselessMethodDefinition:
|
74
|
+
Exclude:
|
75
|
+
- "lib/rom/struct.rb"
|
76
|
+
|
77
|
+
Lint/UnderscorePrefixedVariableName:
|
78
|
+
Enabled: false
|
79
|
+
|
80
|
+
Lint/ToEnumArguments:
|
81
|
+
Exclude:
|
82
|
+
- "lib/rom/command.rb"
|
83
|
+
|
84
|
+
Naming/MethodParameterName:
|
85
|
+
Enabled: false
|
86
|
+
|
87
|
+
Naming/AccessorMethodName:
|
88
|
+
Enabled: false
|
89
|
+
|
90
|
+
Naming/VariableNumber:
|
91
|
+
Enabled: false
|
92
|
+
|
33
93
|
Naming/PredicateName:
|
34
94
|
Enabled: false
|
35
95
|
|
@@ -43,14 +103,12 @@ Naming/MethodName:
|
|
43
103
|
Naming/MemoizedInstanceVariableName:
|
44
104
|
Enabled: false
|
45
105
|
|
46
|
-
Metrics/LineLength:
|
47
|
-
Max: 100
|
48
|
-
Exclude:
|
49
|
-
- "spec/**/*_spec.rb"
|
50
|
-
|
51
106
|
Metrics/MethodLength:
|
52
107
|
Enabled: false
|
53
108
|
|
109
|
+
Metrics/ModuleLength:
|
110
|
+
Enabled: false
|
111
|
+
|
54
112
|
Metrics/ClassLength:
|
55
113
|
Enabled: false
|
56
114
|
|
@@ -58,12 +116,33 @@ Metrics/BlockLength:
|
|
58
116
|
Enabled: false
|
59
117
|
|
60
118
|
Metrics/AbcSize:
|
61
|
-
Max:
|
119
|
+
Max: 36
|
62
120
|
|
63
121
|
Metrics/CyclomaticComplexity:
|
64
122
|
Enabled: true
|
65
123
|
Max: 12
|
66
124
|
|
125
|
+
Metrics/PerceivedComplexity:
|
126
|
+
Max: 14
|
127
|
+
|
128
|
+
Metrics/ParameterLists:
|
129
|
+
Enabled: false
|
130
|
+
|
131
|
+
Style/AccessorGrouping:
|
132
|
+
Enabled: false
|
133
|
+
|
134
|
+
Style/ExponentialNotation:
|
135
|
+
Enabled: false
|
136
|
+
|
137
|
+
Style/HashEachMethods:
|
138
|
+
Enabled: false
|
139
|
+
|
140
|
+
Style/HashTransformKeys:
|
141
|
+
Enabled: false
|
142
|
+
|
143
|
+
Style/HashTransformValues:
|
144
|
+
Enabled: false
|
145
|
+
|
67
146
|
Style/AccessModifierDeclarations:
|
68
147
|
Enabled: false
|
69
148
|
|
@@ -78,8 +157,7 @@ Style/BlockDelimiters:
|
|
78
157
|
Enabled: false
|
79
158
|
|
80
159
|
Style/ClassAndModuleChildren:
|
81
|
-
|
82
|
-
- "spec/**/*_spec.rb"
|
160
|
+
Enabled: false
|
83
161
|
|
84
162
|
Style/ConditionalAssignment:
|
85
163
|
Enabled: false
|
@@ -102,6 +180,9 @@ Style/GuardClause:
|
|
102
180
|
Style/IfUnlessModifier:
|
103
181
|
Enabled: false
|
104
182
|
|
183
|
+
Style/Lambda:
|
184
|
+
Enabled: false
|
185
|
+
|
105
186
|
Style/LambdaCall:
|
106
187
|
Enabled: false
|
107
188
|
|
@@ -121,8 +202,46 @@ Style/StringLiteralsInInterpolation:
|
|
121
202
|
EnforcedStyle: double_quotes
|
122
203
|
|
123
204
|
Style/SymbolArray:
|
124
|
-
|
125
|
-
|
205
|
+
Enabled: false
|
206
|
+
|
207
|
+
Style/OptionalBooleanParameter:
|
208
|
+
Enabled: false
|
209
|
+
|
210
|
+
Style/MultilineBlockChain:
|
211
|
+
Enabled: false
|
212
|
+
|
213
|
+
Style/DocumentDynamicEvalDefinition:
|
214
|
+
Enabled: false
|
126
215
|
|
127
216
|
Style/TrailingUnderscoreVariable:
|
128
217
|
Enabled: false
|
218
|
+
|
219
|
+
Style/MultipleComparison:
|
220
|
+
Enabled: false
|
221
|
+
|
222
|
+
Style/StringConcatenation:
|
223
|
+
Enabled: false
|
224
|
+
|
225
|
+
Style/OpenStructUse:
|
226
|
+
Enabled: false
|
227
|
+
|
228
|
+
Style/MapToHash:
|
229
|
+
Enabled: false
|
230
|
+
|
231
|
+
Style/FormatStringToken:
|
232
|
+
Enabled: false
|
233
|
+
|
234
|
+
Style/StructInheritance:
|
235
|
+
Enabled: false
|
236
|
+
|
237
|
+
Style/PreferredHashMethods:
|
238
|
+
Enabled: false
|
239
|
+
|
240
|
+
Style/DoubleNegation:
|
241
|
+
Enabled: false
|
242
|
+
|
243
|
+
Style/MissingRespondToMissing:
|
244
|
+
Enabled: false
|
245
|
+
|
246
|
+
Style/CombinableLoops:
|
247
|
+
Enabled: false
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,47 @@
|
|
1
|
+
<!--- DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS --->
|
2
|
+
|
3
|
+
## 0.11.0 2022-11-11
|
4
|
+
|
5
|
+
### Fixed
|
6
|
+
|
7
|
+
- Support for plural Faker generators (@wuarmin)
|
8
|
+
|
9
|
+
### Added
|
10
|
+
|
11
|
+
- Support for one-to-one associations (@ianks)
|
12
|
+
- [internal] cache for Faker constants (@flash-gordon)
|
13
|
+
|
14
|
+
### Changed
|
15
|
+
|
16
|
+
- [BREAKING] attributes are always passed as keywords (@alassek)
|
17
|
+
This may affect your code in places where attributes are passed as hashes.
|
18
|
+
Places like
|
19
|
+
|
20
|
+
```ruby
|
21
|
+
user_attributes = { name: 'Jane' }
|
22
|
+
Factory[:user, user_attributes]
|
23
|
+
```
|
24
|
+
must be updated to
|
25
|
+
```ruby
|
26
|
+
user_attributes = { name: 'Jane' }
|
27
|
+
Factory[:user, **user_attributes]
|
28
|
+
```
|
29
|
+
- Upgraded to the latest versions of dry-rb dependencies, compatible with rom 5.3 (@flash-gordon)
|
30
|
+
- Support for Faker 1.x was dropped (@alassek)
|
31
|
+
|
32
|
+
|
33
|
+
[Compare v0.10.2...v0.11.0](https://github.com/rom-rb/rom-factory/compare/v0.10.2...v0.11.0)
|
34
|
+
|
35
|
+
## 0.10.2 2020-04-05
|
36
|
+
|
37
|
+
|
38
|
+
### Fixed
|
39
|
+
|
40
|
+
- Fix more keyword warnings (@flash-gordon)
|
41
|
+
|
42
|
+
|
43
|
+
[Compare v0.10.1...v0.10.2](https://github.com/rom-rb/rom-factory/compare/v0.10.1...v0.10.2)
|
44
|
+
|
1
45
|
## 0.10.1 2019-12-28
|
2
46
|
|
3
47
|
|
data/CODEOWNERS
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
* @solnic
|
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 [discourse.rom-rb.org](https://discourse.rom-rb.org)** where it was accepted. Please provide a concise description of the feature
|
9
|
+
Report a feature request **only after discussing it first on [discourse.rom-rb.org](https://discourse.rom-rb.org)** where it was accepted. Please provide a concise description of the feature.
|
10
10
|
|
11
11
|
## Reporting questions, support requests, ideas, concerns etc.
|
12
12
|
|
13
|
-
**PLEASE DON'T** - use [discourse.rom-rb.org](
|
13
|
+
**PLEASE DON'T** - use [discourse.rom-rb.org](https://discourse.rom-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 [discourse.rom-rb.org](https://discourse.rom-rb.org)
|
29
|
+
If these guidelines aren't helpful, and you're stuck, please post a message on [discourse.rom-rb.org](https://discourse.rom-rb.org).
|