├── .gitignore ├── Gemfile ├── README.md ├── app ├── controllers │ ├── custom_entities_controller.rb │ ├── custom_tables_controller.rb │ └── table_fields_controller.rb ├── helpers │ ├── custom_entities_helper.rb │ ├── custom_tables_helper.rb │ └── custom_tables_pdf_helper.rb ├── models │ ├── custom_entity.rb │ ├── custom_entity_custom_field.rb │ ├── custom_entity_query.rb │ ├── custom_table.rb │ └── custom_table_query.rb └── views │ ├── custom_entities │ ├── _form.html.erb │ ├── _history.html.erb │ ├── bulk_edit.html.erb │ ├── bulk_edit.js.erb │ ├── context_menu.html.erb │ ├── edit.html.erb │ ├── edit.js.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── new.js.erb │ ├── new_note.html.erb │ ├── new_note.js.erb │ ├── show.api.rsb │ ├── show.html.erb │ └── show.pdf.erb │ ├── custom_fields │ └── formats │ │ └── _belongs_to.html.erb │ ├── custom_tables │ ├── _custom_index.html.erb │ ├── _edit.html.erb │ ├── _form.html.erb │ ├── _query_form.html.erb │ ├── _query_headers.html.erb │ ├── _tabs.html.erb │ ├── context_menu.html.erb │ ├── edit.html.erb │ ├── edit.js.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── new.js.erb │ ├── settings │ │ └── _custom_fields.html.erb │ ├── show.html.erb │ ├── show.json.jbuilder │ └── show.pdf.erb │ ├── issues │ ├── _custom_tables.html.erb │ └── _query_custom_table.html.erb │ └── table_fields │ ├── _form.html.erb │ ├── _index.html.erb │ ├── edit.html.erb │ ├── edit.js.erb │ ├── new.html.erb │ └── new.js.erb ├── config ├── locales │ ├── cs.yml │ ├── en.yml │ ├── es.yml │ └── sv.yml └── routes.rb ├── custom_tables.jpg ├── custom_tables_v2.png ├── db └── migrate │ ├── 001_create_custom_tables.rb │ ├── 002_create_custom_entities.rb │ ├── 003_add_custom_table_to_custom_fields.rb │ ├── 20170805095343_add_parent_id_to_custom_entities.rb │ ├── 20170827111550_add_timestamps_to_custom_entity.rb │ ├── 20170909171338_add_subtables_to_custom_tables.rb │ ├── 20170929164840_add_external_name_to_custom_field.rb │ ├── 20171010191409_add_cusom_entity_to_custom_value.rb │ ├── 20171028130410_add_internal_name_to_custom_tables.rb │ ├── 20190816222225_add_association_custom_table_project.rb │ └── 20190820221144_add_tracker_ids_to_custom_table.rb ├── init.rb ├── lib └── custom_tables │ ├── active_record_class.rb │ ├── acts_as_journalize.rb │ ├── hooks.rb │ ├── patches │ ├── application_helper_patch.rb │ ├── custom_field_value_patch.rb │ ├── custom_value_patch.rb │ ├── issue_patch.rb │ ├── lib │ │ └── issue_pdf_helper_patch.rb │ ├── project_patch.rb │ └── user_format_patch.rb │ └── table_fields │ └── format │ └── belongs_to.rb ├── spec ├── controllers │ ├── custom_entities_controller_spec.rb │ ├── custom_tables_controller_spec.rb │ └── table_fields_controller_spec.rb ├── factories │ └── factories.rb ├── models │ ├── custom_entity_custom_field_spec.rb │ ├── custom_entity_query_spec.rb │ ├── custom_entity_spec.rb │ ├── custom_table_spec.rb │ └── project_spec.rb ├── rails_helper.rb ├── spec_helper.rb ├── support │ └── user.rb └── views │ ├── custom_tables │ └── new.html.erb_spec.rb │ └── issues │ └── _custom_tables.html.erb_spec.rb └── test ├── fixtures ├── custom_fields.yml └── custom_tables.yml ├── functional ├── custom_entities_controller_test.rb ├── custom_tables_controller_test.rb └── table_fields_controller_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | .eslintcache 3 | .rvmrc 4 | .project 5 | .idea -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/README.md -------------------------------------------------------------------------------- /app/controllers/custom_entities_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/controllers/custom_entities_controller.rb -------------------------------------------------------------------------------- /app/controllers/custom_tables_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/controllers/custom_tables_controller.rb -------------------------------------------------------------------------------- /app/controllers/table_fields_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/controllers/table_fields_controller.rb -------------------------------------------------------------------------------- /app/helpers/custom_entities_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/helpers/custom_entities_helper.rb -------------------------------------------------------------------------------- /app/helpers/custom_tables_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/helpers/custom_tables_helper.rb -------------------------------------------------------------------------------- /app/helpers/custom_tables_pdf_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/helpers/custom_tables_pdf_helper.rb -------------------------------------------------------------------------------- /app/models/custom_entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/models/custom_entity.rb -------------------------------------------------------------------------------- /app/models/custom_entity_custom_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/models/custom_entity_custom_field.rb -------------------------------------------------------------------------------- /app/models/custom_entity_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/models/custom_entity_query.rb -------------------------------------------------------------------------------- /app/models/custom_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/models/custom_table.rb -------------------------------------------------------------------------------- /app/models/custom_table_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/models/custom_table_query.rb -------------------------------------------------------------------------------- /app/views/custom_entities/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_entities/_form.html.erb -------------------------------------------------------------------------------- /app/views/custom_entities/_history.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_entities/_history.html.erb -------------------------------------------------------------------------------- /app/views/custom_entities/bulk_edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_entities/bulk_edit.html.erb -------------------------------------------------------------------------------- /app/views/custom_entities/bulk_edit.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_entities/bulk_edit.js.erb -------------------------------------------------------------------------------- /app/views/custom_entities/context_menu.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_entities/context_menu.html.erb -------------------------------------------------------------------------------- /app/views/custom_entities/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_entities/edit.html.erb -------------------------------------------------------------------------------- /app/views/custom_entities/edit.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_entities/edit.js.erb -------------------------------------------------------------------------------- /app/views/custom_entities/index.html.erb: -------------------------------------------------------------------------------- 1 |

