alchemy-solidus 8.0.0.b → 8.0.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/Rakefile +2 -1
- data/config/initializers/alchemy.rb +5 -2
- data/lib/alchemy/solidus/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: d8cad8065778996d89836876d20d31bd980d14487ef410e8fe258fa53de0853f
|
|
4
|
+
data.tar.gz: 62192b627bf044c89291dd44f0ed1caf3d23a66c00106a29655186c498ad0b63
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d0220db8a6ed1cf6788d7b3d895bb299f93fb7dd513642792eff4a33171a0b17268b0737a34caea2900d8810843b0ce212ab2c882e003ca6a239972333cb11fe
|
|
7
|
+
data.tar.gz: 3f69ec0a25642f70d352fffd472c4e0e079904d26c7291e754f8b681b177b69e5109c2c34fa006eb4e1c8eb30e544b5e60ca672251426ab1aabd2c1002aa3f20
|
data/Rakefile
CHANGED
|
@@ -16,7 +16,7 @@ desc "Setup test app"
|
|
|
16
16
|
task :test_setup do
|
|
17
17
|
solidus_branch = ENV.fetch("SOLIDUS_BRANCH", "v4.4")
|
|
18
18
|
solidus_install_options = "--payment-method=none --frontend=none --authentication=none"
|
|
19
|
-
if ["v4.
|
|
19
|
+
if ["v4.5", "v4.6", "main"].include?(solidus_branch)
|
|
20
20
|
solidus_install_options += " --admin-preview=false"
|
|
21
21
|
end
|
|
22
22
|
Dir.chdir("spec/dummy") do
|
|
@@ -24,6 +24,7 @@ task :test_setup do
|
|
|
24
24
|
bin/rake db:environment:set db:drop && \
|
|
25
25
|
bin/rake gutentag:install:migrations && \
|
|
26
26
|
bin/rails g gutentag:migration_versions && \
|
|
27
|
+
bin/rails g alchemy:devise:install --auto-accept --skip && \
|
|
27
28
|
bin/rails g solidus:install --force --auto-accept --no-seed --no-sample #{solidus_install_options} && \
|
|
28
29
|
bin/rails g solidus_frontend:install --force --auto-accept && \
|
|
29
30
|
bin/rails javascript:install:esbuild && \
|
|
@@ -6,7 +6,7 @@ alchemy_module = {
|
|
|
6
6
|
action: "index",
|
|
7
7
|
name: "Store",
|
|
8
8
|
icon: (Alchemy.gem_version >= Gem::Version.new("7.4.0.a")) ? "shopping-cart" : "shopping-cart-line",
|
|
9
|
-
data: {turbolinks: false},
|
|
9
|
+
data: {turbolinks: false, turbo: false},
|
|
10
10
|
sub_navigation: [
|
|
11
11
|
{
|
|
12
12
|
controller: "/spree/admin/orders",
|
|
@@ -45,7 +45,10 @@ if defined?(Spree::Auth::Engine)
|
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
Rails.application.config.
|
|
48
|
+
Rails.application.config.to_prepare do
|
|
49
49
|
Alchemy::Modules.register_module(alchemy_module)
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
Alchemy.configure do |config|
|
|
50
53
|
Alchemy.config.link_dialog_tabs.add("Alchemy::Admin::LinkDialog::ProductTab")
|
|
51
54
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alchemy-solidus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 8.0.0
|
|
4
|
+
version: 8.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thomas von Deyen
|
|
@@ -332,7 +332,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
332
332
|
- !ruby/object:Gem::Version
|
|
333
333
|
version: '0'
|
|
334
334
|
requirements: []
|
|
335
|
-
rubygems_version: 3.
|
|
335
|
+
rubygems_version: 3.6.9
|
|
336
336
|
specification_version: 4
|
|
337
337
|
summary: The World's Most Flexible E-Commerce Platform meets The World's Most Flexible
|
|
338
338
|
Content Management System!
|