public
Description: FiveRuns TuneUp for Merb
Homepage: http://tuneup.fiveruns.com
Clone URL: git://github.com/fiveruns/fiveruns_tuneup_merb.git
100644 66 lines (37 sloc) 1.763 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
= 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