CustomEntitiesController#index

2 | -------------------------------------------------------------------------------- /app/views/custom_entities/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_entities/new.html.erb -------------------------------------------------------------------------------- /app/views/custom_entities/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_entities/new.js.erb -------------------------------------------------------------------------------- /app/views/custom_entities/new_note.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_entities/new_note.html.erb -------------------------------------------------------------------------------- /app/views/custom_entities/new_note.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_entities/new_note.js.erb -------------------------------------------------------------------------------- /app/views/custom_entities/show.api.rsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_entities/show.api.rsb -------------------------------------------------------------------------------- /app/views/custom_entities/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_entities/show.html.erb -------------------------------------------------------------------------------- /app/views/custom_entities/show.pdf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_entities/show.pdf.erb -------------------------------------------------------------------------------- /app/views/custom_fields/formats/_belongs_to.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_fields/formats/_belongs_to.html.erb -------------------------------------------------------------------------------- /app/views/custom_tables/_custom_index.html.erb: -------------------------------------------------------------------------------- 1 | index -------------------------------------------------------------------------------- /app/views/custom_tables/_edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_tables/_edit.html.erb -------------------------------------------------------------------------------- /app/views/custom_tables/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_tables/_form.html.erb -------------------------------------------------------------------------------- /app/views/custom_tables/_query_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_tables/_query_form.html.erb -------------------------------------------------------------------------------- /app/views/custom_tables/_query_headers.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_tables/_query_headers.html.erb -------------------------------------------------------------------------------- /app/views/custom_tables/_tabs.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_tables/_tabs.html.erb -------------------------------------------------------------------------------- /app/views/custom_tables/context_menu.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_tables/context_menu.html.erb -------------------------------------------------------------------------------- /app/views/custom_tables/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_tables/edit.html.erb -------------------------------------------------------------------------------- /app/views/custom_tables/edit.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_tables/edit.js.erb -------------------------------------------------------------------------------- /app/views/custom_tables/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_tables/index.html.erb -------------------------------------------------------------------------------- /app/views/custom_tables/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_tables/new.html.erb -------------------------------------------------------------------------------- /app/views/custom_tables/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_tables/new.js.erb -------------------------------------------------------------------------------- /app/views/custom_tables/settings/_custom_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_tables/settings/_custom_fields.html.erb -------------------------------------------------------------------------------- /app/views/custom_tables/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_tables/show.html.erb -------------------------------------------------------------------------------- /app/views/custom_tables/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_tables/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/custom_tables/show.pdf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/custom_tables/show.pdf.erb -------------------------------------------------------------------------------- /app/views/issues/_custom_tables.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/issues/_custom_tables.html.erb -------------------------------------------------------------------------------- /app/views/issues/_query_custom_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/issues/_query_custom_table.html.erb -------------------------------------------------------------------------------- /app/views/table_fields/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/table_fields/_form.html.erb -------------------------------------------------------------------------------- /app/views/table_fields/_index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/table_fields/_index.html.erb -------------------------------------------------------------------------------- /app/views/table_fields/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/table_fields/edit.html.erb -------------------------------------------------------------------------------- /app/views/table_fields/edit.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/table_fields/edit.js.erb -------------------------------------------------------------------------------- /app/views/table_fields/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/table_fields/new.html.erb -------------------------------------------------------------------------------- /app/views/table_fields/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/app/views/table_fields/new.js.erb -------------------------------------------------------------------------------- /config/locales/cs.yml: -------------------------------------------------------------------------------- 1 | cs: 2 | -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/config/locales/es.yml -------------------------------------------------------------------------------- /config/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/config/locales/sv.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/config/routes.rb -------------------------------------------------------------------------------- /custom_tables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/custom_tables.jpg -------------------------------------------------------------------------------- /custom_tables_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/custom_tables_v2.png -------------------------------------------------------------------------------- /db/migrate/001_create_custom_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/db/migrate/001_create_custom_tables.rb -------------------------------------------------------------------------------- /db/migrate/002_create_custom_entities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/db/migrate/002_create_custom_entities.rb -------------------------------------------------------------------------------- /db/migrate/003_add_custom_table_to_custom_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/db/migrate/003_add_custom_table_to_custom_fields.rb -------------------------------------------------------------------------------- /db/migrate/20170805095343_add_parent_id_to_custom_entities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/db/migrate/20170805095343_add_parent_id_to_custom_entities.rb -------------------------------------------------------------------------------- /db/migrate/20170827111550_add_timestamps_to_custom_entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/db/migrate/20170827111550_add_timestamps_to_custom_entity.rb -------------------------------------------------------------------------------- /db/migrate/20170909171338_add_subtables_to_custom_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/db/migrate/20170909171338_add_subtables_to_custom_tables.rb -------------------------------------------------------------------------------- /db/migrate/20170929164840_add_external_name_to_custom_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/db/migrate/20170929164840_add_external_name_to_custom_field.rb -------------------------------------------------------------------------------- /db/migrate/20171010191409_add_cusom_entity_to_custom_value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/db/migrate/20171010191409_add_cusom_entity_to_custom_value.rb -------------------------------------------------------------------------------- /db/migrate/20171028130410_add_internal_name_to_custom_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/db/migrate/20171028130410_add_internal_name_to_custom_tables.rb -------------------------------------------------------------------------------- /db/migrate/20190816222225_add_association_custom_table_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/db/migrate/20190816222225_add_association_custom_table_project.rb -------------------------------------------------------------------------------- /db/migrate/20190820221144_add_tracker_ids_to_custom_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/db/migrate/20190820221144_add_tracker_ids_to_custom_table.rb -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/init.rb -------------------------------------------------------------------------------- /lib/custom_tables/active_record_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/lib/custom_tables/active_record_class.rb -------------------------------------------------------------------------------- /lib/custom_tables/acts_as_journalize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/lib/custom_tables/acts_as_journalize.rb -------------------------------------------------------------------------------- /lib/custom_tables/hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/lib/custom_tables/hooks.rb -------------------------------------------------------------------------------- /lib/custom_tables/patches/application_helper_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/lib/custom_tables/patches/application_helper_patch.rb -------------------------------------------------------------------------------- /lib/custom_tables/patches/custom_field_value_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/lib/custom_tables/patches/custom_field_value_patch.rb -------------------------------------------------------------------------------- /lib/custom_tables/patches/custom_value_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/lib/custom_tables/patches/custom_value_patch.rb -------------------------------------------------------------------------------- /lib/custom_tables/patches/issue_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/lib/custom_tables/patches/issue_patch.rb -------------------------------------------------------------------------------- /lib/custom_tables/patches/lib/issue_pdf_helper_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/lib/custom_tables/patches/lib/issue_pdf_helper_patch.rb -------------------------------------------------------------------------------- /lib/custom_tables/patches/project_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/lib/custom_tables/patches/project_patch.rb -------------------------------------------------------------------------------- /lib/custom_tables/patches/user_format_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/lib/custom_tables/patches/user_format_patch.rb -------------------------------------------------------------------------------- /lib/custom_tables/table_fields/format/belongs_to.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/lib/custom_tables/table_fields/format/belongs_to.rb -------------------------------------------------------------------------------- /spec/controllers/custom_entities_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/spec/controllers/custom_entities_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/custom_tables_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/spec/controllers/custom_tables_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/table_fields_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/spec/controllers/table_fields_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/spec/factories/factories.rb -------------------------------------------------------------------------------- /spec/models/custom_entity_custom_field_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/spec/models/custom_entity_custom_field_spec.rb -------------------------------------------------------------------------------- /spec/models/custom_entity_query_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/spec/models/custom_entity_query_spec.rb -------------------------------------------------------------------------------- /spec/models/custom_entity_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/spec/models/custom_entity_spec.rb -------------------------------------------------------------------------------- /spec/models/custom_table_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/spec/models/custom_table_spec.rb -------------------------------------------------------------------------------- /spec/models/project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/spec/models/project_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/spec/support/user.rb -------------------------------------------------------------------------------- /spec/views/custom_tables/new.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/spec/views/custom_tables/new.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/issues/_custom_tables.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/spec/views/issues/_custom_tables.html.erb_spec.rb -------------------------------------------------------------------------------- /test/fixtures/custom_fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/test/fixtures/custom_fields.yml -------------------------------------------------------------------------------- /test/fixtures/custom_tables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/test/fixtures/custom_tables.yml -------------------------------------------------------------------------------- /test/functional/custom_entities_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/test/functional/custom_entities_controller_test.rb -------------------------------------------------------------------------------- /test/functional/custom_tables_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/test/functional/custom_tables_controller_test.rb -------------------------------------------------------------------------------- /test/functional/table_fields_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/test/functional/table_fields_controller_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frywer/custom_tables/HEAD/test/test_helper.rb --------------------------------------------------------------------------------