public
Description: FiveRuns TuneUp for Merb
Homepage: http://tuneup.fiveruns.com
Clone URL: git://github.com/fiveruns/fiveruns_tuneup_merb.git
name age message
file CHANGELOG Sat Nov 08 07:28:02 -0800 2008 Make asset copying automatic [bruce]
file LICENSE Sat Oct 11 08:39:40 -0700 2008 Support for sharing with service README, prep f... [bruce]
file README Sat Nov 08 07:37:58 -0800 2008 `slice' doesn't add a path prefix; use `add_sli... [bruce]
file Rakefile Sat Nov 08 07:39:47 -0800 2008 Change core dependency [bruce]
file TODO Sat Oct 11 08:39:40 -0700 2008 Support for sharing with service README, prep f... [bruce]
directory app/ Sat Oct 11 08:39:40 -0700 2008 Support for sharing with service README, prep f... [bruce]
directory lib/ Sat Nov 08 07:28:02 -0800 2008 Make asset copying automatic [bruce]
directory public/ Mon Oct 13 12:33:20 -0700 2008 fix safari rendering issue [efalcao]
directory stubs/ Sat Sep 06 13:24:46 -0700 2008 Basic shell; continuing configuration [bruce]
README
= FiveRuns TuneUp panel for Merb

== Requirements

* fiveruns_tuneup_core gem
* merb-core >= 0.9.5
* merb-slices >= 0.9.5

== Synopsis

FiveRuns TuneUp for Merb.

See http://blog.fiveruns.com/2008/10/11/fiveruns-tuneup-for-merb for the announcement.

== Installation

1. Install the gem:

  sudo gem install fiveruns_tuneup_merb

2. Add the following to your desired environment file (eg, config/environments/development.rb):

  dependency 'fiveruns_tuneup_merb'

3. Add the following to your config/router.rb:

  add_slice FiverunsTuneupMerb
  
(If you're already mounting other slices with `all_slices' this step isn't necessary.)

5. Start your app!

== Sharing

To enable run sharing on the http://tuneup.fiveruns.com service, you need to configure the slice with an API key. Create 
an account at http://tuneup.fiveruns.com/users/new and look at your profile to find your it.

In your environment file (ie, config/environments/development.rb), add the API key:

  Merb::BootLoader.before_app_loads do
    Merb::Slices.config[:fiveruns_tuneup_merb][:api_key] = 'YOUR-API-KEY'
  end  
  
When you restart your application, a "Share this run" link on the TuneUp panel should appear.

== Supported Browsers

The TuneUp plugin has been tested with the following browsers:

* Firefox 2+
* Safari 3.1+

== Bugs and Feature Requests

Please let us know if you run into any problems with your application or browser. The plugin uses CSS isolation 
techniques that could interfere with your HTML or CSS code.

You can contact support at support@fiveruns.com
  
== Contributing

Help us make TuneUp better on Merb by contributing via GitHub.
  http://github.com/fiveruns/fiveruns_tuneup_merb
  http://github.com/fiveruns/fiveruns_tuneup_core  
    
== License

See LICENSE