This project is an example website that showcases the acts_as_dashboard gem.
You can see acts_as_dashboard live at cretaceouslabs.com/dashboard_example .
To get the example up and running for yourself:
-
Clone or export this repo.
$ git clone http://github.com/nickhoffman/acts_as_dashboard_example.git $ cd acts_as_dashboard_example/
-
Start WEBrick.
$ script/server
-
View the dashboard at localhost:3000
-
Configure the dashboard by editing app/controllers/dashboards_controller.rb .
-
Reload the dashboard in your web browser.
When you’re ready to use acts_as_dashboard in one of your own apps:
-
Install the gem.
$ sudo gem install acts_as_dashboard
-
Learn how the dashboard generator works. It’s very simple.
-
Run the dashboard generator in your app.
$ script/generate dashboard [optional_dashboard_name]