solidusio / solidus_dev_support

A collection of tools for developing Solidus extensions.
MIT License
21 stars 27 forks source link

Update sandbox.tt Solidus install generator usage #193

Closed RyanofWoods closed 1 year ago

RyanofWoods commented 1 year ago

Summary

The --with-authentication flag is deprecated in favour for the --authentication flag that supports the following options: devise, existing, custom, none.

Checklist

mergify[bot] commented 1 year ago

It looks like this PR is missing a label to determine the type of change it introduces. The maintainer should add one of the following labels:

Additionally, the maintainer may also want to add one of the following:

Once the correct labels have been set, simply remove the needs changelog label label from this PR so I can merge it.

RyanofWoods commented 1 year ago

I understand @elia, is it because we want to have old Solidus version support?

It was just to get rid of the deprecation.

elia commented 1 year ago

I understand @elia, is it because we want to have old Solidus version support?

Yes, so far solidus_dev_support was designed to help in making extensions compatible with all currently supported versions of Solidus (i.e. not EOL). So you could export SOLIDUS_BRANCH=v3.0 and bin/setup and then recreate the sandbox using that version to try the extension on a real app with the version of solidus you want.

Hope this makes sense.