spree_cli 5.0.4 → 5.1.0.beta2
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/lib/spree_cli/templates/extension/.circleci/config.yml +11 -8
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 20f2ca4cf7173dfae09f870e2d3bfe2795ed94b1a9e84a2d574d713191b012a2
|
4
|
+
data.tar.gz: 50e5de6738ff6e2882784d365705f89da714c7ffef60b0da5b4b0f2a7e5293c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1cf04f8ad83536c0fa0b02386ca287112c68cf897936619427373a15792197e2564fea1c1e079d95a3346c011f62ed7de532bab2bd1a39196688861ba833d67c
|
7
|
+
data.tar.gz: f5808ad2628c1e5bd16379a7755f7a660a9d9ce130a4a29ad9250adfeecb177874ecec759640e3524d882e29ddbabb6c6ed263273d3e120df58f3cfc97126361
|
@@ -110,12 +110,6 @@ jobs:
|
|
110
110
|
keys:
|
111
111
|
- spree-bundle-{{ .Branch }}
|
112
112
|
- spree-bundle
|
113
|
-
- run:
|
114
|
-
name: Add keyserver
|
115
|
-
command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4EB27DB2A3B88B8B
|
116
|
-
- run:
|
117
|
-
name: Install libvips
|
118
|
-
command: sudo apt-get update && sudo apt-get install libvips
|
119
113
|
- run:
|
120
114
|
name: Set bundle path
|
121
115
|
command: bundle config --local path vendor/bundle
|
@@ -125,7 +119,16 @@ jobs:
|
|
125
119
|
bundle check || bundle install
|
126
120
|
- run:
|
127
121
|
name: Brakeman
|
128
|
-
command: bundle exec brakeman --exit-on-warn --exit-on-error
|
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
|
129
132
|
|
130
133
|
workflows:
|
131
134
|
version: 2
|
@@ -140,4 +143,4 @@ workflows:
|
|
140
143
|
- bundle
|
141
144
|
- brakeman:
|
142
145
|
requires:
|
143
|
-
- bundle
|
146
|
+
- bundle
|
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.beta2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Mar
|
@@ -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.beta2
|
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.beta2
|
82
82
|
post_install_message:
|
83
83
|
rdoc_options: []
|
84
84
|
require_paths:
|