public
Description: create reports via sql or ruby code for your rails app in minutes
Homepage: http://upstream-berlin.com/blog/open-source/#dead_simple_reports
Clone URL: git://github.com/langalex/dead_simple_reports.git
100644 27 lines (17 sloc) 0.626 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
== prerequisites ==
 
this plugin relies on the spreadsheet-excel gem to work, so you need to
 
sudo gem install spreadsheet-excel
 
== install ==
 
If you are on rails edge (which supports git) you can simply do a
script/plugin install git://github.com/langalex/dead_simple_reports
 
If not you need to do this from your rails root:
 
cd vendor/plugins
git clone git://github.com/langalex/dead_simple_reports --depth 1
cd dead_simple_reports
ruby install.rb
cd ../../..
 
== generate migration ==
 
To generate the neccessary migrations run
 
script/generate dead_simple_reports
rake db:migrate
 
See the README for usage instructions