spree_cm_commissioner 1.8.0.pre.beta3 → 1.8.0.pre.beta4
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 +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e77caccf81a27dc63ab4c4f2e0e0667f60fd5130bea0ad3fcbcae673e173375
|
4
|
+
data.tar.gz: 1c2a7e3289aa520ae0fe29c28af1e1b1d41a1d2110948b6c32e76b21f6fe8d04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f290e1d41712c8082d1068976556a5c0214e46fa49d2db8388faf11603e7cdf6f79706418c5918f4fac441327ff4a61d6f6d9b953ed2041333cb8d178b85446
|
7
|
+
data.tar.gz: 15143141881df5cf187bda91efcd268a42196d31a1b3732f51ecffbd1f042f648fe2d22b997eb8ed4b25eaaac30b6a91ddb1679e6a1e977dc628cb607c1baeac
|
@@ -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.pre.
|
4
|
+
version: 1.8.0.pre.beta4
|
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
|