Think Feel Do Engine

Build Status security

Provides the tools and administrative interface for Think Feel Do.

Installation

To add to a host Rails application, add to the Gemfile

gem "think_feel_do_engine", "~> 3.10"

then install

bundle install

mount the routes within config/routes.rb

Rails.application.routes.draw do
  mount ThinkFeelDoEngine::Engine => ""
end

Install the think_feel_do_engine migrations into the host application and run them:

rake think_feel_do_engine:install:migrations
rake db:migrate

Configure observers

# config/application.rb

require "rails-observers"

class Application < Rails::Application
  config.active_record.observers = "bit_core/slide_observer"
end

Run specs

Set up the database

rake app:db:create app:db:migrate

run the specs

./bin/rake

Publishing to RubyGems

Build the think_feel_do_engine gem

gem build think_feel_do_engine.gemspec

Publish to rubygems.org

gem push think_feel_do_engine-x.x.x.gem

View the published think_feel_do_engine gem here