spree_cm_commissioner 1.8.0.pre.beta4 → 1.8.0.pre.deploy.pre.demo

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: 2e77caccf81a27dc63ab4c4f2e0e0667f60fd5130bea0ad3fcbcae673e173375
4
- data.tar.gz: 1c2a7e3289aa520ae0fe29c28af1e1b1d41a1d2110948b6c32e76b21f6fe8d04
3
+ metadata.gz: 1c35795a4846afff06697c40726a7cba898af9f4055b50b213d679a65731c087
4
+ data.tar.gz: e3d6368170092b5cf1a572c20c0a5fe9cb062a40f92ca54065206d9b52b60d40
5
5
  SHA512:
6
- metadata.gz: 5f290e1d41712c8082d1068976556a5c0214e46fa49d2db8388faf11603e7cdf6f79706418c5918f4fac441327ff4a61d6f6d9b953ed2041333cb8d178b85446
7
- data.tar.gz: 15143141881df5cf187bda91efcd268a42196d31a1b3732f51ecffbd1f042f648fe2d22b997eb8ed4b25eaaac30b6a91ddb1679e6a1e977dc628cb607c1baeac
6
+ metadata.gz: 43a82e2d5a436a577a2f56308b48b69931924d90fc9503ca68965dff10edfcccc11e31afffda9cc3788c3b5a1992b158df486ecd4c00b71c4d88918946b7c157
7
+ data.tar.gz: ccd67cabb34cf5ab3f07f9a9b056707065c02ef941e92a4a058ae63383f59c9729e897a84208a138190be469f74d5feebee9f65ce464dda6ef1c6af1c4a0b85b
@@ -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.beta4)
37
+ spree_cm_commissioner (1.8.0.pre.deploy.pre.demo)
38
38
  activerecord-multi-tenant
39
39
  activerecord_json_validator (~> 2.1, >= 2.1.3)
40
40
  aws-sdk-cloudfront
@@ -1,8 +1,6 @@
1
1
  <!-- replace "erb[silent]:contains('unless @taxon.root?')" closing_selector "erb[silent]:contains('end')" -->
2
2
 
3
- <%if @taxon.depth !=1 && @taxon.parent.present? %>
4
- / <%= link_to @taxon.parent.name, spree.edit_admin_taxonomy_taxon_url(@taxonomy,@taxon.parent.id) %>
3
+ <%if @taxon.depth !=1 %>
4
+ / <%= link_to @taxon.parent.name, spree.edit_admin_taxonomy_taxon_url(@taxonomy,@taxon.parent.id) %>
5
5
  <%end%>
6
- <% unless @taxon.root? %>
7
- / <%= @taxon.name %>
8
- <% end %>
6
+ / <%= @taxon.name %>
@@ -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 && @taxon.parent.present? %>
5
+ <%if @taxon.depth !=1 %>
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 && @taxon.parent.present? %>
5
+ <%if @taxon.depth !=1 %>
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 && @taxon.parent.present? %>
5
+ <%if @taxon.depth !=1 %>
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 && @taxon.parent.present? %>
5
+ <%if @taxon.depth !=1 %>
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-beta4'.freeze
2
+ VERSION = '1.8.0-deploy-demo'.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.beta4
4
+ version: 1.8.0.pre.deploy.pre.demo
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-10 00:00:00.000000000 Z
11
+ date: 2025-03-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: spree