I have made a fork of a fastlane plugin and made some changes in the local clone. How do I test the changes?
In the plugin dir with my changes I have done
$ bundle install
$ rake install
I have a project that uses the plugin and have tried to change the Pluginfile from
gem "fastlane-plugin-msbuild"
to
gem "fastlane-plugin-msbuild", path: "../../github/fastlane-plugin-msbuild"
In the project dir I have then done a
$ bundle install
and the forked plugin from the local filesystem is picked up fine. This is also reflected in the Gemfile.lock
In the forked plugin I have updated the version number to be able to track it.
But when I run fastlane
$ bundle exec fastlane android beta
the section with "Used plugins" still state the old version number and I can see from execution that the original plugin is used.
What am I doing wrong? What is the normal way of testing fastlane plugins locally?
I am on macOS Sierra (10.12.6).