fishplate 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.dependabot/config.yml +0 -7
- data/.github/ISSUE_TEMPLATE/bug_report.md +33 -0
- data/.github/ISSUE_TEMPLATE/config.yml +1 -0
- data/.github/ISSUE_TEMPLATE/story.md +22 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +18 -0
- data/.github/workflows/auto-approve.yml +16 -0
- data/Gemfile.lock +35 -32
- data/lib/fishplate.rb +1 -1
- data/lib/fishplate/version.rb +1 -1
- metadata +11 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c8e4415200bde321e9aeab07fb044bad7aa2656f50dc6ed36b2dc0a1ce6a398
|
4
|
+
data.tar.gz: 4bf052cfc9bff10d183355d902c06e34c9c6ea4898e175b60f036cae876af182
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '03689f60b5a15e0255b969c32e8b715af4b22376e98d8d2d3246ad710a8c419ccf594ef6018f4e170198458a5992d09700c9b015d9e92fe169458a135d712537'
|
7
|
+
data.tar.gz: bb5ef2e780e3e603a95b67a7d5ccc7aa525698aabb4b9875c88e59d6def0c11099759725da7d18938d72d8658d47345c424e009b744d98b331f540e0b5ea986a
|
data/.dependabot/config.yml
CHANGED
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
name: Bug report
|
3
|
+
about: Create a report to track an issue that has been identified
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
**Describe the bug**
|
11
|
+
A clear and concise description of what the bug is.
|
12
|
+
|
13
|
+
**To Reproduce**
|
14
|
+
Steps to reproduce the behavior:
|
15
|
+
1. Go to '...'
|
16
|
+
2. Click on '....'
|
17
|
+
3. Scroll down to '....'
|
18
|
+
4. See error
|
19
|
+
|
20
|
+
**Expected behavior**
|
21
|
+
A clear and concise description of what you expected to happen.
|
22
|
+
|
23
|
+
**Mutation/Query**
|
24
|
+
|
25
|
+
**URL and HTTP method (for non-GQL):**
|
26
|
+
|
27
|
+
**Sentry or Logs URL:**
|
28
|
+
|
29
|
+
**User/authentication details**
|
30
|
+
Impacted user name or service account
|
31
|
+
|
32
|
+
**Additional context**
|
33
|
+
Add any other context about the problem here.
|
@@ -0,0 +1 @@
|
|
1
|
+
blank_issues_enabled: false
|
@@ -0,0 +1,22 @@
|
|
1
|
+
---
|
2
|
+
name: New story
|
3
|
+
about: Add a new story for implementation
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
**Describe the solution**
|
11
|
+
A clear and concise description of what you want to happen.
|
12
|
+
When will this feature be done?
|
13
|
+
|
14
|
+
**Describe the users**
|
15
|
+
Who are we building this feature for?
|
16
|
+
|
17
|
+
**Additional context**
|
18
|
+
Add any other context or screenshots about the feature request here.
|
19
|
+
Link to any applicable documents describing the feature.
|
20
|
+
|
21
|
+
**Designs**
|
22
|
+
Link to any applicable designs on Invision.
|
@@ -0,0 +1,18 @@
|
|
1
|
+
## Description
|
2
|
+
<!--- Describe your changes in detail -->
|
3
|
+
|
4
|
+
## Related issue(s)
|
5
|
+
<!--- GH issue number -->
|
6
|
+
|
7
|
+
## Motivation and Context
|
8
|
+
<!--- Why is this change required? What problem does it solve? -->
|
9
|
+
<!--- If it fixes an open issue, please link to the issue here. -->
|
10
|
+
|
11
|
+
## How Has This Been Tested?
|
12
|
+
<!--- Please describe in detail how you tested your changes. -->
|
13
|
+
|
14
|
+
## Screenshots (if appropriate):
|
15
|
+
<!--- Please add any screenshots of the feature. -->
|
16
|
+
|
17
|
+
## Related PRs
|
18
|
+
<!--- Please add links to any related PRs (backend, component packages, etc). -->
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# automatically approve PRs submitted by Dependabot
|
2
|
+
# this will allow Dependabot to automatically merge dependency update PRs where CI passes
|
3
|
+
# from: https://github.com/hmarr/auto-approve-action
|
4
|
+
name: Auto approve Dependabot PRs
|
5
|
+
|
6
|
+
on:
|
7
|
+
pull_request
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
auto-approve:
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
steps:
|
13
|
+
- uses: hmarr/auto-approve-action@v2.0.0
|
14
|
+
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
|
15
|
+
with:
|
16
|
+
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
fishplate (1.0.
|
4
|
+
fishplate (1.0.6)
|
5
5
|
a9n (~> 1.0)
|
6
6
|
activemodel (~> 6.0)
|
7
7
|
activerecord (~> 6.0)
|
@@ -12,70 +12,73 @@ PATH
|
|
12
12
|
GEM
|
13
13
|
remote: https://rubygems.org/
|
14
14
|
specs:
|
15
|
-
a9n (1.2.
|
16
|
-
activemodel (6.0.
|
17
|
-
activesupport (= 6.0.
|
18
|
-
activerecord (6.0.
|
19
|
-
activemodel (= 6.0.
|
20
|
-
activesupport (= 6.0.
|
21
|
-
activesupport (6.0.
|
15
|
+
a9n (1.2.2)
|
16
|
+
activemodel (6.0.3.2)
|
17
|
+
activesupport (= 6.0.3.2)
|
18
|
+
activerecord (6.0.3.2)
|
19
|
+
activemodel (= 6.0.3.2)
|
20
|
+
activesupport (= 6.0.3.2)
|
21
|
+
activesupport (6.0.3.2)
|
22
22
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
23
23
|
i18n (>= 0.7, < 2)
|
24
24
|
minitest (~> 5.1)
|
25
25
|
tzinfo (~> 1.1)
|
26
|
-
zeitwerk (~> 2.2)
|
27
|
-
ast (2.4.
|
28
|
-
coderay (1.1.
|
29
|
-
concurrent-ruby (1.1.
|
30
|
-
diff-lcs (1.
|
31
|
-
i18n (1.8.
|
26
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
27
|
+
ast (2.4.1)
|
28
|
+
coderay (1.1.3)
|
29
|
+
concurrent-ruby (1.1.7)
|
30
|
+
diff-lcs (1.4.4)
|
31
|
+
i18n (1.8.5)
|
32
32
|
concurrent-ruby (~> 1.0)
|
33
|
-
jaro_winkler (1.5.4)
|
34
33
|
method_source (1.0.0)
|
35
|
-
minitest (5.14.
|
36
|
-
parallel (1.19.
|
37
|
-
parser (2.7.1.
|
38
|
-
ast (~> 2.4.
|
34
|
+
minitest (5.14.1)
|
35
|
+
parallel (1.19.2)
|
36
|
+
parser (2.7.1.4)
|
37
|
+
ast (~> 2.4.1)
|
39
38
|
pry (0.13.1)
|
40
39
|
coderay (~> 1.1)
|
41
40
|
method_source (~> 1.0)
|
42
41
|
rainbow (3.0.0)
|
43
42
|
rake (13.0.1)
|
43
|
+
regexp_parser (1.7.1)
|
44
44
|
rexml (3.2.4)
|
45
45
|
rspec (3.9.0)
|
46
46
|
rspec-core (~> 3.9.0)
|
47
47
|
rspec-expectations (~> 3.9.0)
|
48
48
|
rspec-mocks (~> 3.9.0)
|
49
|
-
rspec-core (3.9.
|
50
|
-
rspec-support (~> 3.9.
|
51
|
-
rspec-expectations (3.9.
|
49
|
+
rspec-core (3.9.2)
|
50
|
+
rspec-support (~> 3.9.3)
|
51
|
+
rspec-expectations (3.9.2)
|
52
52
|
diff-lcs (>= 1.2.0, < 2.0)
|
53
53
|
rspec-support (~> 3.9.0)
|
54
54
|
rspec-mocks (3.9.1)
|
55
55
|
diff-lcs (>= 1.2.0, < 2.0)
|
56
56
|
rspec-support (~> 3.9.0)
|
57
|
-
rspec-support (3.9.
|
58
|
-
rubocop (0.
|
59
|
-
jaro_winkler (~> 1.5.1)
|
57
|
+
rspec-support (3.9.3)
|
58
|
+
rubocop (0.89.1)
|
60
59
|
parallel (~> 1.10)
|
61
|
-
parser (>= 2.7.
|
60
|
+
parser (>= 2.7.1.1)
|
62
61
|
rainbow (>= 2.2.2, < 4.0)
|
62
|
+
regexp_parser (>= 1.7)
|
63
63
|
rexml
|
64
|
+
rubocop-ast (>= 0.3.0, < 1.0)
|
64
65
|
ruby-progressbar (~> 1.7)
|
65
66
|
unicode-display_width (>= 1.4.0, < 2.0)
|
66
|
-
rubocop-
|
67
|
-
|
68
|
-
rubocop-
|
69
|
-
rubocop (>= 0.
|
67
|
+
rubocop-ast (0.3.0)
|
68
|
+
parser (>= 2.7.1.4)
|
69
|
+
rubocop-performance (1.7.1)
|
70
|
+
rubocop (>= 0.82.0)
|
71
|
+
rubocop-rspec (1.42.0)
|
72
|
+
rubocop (>= 0.87.0)
|
70
73
|
ruby-progressbar (1.10.1)
|
71
74
|
sqlite3 (1.4.2)
|
72
75
|
thread_safe (0.3.6)
|
73
76
|
tzinfo (1.2.7)
|
74
77
|
thread_safe (~> 0.1)
|
75
|
-
tzinfo-data (1.
|
78
|
+
tzinfo-data (1.2020.1)
|
76
79
|
tzinfo (>= 1.0.0)
|
77
80
|
unicode-display_width (1.7.0)
|
78
|
-
zeitwerk (2.
|
81
|
+
zeitwerk (2.4.0)
|
79
82
|
|
80
83
|
PLATFORMS
|
81
84
|
ruby
|
data/lib/fishplate.rb
CHANGED
data/lib/fishplate/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fishplate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Krzysztof Knapik
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: a9n
|
@@ -206,7 +206,7 @@ dependencies:
|
|
206
206
|
- - ">="
|
207
207
|
- !ruby/object:Gem::Version
|
208
208
|
version: '0'
|
209
|
-
description:
|
209
|
+
description:
|
210
210
|
email:
|
211
211
|
- knapo@knapo.net
|
212
212
|
executables: []
|
@@ -214,6 +214,11 @@ extensions: []
|
|
214
214
|
extra_rdoc_files: []
|
215
215
|
files:
|
216
216
|
- ".dependabot/config.yml"
|
217
|
+
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
218
|
+
- ".github/ISSUE_TEMPLATE/config.yml"
|
219
|
+
- ".github/ISSUE_TEMPLATE/story.md"
|
220
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
221
|
+
- ".github/workflows/auto-approve.yml"
|
217
222
|
- ".gitignore"
|
218
223
|
- ".rspec"
|
219
224
|
- ".travis.yml"
|
@@ -234,7 +239,7 @@ licenses:
|
|
234
239
|
metadata:
|
235
240
|
homepage_uri: https://github.com/RenoFi/fishplate
|
236
241
|
source_code_uri: https://github.com/RenoFi/fishplate
|
237
|
-
post_install_message:
|
242
|
+
post_install_message:
|
238
243
|
rdoc_options: []
|
239
244
|
require_paths:
|
240
245
|
- lib
|
@@ -250,7 +255,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
250
255
|
version: '0'
|
251
256
|
requirements: []
|
252
257
|
rubygems_version: 3.1.2
|
253
|
-
signing_key:
|
258
|
+
signing_key:
|
254
259
|
specification_version: 4
|
255
260
|
summary: Fishplate is a library allowing running ActiveRecord without Railties.
|
256
261
|
test_files: []
|