jackhammer 1.3.3 → 1.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- 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 +36 -15
- data/jackhammer.gemspec +1 -0
- data/lib/jackhammer/message_receiver.rb +2 -0
- data/lib/jackhammer/version.rb +1 -1
- metadata +21 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38bd9a7e8b2be82da0c8751c93a24c77b40a580de54b40041479e7585487d160
|
4
|
+
data.tar.gz: 06b2c035650f92b9bf48297107457d99820bd54bb80f97a63463b462cc52e320
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 380993eadd3d1fc75491dda76684bed6192c9b5761b838d681f81258c844413ee70a07a2a1594a67374c45958e3c6fe3eeaf8cc54657e3ce652421e039910b42
|
7
|
+
data.tar.gz: 18cd2e224c838c1efaad1c80720792af77e68efd1c52b962d272e7824401398ee81ef3acae8eb92c69947b6a25728023b95eb6064381e5cd8c5e43306b1f5e73
|
@@ -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,23 +1,37 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
jackhammer (1.3.
|
4
|
+
jackhammer (1.3.4)
|
5
5
|
bunny (~> 2.14)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
|
10
|
+
activemodel (6.0.3.1)
|
11
|
+
activesupport (= 6.0.3.1)
|
12
|
+
activerecord (6.0.3.1)
|
13
|
+
activemodel (= 6.0.3.1)
|
14
|
+
activesupport (= 6.0.3.1)
|
15
|
+
activesupport (6.0.3.1)
|
16
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
|
+
i18n (>= 0.7, < 2)
|
18
|
+
minitest (~> 5.1)
|
19
|
+
tzinfo (~> 1.1)
|
20
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
21
|
+
amq-protocol (2.3.1)
|
11
22
|
ast (2.4.0)
|
12
|
-
bunny (2.
|
13
|
-
amq-protocol (~> 2.3, >= 2.3.
|
23
|
+
bunny (2.15.0)
|
24
|
+
amq-protocol (~> 2.3, >= 2.3.1)
|
14
25
|
bunny-mock (1.7.0)
|
15
26
|
bunny (>= 1.7)
|
16
|
-
byebug (11.1.
|
27
|
+
byebug (11.1.3)
|
28
|
+
concurrent-ruby (1.1.6)
|
17
29
|
diff-lcs (1.3)
|
18
|
-
|
30
|
+
i18n (1.8.2)
|
31
|
+
concurrent-ruby (~> 1.0)
|
32
|
+
minitest (5.14.1)
|
19
33
|
parallel (1.19.1)
|
20
|
-
parser (2.7.
|
34
|
+
parser (2.7.1.2)
|
21
35
|
ast (~> 2.4.0)
|
22
36
|
rainbow (3.0.0)
|
23
37
|
rake (13.0.1)
|
@@ -26,34 +40,41 @@ GEM
|
|
26
40
|
rspec-core (~> 3.9.0)
|
27
41
|
rspec-expectations (~> 3.9.0)
|
28
42
|
rspec-mocks (~> 3.9.0)
|
29
|
-
rspec-core (3.9.
|
30
|
-
rspec-support (~> 3.9.
|
31
|
-
rspec-expectations (3.9.
|
43
|
+
rspec-core (3.9.2)
|
44
|
+
rspec-support (~> 3.9.3)
|
45
|
+
rspec-expectations (3.9.2)
|
32
46
|
diff-lcs (>= 1.2.0, < 2.0)
|
33
47
|
rspec-support (~> 3.9.0)
|
34
48
|
rspec-mocks (3.9.1)
|
35
49
|
diff-lcs (>= 1.2.0, < 2.0)
|
36
50
|
rspec-support (~> 3.9.0)
|
37
|
-
rspec-support (3.9.
|
38
|
-
rubocop (0.
|
39
|
-
jaro_winkler (~> 1.5.1)
|
51
|
+
rspec-support (3.9.3)
|
52
|
+
rubocop (0.84.0)
|
40
53
|
parallel (~> 1.10)
|
41
54
|
parser (>= 2.7.0.1)
|
42
55
|
rainbow (>= 2.2.2, < 4.0)
|
43
56
|
rexml
|
57
|
+
rubocop-ast (>= 0.0.3)
|
44
58
|
ruby-progressbar (~> 1.7)
|
45
59
|
unicode-display_width (>= 1.4.0, < 2.0)
|
46
|
-
rubocop-
|
60
|
+
rubocop-ast (0.0.3)
|
61
|
+
parser (>= 2.7.0.1)
|
62
|
+
rubocop-performance (1.6.0)
|
47
63
|
rubocop (>= 0.71.0)
|
48
|
-
rubocop-rspec (1.
|
64
|
+
rubocop-rspec (1.39.0)
|
49
65
|
rubocop (>= 0.68.1)
|
50
66
|
ruby-progressbar (1.10.1)
|
67
|
+
thread_safe (0.3.6)
|
68
|
+
tzinfo (1.2.7)
|
69
|
+
thread_safe (~> 0.1)
|
51
70
|
unicode-display_width (1.7.0)
|
71
|
+
zeitwerk (2.3.0)
|
52
72
|
|
53
73
|
PLATFORMS
|
54
74
|
ruby
|
55
75
|
|
56
76
|
DEPENDENCIES
|
77
|
+
activerecord
|
57
78
|
bundler
|
58
79
|
bunny-mock
|
59
80
|
byebug
|
data/jackhammer.gemspec
CHANGED
@@ -24,6 +24,7 @@ Gem::Specification.new do |spec|
|
|
24
24
|
|
25
25
|
spec.add_dependency 'bunny', '~> 2.14'
|
26
26
|
|
27
|
+
spec.add_development_dependency 'activerecord'
|
27
28
|
spec.add_development_dependency 'bundler'
|
28
29
|
spec.add_development_dependency 'bunny-mock'
|
29
30
|
spec.add_development_dependency 'byebug'
|
data/lib/jackhammer/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jackhammer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Scott Serok
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bunny
|
@@ -24,6 +24,20 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '2.14'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: activerecord
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: bundler
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -145,6 +159,11 @@ extensions: []
|
|
145
159
|
extra_rdoc_files: []
|
146
160
|
files:
|
147
161
|
- ".dependabot/config.yml"
|
162
|
+
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
163
|
+
- ".github/ISSUE_TEMPLATE/config.yml"
|
164
|
+
- ".github/ISSUE_TEMPLATE/story.md"
|
165
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
166
|
+
- ".github/workflows/auto-approve.yml"
|
148
167
|
- ".gitignore"
|
149
168
|
- ".rspec"
|
150
169
|
- ".travis.yml"
|