spree_cli 5.0.3 → 5.1.0.beta
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7dfc558a820ea0683c6d8dde7a8415effbee08c1e86703004e0ff884318d6a81
|
4
|
+
data.tar.gz: 6d65aa82bb1e0b0783a36fff20796fb29a5e77abeb48701b482aa6496cf297fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3784ceb2a32c682b1f42da8bea2538e788c29e1a144e57f04a0abaadff60e0cf36ea23dd6416c94e1936f120583b11bc64b011145962dab1c24276e29ec60e61
|
7
|
+
data.tar.gz: fdbc68d263204ea6fd47ae6219b9398a91ee0be661717c9fbaa9c0554a0e4ff06680a527f2da68b6c8f5c137be6e4a894ac1987996a2caf27bfe7ff2762f6f57
|
@@ -102,6 +102,34 @@ jobs:
|
|
102
102
|
- image: *ruby_image
|
103
103
|
- image: &mysql_image cimg/mysql:8.0
|
104
104
|
|
105
|
+
brakeman:
|
106
|
+
<<: *defaults
|
107
|
+
steps:
|
108
|
+
- checkout
|
109
|
+
- restore_cache:
|
110
|
+
keys:
|
111
|
+
- spree-bundle-{{ .Branch }}
|
112
|
+
- spree-bundle
|
113
|
+
- run:
|
114
|
+
name: Set bundle path
|
115
|
+
command: bundle config --local path vendor/bundle
|
116
|
+
- run:
|
117
|
+
name: Ensure bundle Install
|
118
|
+
command: |
|
119
|
+
bundle check || bundle install
|
120
|
+
- run:
|
121
|
+
name: Brakeman
|
122
|
+
command: bundle exec brakeman --exit-on-warn --exit-on-error -o brakeman.json -o brakeman.html
|
123
|
+
- run:
|
124
|
+
name: Move brakeman reports to artifacts directory
|
125
|
+
command: |
|
126
|
+
mkdir -p /tmp/test-artifacts/
|
127
|
+
mv brakeman.json /tmp/test-artifacts/
|
128
|
+
mv brakeman.html /tmp/test-artifacts/
|
129
|
+
- store_artifacts:
|
130
|
+
path: /tmp/test-artifacts
|
131
|
+
destination: brakeman-reports
|
132
|
+
|
105
133
|
workflows:
|
106
134
|
version: 2
|
107
135
|
main:
|
@@ -113,3 +141,6 @@ workflows:
|
|
113
141
|
- tests_mysql:
|
114
142
|
requires:
|
115
143
|
- bundle
|
144
|
+
- brakeman:
|
145
|
+
requires:
|
146
|
+
- bundle
|
@@ -1,3 +1,6 @@
|
|
1
|
+
plugins:
|
2
|
+
- rubocop-rails
|
3
|
+
|
1
4
|
AllCops:
|
2
5
|
DisplayCopNames: true
|
3
6
|
TargetRubyVersion: 3.3
|
@@ -9,10 +12,7 @@ AllCops:
|
|
9
12
|
- 'spec/dummy/**/*'
|
10
13
|
- 'lib/generators/**/*'
|
11
14
|
|
12
|
-
|
13
|
-
Enabled: true
|
14
|
-
|
15
|
-
Metrics/LineLength:
|
15
|
+
Layout/LineLength:
|
16
16
|
Max: 150
|
17
17
|
|
18
18
|
# DISABLED
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spree_cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.1.0.beta
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Mar
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2025-05-
|
13
|
+
date: 2025-05-20 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: thor
|
@@ -76,9 +76,9 @@ licenses:
|
|
76
76
|
- BSD-3-Clause
|
77
77
|
metadata:
|
78
78
|
bug_tracker_uri: https://github.com/spree/spree/issues
|
79
|
-
changelog_uri: https://github.com/spree/spree/releases/tag/v5.0.
|
79
|
+
changelog_uri: https://github.com/spree/spree/releases/tag/v5.1.0.beta
|
80
80
|
documentation_uri: https://docs.spreecommerce.org/
|
81
|
-
source_code_uri: https://github.com/spree/spree/tree/v5.0.
|
81
|
+
source_code_uri: https://github.com/spree/spree/tree/v5.1.0.beta
|
82
82
|
post_install_message:
|
83
83
|
rdoc_options: []
|
84
84
|
require_paths:
|