Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ gem 'rails', '>0.a'
# Provides basic authentication functionality for testing parts of your engine
gem 'solidus_auth_devise'
gem 'solidus_dev_support', github: "solidusio/solidus_dev_support", branch: "main"
gem 'solidus_support', github: "mamhoff/solidus_support", branch: "re-enable-flickwerk"

gem 'flickwerk'

case ENV['DB']
when 'mysql'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module SolidusPrototypes
module Spree
module OptionTypeDecorator
module OptionTypePatch

def self.prepended(base)
base.class_eval do
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module SolidusPrototypes
module Spree
module PermissionSets
module ProductDisplayDecorator
module ProductDisplayPatch

def activate!
super
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module SolidusPrototypes
module Spree
module PermissionSets
module ProductManagementDecorator
module ProductManagementPatch

def activate!
can :manage, ::Spree::Prototype
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module SolidusPrototypes
module Spree
module ProductDecorator
module ProductPatch

def self.prepended(base)
base.class_eval do
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module SolidusPrototypes
module Spree
module PropertyDecorator
module PropertyPatch

def self.prepended(base)
base.class_eval do
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module SolidusPrototypes
module Spree
module TaxonDecorator
module TaxonPatch

def self.prepended(base)
base.class_eval do
Expand Down