Sha256: ff88cfaab5edd6d90c94de8ce8f9569036515d9b098616b5dbf03b00e811b000

Contents?: true

Size: 1.08 KB

Versions: 3

Compression:

Stored size: 1.08 KB

Contents

# Think Feel Do Engine

[![Build Status](https://travis-ci.org/cbitstech/think_feel_do_engine.svg)](https://travis-ci.org/cbitstech/think_feel_do_engine)
[![security](https://hakiri.io/github/cbitstech/think_feel_do_engine/master.svg)](https://hakiri.io/github/cbitstech/think_feel_do_engine/master)

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`

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

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

```console
rake think_feel_do_engine:install:migrations
rake db:migrate
```

Configure observers

```ruby
# 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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
think_feel_do_engine-3.10.8 README.md
think_feel_do_engine-3.10.7 README.md
think_feel_do_engine-3.10.6 README.md