Installation - netguru/highway GitHub Wiki
Bundler:
UsingSimply add the following line to your Gemfile:
gem 'highway', '~> 1.0'
With a Gemfile setup, you run bundle install
to install, or bundle update
to update within your Gemfile's constraints.
Next thing will be adding Fastfile
in fastlane
directory with content:
import_from_git(
url: "https://github.com/netguru/highway.git",
version: "~> 1.0.0"
)
You can now run Highway by:
bundle exec fastlane highway
or by specifying preset:
bundle exec fastlane highway preset:<preset-name>
Now when you're ready, you can check how to configure Highway.