Sha256: c2755d15f920dd13f6662d1613b7b6dc631f084b2011de32a9e8fc456740cf85

Contents?: true

Size: 1021 Bytes

Versions: 3

Compression:

Stored size: 1021 Bytes

Contents

# Old SQL Reports YAML
# This is an example report. Replace it with your actual reports.
#
# 'description' is the value displayed in the 'SELECT A REPORT' drop down list.
#
# The 'report_sql' file should be located under config/old_sql/report_sql.
# See config/old_sql/report_sql/user_old_sql_demo.sql for an example.
#
# The 'processor' parameter is optional, and should point to a class in lib/old_sql.
# See lib/old_sql/user_old_sql_demo_processor.rb for an example.
# 
# 'report_processor' names should be capitalized and separated with underscores. The file
# itself should follow normal ruby class naming conventions.
#
# 'report_design' is also optional, and should point to a file in config/old_sql/report_design.
# See config/old_sql/report_design/user_old_sql_demo.csv for an example.
#
# The 'fields' are the headers for the report.

user:
  description: User
  report_sql: user_old_sql_demo
  report_design: user_old_sql_demo
  #report_processor: User_Old_Sql_Demo_Processor
  fields: 
    - 'id'
    - 'name'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
old_sql-1.13.0 lib/generators/old_sql/templates/reports.yml.example
old_sql-1.12.0 lib/generators/old_sql/templates/reports.yml.example
old_sql-1.11.0 lib/generators/old_sql/templates/reports.yml.example