https://github.com/cloverinteractive/clovercms-dashboard
Dashboard theme of clovercms
https://github.com/cloverinteractive/clovercms-dashboard
Last synced: about 2 months ago
JSON representation
Dashboard theme of clovercms
- Host: GitHub
- URL: https://github.com/cloverinteractive/clovercms-dashboard
- Owner: cloverinteractive
- License: mit
- Created: 2011-06-12T20:29:04.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2011-11-07T07:06:19.000Z (over 13 years ago)
- Last Synced: 2025-04-16T14:40:57.226Z (2 months ago)
- Language: Ruby
- Homepage:
- Size: 247 KB
- Stars: 1
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE
Awesome Lists containing this project
README
```
_ _ _ _ _
.-.-. ___| | _____ _____ _ __(_)_ __ | |_ ___ _ __ __ _ ___| |_(_)_ _____
(_\|/_) / __| |/ _ \ \ / / _ \ '__| | '_ \| __/ _ \ '__/ _` |/ __| __| \ \ / / _ \
( /|\ )| (__| | (_) \ V / __/ | | | | | | || __/ | | (_| | (__| |_| |\ V / __/
'-'-' \___|_|\___/ \_/ \___|_| |_|_| |_|\__\___|_| \__,_|\___|\__|_| \_/ \___|
```# Dashboard [](http://travis-ci.org/cloverinteractive/clovercms-dashboard)
### Simple dashboard theme for rails 3.x## Requirements
* [Bundler](http://gembundler.com)
* [Sass](http://sass-lang.com/)
* [Compass](http://compass-style.org)## Getting Started
To install simply fire up your favorite editor and write `gem 'clovercms-dashboard', :require => :dashboard` in your `Gemfile` then:
0. `bundle install`
1. `rails g clover_cms:dashboard:install`
2. Enjoy!## Running the tests
You first need to download dashboard from git and do as follows:
0. `git clone git://github.com/cloverinteractive/clovercms-dashboard.git`
1. `cd clovercms-dashboard`
2. `bundle install`
3. `bundle exec test/dummy/script/rails g clover_cms:dashboard:install`
4. `rake`## Personalize the way I use dashboard
### Wait, wha'?
`rails g clover_cms:dashboard:install` copies the needed sass and images for your application to have a dashboard look.
### But wait! I want to put my sass somewhere else in app
By default sass will get copied to `app/stylesheets` which is compass, standard, but you can switch it to any other place within app just by sending a parameter:
`rails g clover_cms:dashboard:install sass # This will copy all the sass files to app/sass instead`
### But wait! I'm playing with rails 3.1 I need the asset pipeline assets dir
Relax once again the answer is one parameter away:
`rails g clover_cms:dashboard:install --asset-pipeline`
### But wait! I want my views too
Simply run `rails g clover_cms:dashboard:views` that will copy all the views into your app/views directory.
### But wait! I use haml
Simply run `rails g clover_cms:dashboard:views --haml` that should do it.
## Supported platforms
We currently test and integrate in:
* ruby 1.9.2
* ruby 1.8.7
* ree## Run the rails dummy application
This gem comes with a dummy application to test in the browser, just do
the following from the articulate dir:0. `cd test/dummy`
1. `rails s`
2. You can now visit http://localhost:3000/ in your browser## Contribute
Feel free fork this project and submit a pull request, don't forget to add yourself to the contributors list in this README file.
## Contributors
* [Enrique Vidal](http://github.com/EnriqueVidal) - Ruby developer
* [Adan Alvarado](http://github.com/aalvarado) - Designer and Front end developer
* [Mario Bonales] (http://github.com/marioBonales)