├── .gitignore ├── .travis.yml ├── Gemfile ├── HISTORY.md ├── MIT-LICENSE ├── README.md ├── Rakefile ├── lib ├── generators │ ├── reportable_jquery_flot_assets │ │ ├── reportable_jquery_flot_assets_generator.rb │ │ └── templates │ │ │ ├── NOTES │ │ │ ├── excanvas.min.js │ │ │ └── jquery.flot.min.js │ ├── reportable_migration │ │ ├── reportable_migration_generator.rb │ │ └── templates │ │ │ └── migration.rb │ ├── reportable_model_name_migration │ │ ├── USAGE │ │ ├── reportable_model_name_migration_generator.rb │ │ └── templates │ │ │ └── migration.rb │ └── reportable_raphael_assets │ │ ├── reportable_raphael_assets_generator.rb │ │ └── templates │ │ ├── NOTES │ │ ├── g.line.min.js │ │ ├── g.raphael.min.js │ │ └── raphael.min.js └── saulabs │ ├── reportable.rb │ └── reportable │ ├── config.rb │ ├── cumulated_report.rb │ ├── grouping.rb │ ├── railtie.rb │ ├── report.rb │ ├── report_cache.rb │ ├── report_tag_helper.rb │ ├── reporting_period.rb │ └── result_set.rb ├── reportable.gemspec └── spec ├── classes ├── cumulated_report_spec.rb ├── grouping_spec.rb ├── report_cache_spec.rb ├── report_spec.rb └── reporting_period_spec.rb ├── db ├── database.yml └── schema.rb ├── other ├── report_method_spec.rb └── report_tag_helper_spec.rb ├── spec.opts └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/Gemfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/HISTORY.md -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/generators/reportable_jquery_flot_assets/reportable_jquery_flot_assets_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/generators/reportable_jquery_flot_assets/reportable_jquery_flot_assets_generator.rb -------------------------------------------------------------------------------- /lib/generators/reportable_jquery_flot_assets/templates/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/generators/reportable_jquery_flot_assets/templates/NOTES -------------------------------------------------------------------------------- /lib/generators/reportable_jquery_flot_assets/templates/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/generators/reportable_jquery_flot_assets/templates/excanvas.min.js -------------------------------------------------------------------------------- /lib/generators/reportable_jquery_flot_assets/templates/jquery.flot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/generators/reportable_jquery_flot_assets/templates/jquery.flot.min.js -------------------------------------------------------------------------------- /lib/generators/reportable_migration/reportable_migration_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/generators/reportable_migration/reportable_migration_generator.rb -------------------------------------------------------------------------------- /lib/generators/reportable_migration/templates/migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/generators/reportable_migration/templates/migration.rb -------------------------------------------------------------------------------- /lib/generators/reportable_model_name_migration/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/generators/reportable_model_name_migration/USAGE -------------------------------------------------------------------------------- /lib/generators/reportable_model_name_migration/reportable_model_name_migration_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/generators/reportable_model_name_migration/reportable_model_name_migration_generator.rb -------------------------------------------------------------------------------- /lib/generators/reportable_model_name_migration/templates/migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/generators/reportable_model_name_migration/templates/migration.rb -------------------------------------------------------------------------------- /lib/generators/reportable_raphael_assets/reportable_raphael_assets_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/generators/reportable_raphael_assets/reportable_raphael_assets_generator.rb -------------------------------------------------------------------------------- /lib/generators/reportable_raphael_assets/templates/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/generators/reportable_raphael_assets/templates/NOTES -------------------------------------------------------------------------------- /lib/generators/reportable_raphael_assets/templates/g.line.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/generators/reportable_raphael_assets/templates/g.line.min.js -------------------------------------------------------------------------------- /lib/generators/reportable_raphael_assets/templates/g.raphael.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/generators/reportable_raphael_assets/templates/g.raphael.min.js -------------------------------------------------------------------------------- /lib/generators/reportable_raphael_assets/templates/raphael.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/generators/reportable_raphael_assets/templates/raphael.min.js -------------------------------------------------------------------------------- /lib/saulabs/reportable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/saulabs/reportable.rb -------------------------------------------------------------------------------- /lib/saulabs/reportable/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/saulabs/reportable/config.rb -------------------------------------------------------------------------------- /lib/saulabs/reportable/cumulated_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/saulabs/reportable/cumulated_report.rb -------------------------------------------------------------------------------- /lib/saulabs/reportable/grouping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/saulabs/reportable/grouping.rb -------------------------------------------------------------------------------- /lib/saulabs/reportable/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/saulabs/reportable/railtie.rb -------------------------------------------------------------------------------- /lib/saulabs/reportable/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/saulabs/reportable/report.rb -------------------------------------------------------------------------------- /lib/saulabs/reportable/report_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/saulabs/reportable/report_cache.rb -------------------------------------------------------------------------------- /lib/saulabs/reportable/report_tag_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/saulabs/reportable/report_tag_helper.rb -------------------------------------------------------------------------------- /lib/saulabs/reportable/reporting_period.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/saulabs/reportable/reporting_period.rb -------------------------------------------------------------------------------- /lib/saulabs/reportable/result_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/lib/saulabs/reportable/result_set.rb -------------------------------------------------------------------------------- /reportable.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/reportable.gemspec -------------------------------------------------------------------------------- /spec/classes/cumulated_report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/spec/classes/cumulated_report_spec.rb -------------------------------------------------------------------------------- /spec/classes/grouping_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/spec/classes/grouping_spec.rb -------------------------------------------------------------------------------- /spec/classes/report_cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/spec/classes/report_cache_spec.rb -------------------------------------------------------------------------------- /spec/classes/report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/spec/classes/report_spec.rb -------------------------------------------------------------------------------- /spec/classes/reporting_period_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/spec/classes/reporting_period_spec.rb -------------------------------------------------------------------------------- /spec/db/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/spec/db/database.yml -------------------------------------------------------------------------------- /spec/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/spec/db/schema.rb -------------------------------------------------------------------------------- /spec/other/report_method_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/spec/other/report_method_spec.rb -------------------------------------------------------------------------------- /spec/other/report_tag_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/spec/other/report_tag_helper_spec.rb -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/spec/spec.opts -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulabs/reportable/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------