0.0
No commit activity in last 3 years
No release in over 3 years
Plugin collection for the rack based nano framework Track, currently containing ActiveRecord and Sequel plugins
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

>= 0
 Project Readme

Track Plugins

Plugin collection for the rack based nano framework Track.

List of available plugins

ORM

  • ActiveRecord
  • Sequel

Install

Add the following line to your Gemfile

gem 'track-plugins'

or install it with rubygems

gem install track-plugins

Usage

require the plugin you want to use and call Track#use before you boot Track, i.e.:

require 'track'
require 'track/sequel'

Track.use Track::Sequel
Track.boot! File.expand_path('..', __FILE__)

DB = Track::Sequel.db
DB << "SET CLIENT_ENCODING TO 'UTF8';"

Author

Lars Kuhnt Copyright (c) 2011

License

Published under the MIT License.

See LICENSE for details.