Requirements

Sirena requires:

  • Ruby 2.7 or higher

  • Bundler (for development)

Installation Methods

Install Sirena directly from RubyGems:

gem install sirena

Via Bundler

Add Sirena to your Gemfile:

gem 'sirena'

Then install:

bundle install

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

Verify the installation:

sirena version

You should see output similar to:

Sirena version 0.1.0

Next Steps

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.


Back to top

Copyright © 2025 Ribose. Sirena is open source under the MIT license.

This site uses Just the Docs, a documentation theme for Jekyll.