Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install gem 'fastlane-plugin-versioning' without using gem #28806

Open
salvatoreboemia opened this issue Dec 4, 2024 · 1 comment
Open

Install gem 'fastlane-plugin-versioning' without using gem #28806

salvatoreboemia opened this issue Dec 4, 2024 · 1 comment

Comments

@salvatoreboemia
Copy link

Hi

is it possible to install plugins directly in fastfile after before all do maybe?

I want to avoid to use gemfile

Thanks

@david346d
Copy link

david346d commented Dec 19, 2024

Welcome to the official site for the CA DMV Practice Test guide. This is your trusted source for everything related to vehicle registration, driver’s licenses and more all around Golden State. California CA DMV
`fastlane do
before_all do
# Install your plugin here
plugin 'your_plugin_name'

# Alternatively, if you have the plugin source locally:
plugin './path/to/your/local/plugin' 

end

... rest of your lanes ...

end`

before_all block: This block executes before any lane is run.
plugin method: This method is used to install or load plugins.
You can specify the plugin name if it's available on the public RubyGems repository.
If the plugin is located in your local project, provide the path to the plugin directory.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants