Hey! I'm working on a new extension, and running i...
# general
m
Hey! I'm working on a new extension, and running into a bit of trouble with
solidus_dev_support
. When generating the extension, the Gemfile still points to the
master
branch of Solidus. In the
main
branch of
solidus_dev_support
, this is fixed, but there's no version out yet. It's not possible (happy to know if it is somehow) to globally install a gem from a branch. The easiest fix for this would be a new release of
solidus_dev_support
. There's another bug with generating models, but the bug shows differently with Solidus 3.3 and Solidus 4.1; so I can't reproduce nicely yet; pending a release of the support gem...
ok the bug only appears with the (weirdly nonexistent)
master
branch of Solidus
k
technically you can install the GH version using the Gemfile of the extension instead of the gemspec, but yes, we need to release a new version with the fix
m
I mean globally, using
gem install
- when trying to generate the extension, you don't have a Gemfile to work with yet :)
k
ahhh got it. maybe with
Copy code
bundle config set local.GEM_NAME /path/to/local/git/repository
and then
bundle exec …
but not 100% sure
or you can clone it locally and install with
Copy code
gem build GEMNAME.gemspec
gem install gemname-version.gem
👍 2
m
That's i think what I would have done :)
k
BTW, I’m on the final changes before the release, will let you know