/rails-plugin

Primary LanguageRubyGNU General Public License v3.0GPL-3.0

Build Status

Installation

Add this line to your application's Gemfile:

gem 'templarbit'

And then execute:

$ bundle

Create config/initializers/templarbit.rb with the following content (you can find your API Key and Property ID on the Templarbit settings page):

Rails.configuration.templarbit = {
  :api_key     => ENV['TB_API_KEY'],
  :property_id => ENV['TB_PROPERTY_ID']
}

Templarbit.api_key = Rails.configuration.templarbit[:api_key]
Templarbit.property_id = Rails.configuration.templarbit[:property_id]