spree_cm_commissioner 1.8.0.pre.deploy.pre.demo → 1.8.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/.github/workflows/test_and_build_gem.yml +16 -16
- data/Gemfile.lock +1 -1
- data/app/overrides/spree/admin/taxons/edit/title.html.erb.deface +5 -3
- data/app/views/spree/admin/classifications/index.html.erb +1 -1
- data/app/views/spree/admin/guest_card_classes/index.html.erb +1 -1
- data/app/views/spree/admin/taxon_vendors/index.html.erb +1 -1
- data/app/views/spree/admin/user_events/_users.html.erb +1 -1
- data/lib/spree_cm_commissioner/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab96626adb3039b207a661fac39be37f1dbc1701de0d79fd54d5c8a43cfaddd1
|
4
|
+
data.tar.gz: 3a2854de4ac4919d3d7db3cea152932ace963fa8217d52c2581c72ecd3e5eae6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 822fd0f6cf7898c99d1327190518ef5bc23575018ac8482d85a0379e346f863a30bcc9dfacfed365811ad206cb712f34ae55d98a380fe03d4567780c37626a17
|
7
|
+
data.tar.gz: ea9bd64db27d8f7b878448db1a9c35df245e6f6d12ea1511116ed0eb8f951c25f4fb8d03d75b0c051b35e156540d93564cc062e1a204cf2cf35fbf555736f90c
|
@@ -48,25 +48,25 @@ jobs:
|
|
48
48
|
gem install bundler
|
49
49
|
bundle install --jobs 4 --retry 3
|
50
50
|
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
51
|
+
- name: Quality
|
52
|
+
env:
|
53
|
+
DATABASE_URL: postgres://myuser:mypassword@localhost:5432/test_db
|
54
|
+
run: |
|
55
|
+
bundle exec rubocop
|
56
56
|
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
57
|
+
- name: Security
|
58
|
+
env:
|
59
|
+
DATABASE_URL: postgres://myuser:mypassword@localhost:5432/test_db
|
60
|
+
run: |
|
61
|
+
bundle exec brakeman
|
62
62
|
|
63
|
-
|
64
|
-
|
65
|
-
|
63
|
+
- name: Run test
|
64
|
+
env:
|
65
|
+
DATABASE_URL: postgres://myuser:mypassword@localhost:5432/test_db
|
66
66
|
|
67
|
-
|
68
|
-
|
69
|
-
|
67
|
+
if: github.event_name == 'pull_request' && github.event.pull_request.base.ref == 'develop'
|
68
|
+
run: |
|
69
|
+
bundle exec rake
|
70
70
|
|
71
71
|
# 2405-build-and-publish-gem
|
72
72
|
# - name: Rename long migration files
|
data/Gemfile.lock
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
<!-- replace "erb[silent]:contains('unless @taxon.root?')" closing_selector "erb[silent]:contains('end')" -->
|
2
2
|
|
3
|
-
<%if @taxon.depth !=1 %>
|
4
|
-
/ <%= link_to @taxon.parent.name, spree.edit_admin_taxonomy_taxon_url(@taxonomy,@taxon.parent.id)
|
3
|
+
<%if @taxon.depth !=1 && @taxon.parent.present? %>
|
4
|
+
/ <%= link_to @taxon.parent.name, spree.edit_admin_taxonomy_taxon_url(@taxonomy,@taxon.parent.id) %>
|
5
5
|
<%end%>
|
6
|
-
|
6
|
+
<% unless @taxon.root? %>
|
7
|
+
/ <%= @taxon.name %>
|
8
|
+
<% end %>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<%= link_to Spree.t(:taxonomies), spree.admin_taxonomies_url %> /
|
3
3
|
|
4
4
|
<%= link_to @taxonomy.root.name, spree.edit_admin_taxonomy_url(@taxonomy) %>
|
5
|
-
<%if @taxon.depth !=1 %>
|
5
|
+
<%if @taxon.depth !=1 && @taxon.parent.present? %>
|
6
6
|
/ <%= link_to @taxon.parent.name, spree.edit_admin_taxonomy_taxon_url(@taxonomy,@taxon.parent.id) %>
|
7
7
|
<%end%>
|
8
8
|
<% unless @taxon.root? %>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<%= link_to Spree.t(:taxonomies), spree.admin_taxonomies_url %> /
|
3
3
|
|
4
4
|
<%= link_to @taxonomy.root.name, spree.edit_admin_taxonomy_url(@taxonomy) %>
|
5
|
-
<%if @taxon.depth !=1 %>
|
5
|
+
<%if @taxon.depth !=1 && @taxon.parent.present? %>
|
6
6
|
/ <%= link_to @taxon.parent.name, spree.edit_admin_taxonomy_taxon_url(@taxonomy,@taxon.parent.id) %>
|
7
7
|
<%end%>
|
8
8
|
<% unless @taxon.root? %>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<%= link_to Spree.t(:taxonomies), spree.admin_taxonomies_url %> /
|
3
3
|
|
4
4
|
<%= link_to @taxonomy.root.name, spree.edit_admin_taxonomy_url(@taxonomy) %>
|
5
|
-
<%if @taxon.depth !=1 %>
|
5
|
+
<%if @taxon.depth !=1 && @taxon.parent.present? %>
|
6
6
|
/ <%= link_to @taxon.parent.name, spree.edit_admin_taxonomy_taxon_url(@taxonomy,@taxon.parent.id) %>
|
7
7
|
<%end%>
|
8
8
|
<% unless @taxon.root? %>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<%= link_to Spree.t(:taxonomies), spree.admin_taxonomies_url %> /
|
3
3
|
|
4
4
|
<%= link_to @taxonomy.root.name, spree.edit_admin_taxonomy_url(@taxonomy) %>
|
5
|
-
<%if @taxon.depth !=1 %>
|
5
|
+
<%if @taxon.depth !=1 && @taxon.parent.present? %>
|
6
6
|
/ <%= link_to @taxon.parent.name, spree.edit_admin_taxonomy_taxon_url(@taxonomy,@taxon.parent.id) %>
|
7
7
|
<%end%>
|
8
8
|
<% unless @taxon.root? %>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spree_cm_commissioner
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.8.0
|
4
|
+
version: 1.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- You
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: spree
|
@@ -2363,9 +2363,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
2363
2363
|
version: '2.7'
|
2364
2364
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
2365
2365
|
requirements:
|
2366
|
-
- - "
|
2366
|
+
- - ">="
|
2367
2367
|
- !ruby/object:Gem::Version
|
2368
|
-
version:
|
2368
|
+
version: '0'
|
2369
2369
|
requirements:
|
2370
2370
|
- none
|
2371
2371
|
rubygems_version: 3.4.1
|