Skip to content

Installation

System Requirements

PromptManager requires:

  • Ruby: 2.7 or higher (3.0+ recommended)
  • Operating System: Linux, macOS, or Windows
  • Dependencies: No additional system dependencies required

Install the Gem

Add PromptManager to your project's Gemfile:

# Gemfile
gem 'prompt_manager'

Then install:

bundle install

Using RubyGems

Install directly with gem:

gem install prompt_manager

Development Installation

For development or to get the latest features:

git clone https://github.com/MadBomber/prompt_manager.git
cd prompt_manager
bundle install

Verify Installation

Test that PromptManager is installed correctly:

require 'prompt_manager'
puts PromptManager::VERSION

Dependencies

PromptManager has minimal dependencies and automatically installs:

  • No external system dependencies
  • Pure Ruby dependencies only
  • Lightweight footprint for easy integration

Troubleshooting

Common Issues

Ruby Version

If you see compatibility errors, ensure you're running Ruby 2.7+:

ruby --version

Bundler Issues

If bundle install fails, try updating bundler:

gem update bundler
bundle install

Getting Help

If you encounter installation issues:

  1. Check the GitHub Issues
  2. Search for similar problems in Discussions
  3. Create a new issue with:
  4. Ruby version (ruby --version)
  5. Gem version (gem list prompt_manager)
  6. Error message and full stack trace

Next Steps

Once installed, continue to the Quick Start guide to begin using PromptManager.