No commit activity in last 3 years
No release in over 3 years
Simple Ruby on Rails engine that allows you to easily add a Get Satisfaction feedback page to your app
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0.4.0
 Project Readme

Feed Satisfaction

Feed Satisfaction is a simple Rails engine that allows you to easily add a Get Satisfaction feedback page to your Rails apps.

Features

Requirements

  • A Get Satisfaction account
  • Your Company/Organization Domain

Installation & Configuration

In your Gemfile add:

gem "feed_satisfaction"

In the terminal run:

bundle install

Create config/initializers/feed_satisfaction.rb and add:

FeedSatisfaction.config do |config|

  ## Required Settings

  config.company = "example_company"

  ## Optional Settings

  # If you have your own custom domain
  #config.domain = "getsatisfaction.example_company.com"

  # If your feedback page is for a specific product
  #config.product = "example_product"

  # Style the widget with your own CSS file
  #config.custom_css = "http://example_company.com/css/feedback_page.css"

  # Customize 
  #config.default_tab = "question"
  #config.question_limit = 5

  # If you are using FastPass single sign-on
  #config.fastpass_key = "abc123"
  #config.fastpass_secret = "abcdefg123456789"

  # If you want a topic list in the sidebar
  #config.sidebar_name = :sidebar
  #config.widget_id = "1234567890"

end

If you're having trouble finding the right settings check the Admin > Your Widgets page on your Get Satisfaction account

Restart your server and go to http://yourapp.com/feedback to see your feedback page.

You can use the url helpers feedback_path and feedback_url to link to the feedback page from your views.