0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Provide autoloading of Model classes and Controller for sinatra to allow for simpler writing of MVC web applications.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.2
~> 13.0
~> 3.10

Runtime

~> 2.0
 Project Readme

Sinatra::Drumkit

A simple framework for auto loading model and controller code in sinatra apps.

Installation

Add this line to your application's Gemfile:

gem 'sinatra-drumkit'

And then execute:

$ bundle

Or install it yourself as:

$ gem install sinatra-drumkit

Usage

Sinatra::Drumkit provides simple auto-loading mechanisms to sinatra. Once the module is registered, one can configure it via the rhythm method. Drumkit will make a best guess based on the root setting of the application.

class App < Sinatra::Base
  set :root, -> { File.expand_path(__dir__) }

  register Sinatra::Drumkit
  rhythm namespace: App

  # Models are now auto-loaded into App::Model...
  # Controllers have been executed in the context of the current app
end

Generally it search PROJECT_ROOT/app/models for model code and PROJECT_ROOT/app/controllers for controller code.

One will need to set the parent name space for Models which will subsequently be loaded into the Namespace::Model module.

Controllers are loaded and executed in the context of the application so they can be written as though they were in the body of the siantra app.

# file: ./app/controllers/index.rb

get /
  [200, {}, 'Hello world!']
end

Development

After checking out the repo, run bundle update to install dependencies. Then, run rake spec to run the tests.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/sinatra-drumkit. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.