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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1c35795a4846afff06697c40726a7cba898af9f4055b50b213d679a65731c087
4
- data.tar.gz: e3d6368170092b5cf1a572c20c0a5fe9cb062a40f92ca54065206d9b52b60d40
3
+ metadata.gz: ab96626adb3039b207a661fac39be37f1dbc1701de0d79fd54d5c8a43cfaddd1
4
+ data.tar.gz: 3a2854de4ac4919d3d7db3cea152932ace963fa8217d52c2581c72ecd3e5eae6
5
5
  SHA512:
6
- metadata.gz: 43a82e2d5a436a577a2f56308b48b69931924d90fc9503ca68965dff10edfcccc11e31afffda9cc3788c3b5a1992b158df486ecd4c00b71c4d88918946b7c157
7
- data.tar.gz: ccd67cabb34cf5ab3f07f9a9b056707065c02ef941e92a4a058ae63383f59c9729e897a84208a138190be469f74d5feebee9f65ce464dda6ef1c6af1c4a0b85b
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
- # - name: Quality
52
- # env:
53
- # DATABASE_URL: postgres://myuser:mypassword@localhost:5432/test_db
54
- # run: |
55
- # bundle exec rubocop
51
+ - name: Quality
52
+ env:
53
+ DATABASE_URL: postgres://myuser:mypassword@localhost:5432/test_db
54
+ run: |
55
+ bundle exec rubocop
56
56
 
57
- # - name: Security
58
- # env:
59
- # DATABASE_URL: postgres://myuser:mypassword@localhost:5432/test_db
60
- # run: |
61
- # bundle exec brakeman
57
+ - name: Security
58
+ env:
59
+ DATABASE_URL: postgres://myuser:mypassword@localhost:5432/test_db
60
+ run: |
61
+ bundle exec brakeman
62
62
 
63
- # - name: Run test
64
- # env:
65
- # DATABASE_URL: postgres://myuser:mypassword@localhost:5432/test_db
63
+ - name: Run test
64
+ env:
65
+ DATABASE_URL: postgres://myuser:mypassword@localhost:5432/test_db
66
66
 
67
- # if: github.event_name == 'pull_request' && github.event.pull_request.base.ref == 'develop'
68
- # run: |
69
- # bundle exec rake
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
@@ -34,7 +34,7 @@ GIT
34
34
  PATH
35
35
  remote: .
36
36
  specs:
37
- spree_cm_commissioner (1.8.0.pre.deploy.pre.demo)
37
+ spree_cm_commissioner (1.8.0)
38
38
  activerecord-multi-tenant
39
39
  activerecord_json_validator (~> 2.1, >= 2.1.3)
40
40
  aws-sdk-cloudfront
@@ -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
- / <%= @taxon.name %>
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? %>
@@ -1,5 +1,5 @@
1
1
  module SpreeCmCommissioner
2
- VERSION = '1.8.0-deploy-demo'.freeze
2
+ VERSION = '1.8.0'.freeze
3
3
 
4
4
  module_function
5
5
 
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.deploy.pre.demo
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-06 00:00:00.000000000 Z
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: 1.3.1
2368
+ version: '0'
2369
2369
  requirements:
2370
2370
  - none
2371
2371
  rubygems_version: 3.4.1