### Install Ruby UI Gem Locally - Ruby Source: https://github.com/ruby-ui/web/blob/main/README.md Specifies the local path for the `ruby_ui` gem in a Gemfile, allowing developers to use a local version of the gem for development and testing. ```ruby gem "ruby_ui", path: "../ruby_ui" ``` -------------------------------- ### Eject Ruby UI Component - Bash Source: https://github.com/ruby-ui/web/blob/main/README.md Uses the Rails generator provided by the `ruby_ui` gem to 'eject' a specific component (e.g., `combobox`) into the local application's directory for modification. ```bash rails generate ruby_ui:component combobox ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.