Rack app that exposes rollout gem API via RESTful endpoints
This Rack app expose RESTfull endpoints that allows you to perform CRUD operation on rollout gem.
This service works great with Rollout-Dashboard - a beautiful user interface for rollout gem)
- Pass a redis instance to the app
redis = Redis.new
RolloutService::Config::configure do |config|
config.redis = redis
end
- Map an a route to the app:
map '/api/v1' do
run RolloutService::Service
end
- Include the gem 'rack-app' & 'rollout_service' in your project.
- create a file named
config.ru
# Add here system configuration and initializations
# Create a redis instance
redis = Redis.new
# Pass the instance to rollout service
RolloutService::Config::configure do |config|
config.redis = redis
end
# Map a route to the app
map '/api/v1' do
run RolloutService::Service
end
Description | END POINT |
---|---|
Get all features | GET /api/v1/features |
Get specific feature by name | GET /api/v1/features/:feature_name |
Get specific feature by name | GET /api/v1/features/:feature_name |
Check if feature is active | GET /api/v1/features/:feature_name/:user_id/active |
Create a new feature | POST /api/v1/features/:feature_name |
Partially update existing feature | PATCH /api/v1/features/:feature_name |
Delete a feature | DELETE /api/v1/features/:feature_name |