Installation Methods
Via RubyGems (Recommended)
Install Sirena directly from RubyGems:
Via Bundler
Add Sirena to your Gemfile:
From Source
Clone the repository and install locally:
git clone https://github.com/claricle/sirena.git
cd sirena
bundle install
bundle exec rake install
Verification
You should see output similar to:
Troubleshooting
Command Not Found
If sirena command is not found after installation, ensure your gem bin directory is in your PATH:
echo 'export PATH="$HOME/.gem/ruby/X.X.0/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
Replace X.X.0 with your Ruby version.
Permission Errors
If you encounter permission errors during installation, try:
gem install sirena --user-install
Or use a Ruby version manager like rbenv or rvm.