Sha256: 909656e7392c1941abaa6be70383d296ce10b76e1f048eb3527a1f9a863f6c16

Contents?: true

Size: 1.4 KB

Versions: 40

Compression:

Stored size: 1.4 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

## Publishing to RubyGems

Build the `think_feel_do_engine` gem

```console
gem build think_feel_do_engine.gemspec
```

Publish to [rubygems.org](https://rubygems.org)

```console
gem push think_feel_do_engine-x.x.x.gem
```

View the published `think_feel_do_engine` gem [here](https://rubygems.org/gems/think_feel_do_engine)

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
think_feel_do_engine-3.17.2 README.md
think_feel_do_engine-3.17.1 README.md
think_feel_do_engine-3.17.0 README.md
think_feel_do_engine-3.16.3 README.md
think_feel_do_engine-3.16.2 README.md
think_feel_do_engine-3.16.1 README.md
think_feel_do_engine-3.15.7 README.md
think_feel_do_engine-3.16.0 README.md
think_feel_do_engine-3.15.6 README.md
think_feel_do_engine-3.15.5 README.md
think_feel_do_engine-3.15.4 README.md
think_feel_do_engine-3.15.3 README.md
think_feel_do_engine-3.15.2 README.md
think_feel_do_engine-3.15.1 README.md
think_feel_do_engine-3.15.0 README.md
think_feel_do_engine-3.14.9 README.md
think_feel_do_engine-3.14.8 README.md
think_feel_do_engine-3.14.7 README.md
think_feel_do_engine-3.14.6 README.md
think_feel_do_engine-3.14.5 README.md