Rest

CoCoach

CRM Application Backed by Ruby on Rails

Cocoach is a business coaching and business management application for real-time collaboration, document creation and project management. The scope of this application is huge. Every business is given its own sandbox domain, and each department a subdomain below that. The application operates differently depending on the context of the user. With a department selected, the user is focussed on items only related to the current department, however, events must “bubble up” to the business level. more»

Flexible Config

Ruby configuration management  

FlexibleConfig promotes good OOP design, and the separation of logic and configuration in your Ruby classes.

FlexibleConfig allows you to set class constants cleanly in ruby with the heirarchical structure and clean workflow of YML config, without sacrificing the flexibility and immediacy of ENVironment variables.

more»

API Buddy

Live coding playlist: building a Ruby API testing and documentation tool  

API Buddy is a DSL for defining stubbed RESTful API endpoints, and generating documentation and tests based on the schema. more»

Active Hash

Rails models powered by static files  

ActiveHash is a simple base class that allows you to use a ruby hash as a readonly datasource for an ActiveRecord-like model.

ActiveHash assumes that every hash has an :id key, which is what you would probably store in a database. This allows you to seamlessly upgrade from ActiveHash objects to full ActiveRecord objects without having to change any code in your app, or any foreign keys in your database.

It also allows you to use #has_many and #belongs_to (via belongs_to_active_hash) in your AR objects.

ActiveHash can also be useful to create simple test classes that run without a database - ideal for testing plugins or gems that rely on simple AR behavior, but don’t want to deal with databases or migrations for the spec suite.

more»