├── .gitignore ├── .rspec ├── .ruby-version ├── .rvmrc ├── Gemfile ├── Gemfile.lock ├── LICENCE.txt ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ └── header-crown.png │ ├── javascripts │ │ └── application.js │ └── stylesheets │ │ ├── application.css.scss │ │ └── needs.scss ├── controllers │ ├── application_controller.rb │ ├── fact_checkers_controller.rb │ ├── imports_controller.rb │ ├── needs_controller.rb │ ├── search_controller.rb │ └── sources_controller.rb ├── helpers │ ├── application_helper.rb │ ├── departments_helper.rb │ ├── fact_checking_contacts_helper.rb │ ├── imports_helper.rb │ ├── justifications_helper.rb │ ├── needs_helper.rb │ └── nested_form_helper.rb ├── locales │ └── en.yml ├── mailers │ └── .gitkeep ├── models │ ├── .gitkeep │ ├── accountability.rb │ ├── audience.rb │ ├── contact.rb │ ├── department.rb │ ├── directgov_link.rb │ ├── evidence_type.rb │ ├── existing_service.rb │ ├── fact_checker.rb │ ├── import.rb │ ├── justification.rb │ ├── kind.rb │ ├── need.rb │ ├── need_search.rb │ ├── source.rb │ ├── user.rb │ └── writing_department.rb ├── uploaders │ └── evidence_file_uploader.rb └── views │ ├── auth_start │ ├── index.html.erb │ └── show.html.erb │ ├── departments │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── imports │ └── new.html.erb │ ├── layouts │ └── application.html.erb │ ├── needs │ ├── _decision.html.erb │ ├── _directgov_link_fields.html.erb │ ├── _errors.html.erb │ ├── _existing_service_fields.html.erb │ ├── _form.html.erb │ ├── _icebox.html.erb │ ├── _justification_fields.html.erb │ ├── _mark_done.html.erb │ ├── _needs_display.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── print.html.erb │ ├── show.html.erb │ └── show.json.rabl │ ├── report_mailer │ └── daily_analytics.text.erb │ ├── search │ └── index.html.erb │ └── sources │ ├── _form.html.erb │ ├── edit.html.erb │ └── new.html.erb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cucumber.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── carrierwave.rb │ ├── csv_renderer.rb │ ├── current_release_sha.rb │ ├── exception_notification.rb │ ├── formtastic.rb │ ├── gds-sso.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── time_formats.rb │ ├── tire.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml └── routes.rb ├── db ├── migrate │ ├── 20110609102602_create_needs.rb │ ├── 20110609102631_create_kinds.rb │ ├── 20110609110032_create_departments.rb │ ├── 20110609110317_create_justifications.rb │ ├── 20110609115605_acts_as_taggable_on_migration.rb │ ├── 20110609120049_devise_create_users.rb │ ├── 20110610142437_make_devise_invitable.rb │ ├── 20110610142708_user_roles.rb │ ├── 20110610160729_add_evidence_file_to_justification.rb │ ├── 20110613091307_add_decision_to_need.rb │ ├── 20110613093644_create_audiences.rb │ ├── 20110613094912_create_evidence_types.rb │ ├── 20110613100846_create_existing_services.rb │ ├── 20110615101938_set_default_for_need_status.rb │ ├── 20110616113944_add_tag_list_to_need.rb │ ├── 20110705141400_switch_users_to_oauth.rb │ ├── 20110711083002_more_need_fields.rb │ ├── 20110711131914_add_statutory_field_to_needs.rb │ ├── 20110830120000_create_directgov_link.rb │ ├── 20110830160000_add_formatting_decision_to_need.rb │ ├── 20110901111440_add_admin_flag_to_user.rb │ ├── 20110906032623_create_fact_checking_contacts.rb │ ├── 20110907111354_remove_habtm_tables_for_fact_checkers_and_departments.rb │ ├── 20110907111436_create_fact_checkers.rb │ ├── 20110907111450_create_accountabilities.rb │ ├── 20110929105130_add_writing_dept_field_to_needs.rb │ ├── 20111020091445_link_writing_department.rb │ ├── 20111117144958_split_departments.rb │ ├── 20111128145734_denormalize_fact_checkers.rb │ ├── 20120611075011_allow_version_to_be_null.rb │ ├── 20120621111108_add_permissions_to_user.rb │ ├── 20120706121412_drop_obsolete_user_columns.rb │ ├── 20120723095757_add_remotely_signed_out_to_user.rb │ ├── 20130111103552_change_permissions_to_array.rb │ ├── 20130402160118_create_sources.rb │ ├── 20130402160312_change_directgov_links_to_sources.rb │ ├── 20130402163348_change_existing_services_to_sources.rb │ ├── 20130402171639_change_justifications_to_sources.rb │ ├── 20130409064039_drop_legacy_source_tables.rb │ └── 20140721092948_add_organisation_slug_to_user.rb ├── schema.rb └── seeds.rb ├── doc └── README_FOR_APP ├── jenkins.sh ├── lib ├── analytics_interface.rb ├── csv_renderer.rb ├── failure_app.rb ├── needs_csv.rb └── tasks │ ├── .gitkeep │ ├── check_for_bad_time_handling.rake │ ├── cucumber.rake │ ├── data.rake │ ├── denormalize.rake │ ├── imminence.rake │ ├── imports.rake │ ├── migrate.rake │ └── rspec.rake ├── log └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── script ├── cucumber └── rails ├── spec ├── acceptance │ ├── acceptance_helper.rb │ ├── managing_sources_spec.rb │ └── searching_for_a_need_spec.rb ├── controllers │ ├── application_controller_spec.rb │ ├── fact_checkers_controller_spec.rb │ └── needs_controller_spec.rb ├── factories.rb ├── fixtures │ ├── dg_api.curl │ ├── import_sample.csv │ ├── import_with_new_fact_checker.csv │ └── import_with_writing_dept.csv ├── integration │ └── integration_helper.rb ├── models │ ├── accountability_spec.rb │ ├── contact_spec.rb │ ├── department_spec.rb │ ├── fact_checker_spec.rb │ ├── import_spec.rb │ ├── need_spec.rb │ ├── source_spec.rb │ ├── user_spec.rb │ └── writing_department_spec.rb ├── routing │ └── needs_routing_spec.rb ├── spec_helper.rb ├── support │ ├── linty.rb │ ├── set_matcher.rb │ └── tire.rb └── unit │ └── needs_csv_spec.rb ├── startup.sh └── vendor ├── assets └── stylesheets │ └── .gitkeep └── plugins └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 1.9.3-p484 2 | -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm use ruby-1.9.2 -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/header-crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/assets/images/header-crown.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/assets/stylesheets/application.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/needs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/assets/stylesheets/needs.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/fact_checkers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/controllers/fact_checkers_controller.rb -------------------------------------------------------------------------------- /app/controllers/imports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/controllers/imports_controller.rb -------------------------------------------------------------------------------- /app/controllers/needs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/controllers/needs_controller.rb -------------------------------------------------------------------------------- /app/controllers/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/controllers/search_controller.rb -------------------------------------------------------------------------------- /app/controllers/sources_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/controllers/sources_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/departments_helper.rb: -------------------------------------------------------------------------------- 1 | module DepartmentsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/fact_checking_contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module FactCheckingContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/imports_helper.rb: -------------------------------------------------------------------------------- 1 | module ImportsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/justifications_helper.rb: -------------------------------------------------------------------------------- 1 | module JustificationsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/needs_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/helpers/needs_helper.rb -------------------------------------------------------------------------------- /app/helpers/nested_form_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/helpers/nested_form_helper.rb -------------------------------------------------------------------------------- /app/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/locales/en.yml -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/accountability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/models/accountability.rb -------------------------------------------------------------------------------- /app/models/audience.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/models/audience.rb -------------------------------------------------------------------------------- /app/models/contact.rb: -------------------------------------------------------------------------------- 1 | class Contact < ActiveRecord::Base 2 | has_many :fact_checkers 3 | end 4 | -------------------------------------------------------------------------------- /app/models/department.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/models/department.rb -------------------------------------------------------------------------------- /app/models/directgov_link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/models/directgov_link.rb -------------------------------------------------------------------------------- /app/models/evidence_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/models/evidence_type.rb -------------------------------------------------------------------------------- /app/models/existing_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/models/existing_service.rb -------------------------------------------------------------------------------- /app/models/fact_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/models/fact_checker.rb -------------------------------------------------------------------------------- /app/models/import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/models/import.rb -------------------------------------------------------------------------------- /app/models/justification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/models/justification.rb -------------------------------------------------------------------------------- /app/models/kind.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/models/kind.rb -------------------------------------------------------------------------------- /app/models/need.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/models/need.rb -------------------------------------------------------------------------------- /app/models/need_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/models/need_search.rb -------------------------------------------------------------------------------- /app/models/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/models/source.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/writing_department.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/models/writing_department.rb -------------------------------------------------------------------------------- /app/uploaders/evidence_file_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/uploaders/evidence_file_uploader.rb -------------------------------------------------------------------------------- /app/views/auth_start/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= link_to "Sign in", '/auth/gds' %> -------------------------------------------------------------------------------- /app/views/auth_start/show.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/departments/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/departments/_form.html.erb -------------------------------------------------------------------------------- /app/views/departments/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/departments/edit.html.erb -------------------------------------------------------------------------------- /app/views/departments/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/departments/index.html.erb -------------------------------------------------------------------------------- /app/views/departments/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/departments/new.html.erb -------------------------------------------------------------------------------- /app/views/departments/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/departments/show.html.erb -------------------------------------------------------------------------------- /app/views/imports/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/imports/new.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/needs/_decision.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/needs/_decision.html.erb -------------------------------------------------------------------------------- /app/views/needs/_directgov_link_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/needs/_directgov_link_fields.html.erb -------------------------------------------------------------------------------- /app/views/needs/_errors.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/needs/_errors.html.erb -------------------------------------------------------------------------------- /app/views/needs/_existing_service_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/needs/_existing_service_fields.html.erb -------------------------------------------------------------------------------- /app/views/needs/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/needs/_form.html.erb -------------------------------------------------------------------------------- /app/views/needs/_icebox.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/needs/_icebox.html.erb -------------------------------------------------------------------------------- /app/views/needs/_justification_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/needs/_justification_fields.html.erb -------------------------------------------------------------------------------- /app/views/needs/_mark_done.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/needs/_mark_done.html.erb -------------------------------------------------------------------------------- /app/views/needs/_needs_display.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/needs/_needs_display.html.erb -------------------------------------------------------------------------------- /app/views/needs/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/needs/edit.html.erb -------------------------------------------------------------------------------- /app/views/needs/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/needs/index.html.erb -------------------------------------------------------------------------------- /app/views/needs/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/needs/new.html.erb -------------------------------------------------------------------------------- /app/views/needs/print.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/needs/print.html.erb -------------------------------------------------------------------------------- /app/views/needs/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/needs/show.html.erb -------------------------------------------------------------------------------- /app/views/needs/show.json.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/needs/show.json.rabl -------------------------------------------------------------------------------- /app/views/report_mailer/daily_analytics.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/report_mailer/daily_analytics.text.erb -------------------------------------------------------------------------------- /app/views/search/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/search/index.html.erb -------------------------------------------------------------------------------- /app/views/sources/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/sources/_form.html.erb -------------------------------------------------------------------------------- /app/views/sources/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/sources/edit.html.erb -------------------------------------------------------------------------------- /app/views/sources/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/app/views/sources/new.html.erb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/cucumber.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/carrierwave.rb: -------------------------------------------------------------------------------- 1 | require 'carrierwave/orm/activerecord' -------------------------------------------------------------------------------- /config/initializers/csv_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/initializers/csv_renderer.rb -------------------------------------------------------------------------------- /config/initializers/current_release_sha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/initializers/current_release_sha.rb -------------------------------------------------------------------------------- /config/initializers/exception_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/initializers/exception_notification.rb -------------------------------------------------------------------------------- /config/initializers/formtastic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/initializers/formtastic.rb -------------------------------------------------------------------------------- /config/initializers/gds-sso.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/initializers/gds-sso.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/time_formats.rb: -------------------------------------------------------------------------------- 1 | Time::DATE_FORMATS[:filename_timestamp] = "%Y-%m-%d-%H-%M-%S" 2 | -------------------------------------------------------------------------------- /config/initializers/tire.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/initializers/tire.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20110609102602_create_needs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110609102602_create_needs.rb -------------------------------------------------------------------------------- /db/migrate/20110609102631_create_kinds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110609102631_create_kinds.rb -------------------------------------------------------------------------------- /db/migrate/20110609110032_create_departments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110609110032_create_departments.rb -------------------------------------------------------------------------------- /db/migrate/20110609110317_create_justifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110609110317_create_justifications.rb -------------------------------------------------------------------------------- /db/migrate/20110609115605_acts_as_taggable_on_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110609115605_acts_as_taggable_on_migration.rb -------------------------------------------------------------------------------- /db/migrate/20110609120049_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110609120049_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20110610142437_make_devise_invitable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110610142437_make_devise_invitable.rb -------------------------------------------------------------------------------- /db/migrate/20110610142708_user_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110610142708_user_roles.rb -------------------------------------------------------------------------------- /db/migrate/20110610160729_add_evidence_file_to_justification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110610160729_add_evidence_file_to_justification.rb -------------------------------------------------------------------------------- /db/migrate/20110613091307_add_decision_to_need.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110613091307_add_decision_to_need.rb -------------------------------------------------------------------------------- /db/migrate/20110613093644_create_audiences.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110613093644_create_audiences.rb -------------------------------------------------------------------------------- /db/migrate/20110613094912_create_evidence_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110613094912_create_evidence_types.rb -------------------------------------------------------------------------------- /db/migrate/20110613100846_create_existing_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110613100846_create_existing_services.rb -------------------------------------------------------------------------------- /db/migrate/20110615101938_set_default_for_need_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110615101938_set_default_for_need_status.rb -------------------------------------------------------------------------------- /db/migrate/20110616113944_add_tag_list_to_need.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110616113944_add_tag_list_to_need.rb -------------------------------------------------------------------------------- /db/migrate/20110705141400_switch_users_to_oauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110705141400_switch_users_to_oauth.rb -------------------------------------------------------------------------------- /db/migrate/20110711083002_more_need_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110711083002_more_need_fields.rb -------------------------------------------------------------------------------- /db/migrate/20110711131914_add_statutory_field_to_needs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110711131914_add_statutory_field_to_needs.rb -------------------------------------------------------------------------------- /db/migrate/20110830120000_create_directgov_link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110830120000_create_directgov_link.rb -------------------------------------------------------------------------------- /db/migrate/20110830160000_add_formatting_decision_to_need.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110830160000_add_formatting_decision_to_need.rb -------------------------------------------------------------------------------- /db/migrate/20110901111440_add_admin_flag_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110901111440_add_admin_flag_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20110906032623_create_fact_checking_contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110906032623_create_fact_checking_contacts.rb -------------------------------------------------------------------------------- /db/migrate/20110907111354_remove_habtm_tables_for_fact_checkers_and_departments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110907111354_remove_habtm_tables_for_fact_checkers_and_departments.rb -------------------------------------------------------------------------------- /db/migrate/20110907111436_create_fact_checkers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110907111436_create_fact_checkers.rb -------------------------------------------------------------------------------- /db/migrate/20110907111450_create_accountabilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110907111450_create_accountabilities.rb -------------------------------------------------------------------------------- /db/migrate/20110929105130_add_writing_dept_field_to_needs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20110929105130_add_writing_dept_field_to_needs.rb -------------------------------------------------------------------------------- /db/migrate/20111020091445_link_writing_department.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20111020091445_link_writing_department.rb -------------------------------------------------------------------------------- /db/migrate/20111117144958_split_departments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20111117144958_split_departments.rb -------------------------------------------------------------------------------- /db/migrate/20111128145734_denormalize_fact_checkers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20111128145734_denormalize_fact_checkers.rb -------------------------------------------------------------------------------- /db/migrate/20120611075011_allow_version_to_be_null.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20120611075011_allow_version_to_be_null.rb -------------------------------------------------------------------------------- /db/migrate/20120621111108_add_permissions_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20120621111108_add_permissions_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20120706121412_drop_obsolete_user_columns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20120706121412_drop_obsolete_user_columns.rb -------------------------------------------------------------------------------- /db/migrate/20120723095757_add_remotely_signed_out_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20120723095757_add_remotely_signed_out_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20130111103552_change_permissions_to_array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20130111103552_change_permissions_to_array.rb -------------------------------------------------------------------------------- /db/migrate/20130402160118_create_sources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20130402160118_create_sources.rb -------------------------------------------------------------------------------- /db/migrate/20130402160312_change_directgov_links_to_sources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20130402160312_change_directgov_links_to_sources.rb -------------------------------------------------------------------------------- /db/migrate/20130402163348_change_existing_services_to_sources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20130402163348_change_existing_services_to_sources.rb -------------------------------------------------------------------------------- /db/migrate/20130402171639_change_justifications_to_sources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20130402171639_change_justifications_to_sources.rb -------------------------------------------------------------------------------- /db/migrate/20130409064039_drop_legacy_source_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20130409064039_drop_legacy_source_tables.rb -------------------------------------------------------------------------------- /db/migrate/20140721092948_add_organisation_slug_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/migrate/20140721092948_add_organisation_slug_to_user.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/jenkins.sh -------------------------------------------------------------------------------- /lib/analytics_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/lib/analytics_interface.rb -------------------------------------------------------------------------------- /lib/csv_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/lib/csv_renderer.rb -------------------------------------------------------------------------------- /lib/failure_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/lib/failure_app.rb -------------------------------------------------------------------------------- /lib/needs_csv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/lib/needs_csv.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/check_for_bad_time_handling.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/lib/tasks/check_for_bad_time_handling.rake -------------------------------------------------------------------------------- /lib/tasks/cucumber.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/lib/tasks/cucumber.rake -------------------------------------------------------------------------------- /lib/tasks/data.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/lib/tasks/data.rake -------------------------------------------------------------------------------- /lib/tasks/denormalize.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/lib/tasks/denormalize.rake -------------------------------------------------------------------------------- /lib/tasks/imminence.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/lib/tasks/imminence.rake -------------------------------------------------------------------------------- /lib/tasks/imports.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/lib/tasks/imports.rake -------------------------------------------------------------------------------- /lib/tasks/migrate.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/lib/tasks/migrate.rake -------------------------------------------------------------------------------- /lib/tasks/rspec.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/lib/tasks/rspec.rake -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/cucumber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/script/cucumber -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/script/rails -------------------------------------------------------------------------------- /spec/acceptance/acceptance_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/acceptance/acceptance_helper.rb -------------------------------------------------------------------------------- /spec/acceptance/managing_sources_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/acceptance/managing_sources_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/searching_for_a_need_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/acceptance/searching_for_a_need_spec.rb -------------------------------------------------------------------------------- /spec/controllers/application_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/controllers/application_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/fact_checkers_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/controllers/fact_checkers_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/needs_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/controllers/needs_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/factories.rb -------------------------------------------------------------------------------- /spec/fixtures/dg_api.curl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/fixtures/dg_api.curl -------------------------------------------------------------------------------- /spec/fixtures/import_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/fixtures/import_sample.csv -------------------------------------------------------------------------------- /spec/fixtures/import_with_new_fact_checker.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/fixtures/import_with_new_fact_checker.csv -------------------------------------------------------------------------------- /spec/fixtures/import_with_writing_dept.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/fixtures/import_with_writing_dept.csv -------------------------------------------------------------------------------- /spec/integration/integration_helper.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | WebMock.allow_net_connect! -------------------------------------------------------------------------------- /spec/models/accountability_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/models/accountability_spec.rb -------------------------------------------------------------------------------- /spec/models/contact_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/models/contact_spec.rb -------------------------------------------------------------------------------- /spec/models/department_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/models/department_spec.rb -------------------------------------------------------------------------------- /spec/models/fact_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/models/fact_checker_spec.rb -------------------------------------------------------------------------------- /spec/models/import_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/models/import_spec.rb -------------------------------------------------------------------------------- /spec/models/need_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/models/need_spec.rb -------------------------------------------------------------------------------- /spec/models/source_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/models/source_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/models/writing_department_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/models/writing_department_spec.rb -------------------------------------------------------------------------------- /spec/routing/needs_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/routing/needs_routing_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/linty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/support/linty.rb -------------------------------------------------------------------------------- /spec/support/set_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/support/set_matcher.rb -------------------------------------------------------------------------------- /spec/support/tire.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/support/tire.rb -------------------------------------------------------------------------------- /spec/unit/needs_csv_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/spec/unit/needs_csv_spec.rb -------------------------------------------------------------------------------- /startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/need-o-tron/HEAD/startup.sh -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------