-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
FAQ
Maybe.
Spree extensions can't be used directly with solidus, because they will have spree as a dependency. Since Solidus is based off of Spree 2.4, extensions can usually be updated.
- You need to fork the spree extension.
- You need to update all dependencies from
spree_*
tosolidus_*
in the.gemspec
file. Sospree_backend
becomessolidus_backend
,spree_api
becomessolidus_api
and so on - Make adjustments to changes between spree 2.4 and and the current version of solidus
What kind of changes depends on what the extension extends. The process will involve some trial and error.
Please have a look at https://github.com/solidusio and https://github.com/solidusio-contrib to see if someone has already done the work.
Solidus is the name of an old Roman coin and is also the name for a forward slash. We also like the the connotation of "solid" being in the name.
The Spree::
namespace is a little confusing, but it's well worth keeping as we have good compatibility with most spree 2-4-ish extensions and with existing stores, all of which will be referencing models in the Spree
namespace.
The namespace is also used for table names, and used for STI (ex. in PaymentMethods, where the class name is stored in the DB).
This also happens in other successful forks, for example Jenkins still has a lot of classes namespaced under Hudson's namespace.
Typically, people override the partials from Solidus' frontend gem. There's also the possibility of using the Deface gem to do "magic overrides", but it's usually simpler to just override whole files. If you're just starting out, this video series seems to have helped people.