Is your plugin hosted on GitHub? Make sure to press the "fetch" button next to the repository field to fetch your plugin's info from GitHub rather than typing it all in.
Repository
Name
Home Page
Short description This Rails plugin makes it easy to add an OLAP interface to your application, which is great for administration interfaces. Its main uses are collection information about the usage of your application and detecting inconsistencies and problems in your data. It does so by counting records in the table that conform the provided category definitions.
Description <p>This Rails plugin makes it easy to add an OLAP interface to your application, which is great for administration interfaces. Its main uses are collection information about the usage of your application and detecting inconsistencies and problems in your data. It does so by counting records in the table that conform the provided category definitions.</p> <p> This plugin is developed for the Floorplanner.com website, but is usable for any ActiveRecord based model. Because named_scope is used for the implementation, Rails 2.1 is required for this to work. </p> An example to show how this plugin works: <pre lang="ruby"> class MyModel < ActiveRecord::Base # fields :published_at, :category_field, :price enable_active_olap do |olap| olap.dimension :category_field olap.dimension :published, :categories => [ :published_recently => 'published_at > NOW() - INTERVAL 1 MONTHS', :published_earlier => 'published_at <= NOW() - INTERVAL 1 MONTHS' ] # :other category (not published) added automatically end end # execute simple query @result = MyModel.olap_query(:category_field) # drilldown to records in published/other category # (implemented as a named scope) @my_models = MyModel.olap_drilldown(:published => :other). paginate(:page => 1) @mymodels.each { |my_model| ... } # multiple dimensions @result = MyModel.olap_query(:category_field, :published) </pre> <p>Features: - Multi-dimensional queries - Drilling down to individual records - Easily define your dimensions - Easily perform trend queries - Rails helpers in development to display graphs and tables - BSD-licensed </p> <p>For some information about this plugin, see the Floorplanner techblog: http://techblog.floorplanner.com/tag/active_olap/ </p>
Description format RDoc MarkDown Textile
License Ruby's Rails' (MIT) GPL LGPL BSD Apache Artistic PublicDomain BSD-type Free-Trial Free-but-Restricted OpenSource Proprietary Shareware Source-available-proprietary Commercial
Category Assets Controllers Internationalization Misc. Enhancements Model Rails Engines Searching and Queries Security Statistics and Logs Testing View Extensions