├── .buildpacks ├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── README.md ├── Rakefile ├── app ├── assets │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ ├── .keep │ │ ├── calfresh_app_icon.png │ │ ├── checkmark.svg │ │ ├── errormark.svg │ │ ├── income_icon.png │ │ └── interview_icon.png │ ├── javascripts │ │ ├── application.js │ │ ├── custom │ │ │ └── parsley-override.js │ │ └── vendor │ │ │ ├── bootstrap.min.js │ │ │ ├── fastclick.js │ │ │ ├── flashcanvas.js │ │ │ ├── flashcanvas.swf │ │ │ └── parsley.min.js │ └── stylesheets │ │ ├── application.css │ │ ├── custom.scss │ │ └── vendor │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.min.css │ │ └── parsley.css ├── controllers │ ├── application_controller.rb │ ├── cases_controller.rb │ ├── concerns │ │ └── .keep │ └── uploads_controller.rb ├── helpers │ └── application_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── case.rb │ ├── concerns │ │ └── .keep │ └── upload.rb └── views │ ├── application │ ├── _congrats_mobile.erb │ ├── _congrats_web.erb │ ├── _email_params.erb │ ├── _footer.erb │ ├── _masthead.erb │ ├── _next-step.erb │ ├── _receipt_btn_mobile.erb │ ├── _receipt_btn_web.erb │ ├── additional_household_member.erb │ ├── additional_household_question.erb │ ├── basic_info.erb │ ├── confirmation.erb │ ├── contact_info.erb │ ├── documents.erb │ ├── household_question.erb │ ├── index.erb │ ├── info_sharing.erb │ ├── interview.erb │ ├── review_and_submit.erb │ ├── rights_and_regs.erb │ └── sex_and_ssn.erb │ └── layouts │ ├── application.html.erb │ └── confirmation.html.erb ├── bin ├── bundle ├── rails ├── rake ├── setup └── spring ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── airbrake.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── routes.rb └── secrets.yml ├── db ├── migrate │ ├── 20150302231943_create_cases.rb │ ├── 20150303004215_add_interview_times_to_case.rb │ ├── 20150304165910_add_signature_to_case.rb │ ├── 20150313173045_create_uploads.rb │ ├── 20150413164935_add_pdf_to_case.rb │ └── 20150415154729_add_public_id_to_case.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep ├── calfresh.rb ├── calfresh │ ├── calfresh_3pager.pdf │ └── cover_letter_v5.pdf ├── document_processor.rb └── tasks │ └── .keep ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── spec ├── controllers │ └── application_controller_spec.rb ├── feature_spec_helper.rb ├── features │ └── all_features_spec.rb ├── fixtures │ └── files │ │ └── spak with space.jpeg ├── lib │ └── calfresh_spec.rb ├── models │ └── case_spec.rb ├── rails_helper.rb └── spec_helper.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.buildpacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/.buildpacks -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /app/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/calfresh_app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/images/calfresh_app_icon.png -------------------------------------------------------------------------------- /app/assets/images/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/images/checkmark.svg -------------------------------------------------------------------------------- /app/assets/images/errormark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/images/errormark.svg -------------------------------------------------------------------------------- /app/assets/images/income_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/images/income_icon.png -------------------------------------------------------------------------------- /app/assets/images/interview_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/images/interview_icon.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/custom/parsley-override.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/javascripts/custom/parsley-override.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/javascripts/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/javascripts/vendor/fastclick.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/flashcanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/javascripts/vendor/flashcanvas.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/flashcanvas.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/javascripts/vendor/flashcanvas.swf -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/parsley.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/javascripts/vendor/parsley.min.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/stylesheets/custom.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/vendor/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/stylesheets/vendor/bootstrap-theme.min.css -------------------------------------------------------------------------------- /app/assets/stylesheets/vendor/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/stylesheets/vendor/bootstrap.min.css -------------------------------------------------------------------------------- /app/assets/stylesheets/vendor/parsley.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/assets/stylesheets/vendor/parsley.css -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/cases_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/controllers/cases_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/uploads_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/controllers/uploads_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/models/case.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/upload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/models/upload.rb -------------------------------------------------------------------------------- /app/views/application/_congrats_mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/_congrats_mobile.erb -------------------------------------------------------------------------------- /app/views/application/_congrats_web.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/_congrats_web.erb -------------------------------------------------------------------------------- /app/views/application/_email_params.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/_email_params.erb -------------------------------------------------------------------------------- /app/views/application/_footer.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/_footer.erb -------------------------------------------------------------------------------- /app/views/application/_masthead.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/_masthead.erb -------------------------------------------------------------------------------- /app/views/application/_next-step.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/_next-step.erb -------------------------------------------------------------------------------- /app/views/application/_receipt_btn_mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/_receipt_btn_mobile.erb -------------------------------------------------------------------------------- /app/views/application/_receipt_btn_web.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/_receipt_btn_web.erb -------------------------------------------------------------------------------- /app/views/application/additional_household_member.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/additional_household_member.erb -------------------------------------------------------------------------------- /app/views/application/additional_household_question.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/additional_household_question.erb -------------------------------------------------------------------------------- /app/views/application/basic_info.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/basic_info.erb -------------------------------------------------------------------------------- /app/views/application/confirmation.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/confirmation.erb -------------------------------------------------------------------------------- /app/views/application/contact_info.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/contact_info.erb -------------------------------------------------------------------------------- /app/views/application/documents.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/documents.erb -------------------------------------------------------------------------------- /app/views/application/household_question.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/household_question.erb -------------------------------------------------------------------------------- /app/views/application/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/index.erb -------------------------------------------------------------------------------- /app/views/application/info_sharing.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/info_sharing.erb -------------------------------------------------------------------------------- /app/views/application/interview.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/interview.erb -------------------------------------------------------------------------------- /app/views/application/review_and_submit.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/review_and_submit.erb -------------------------------------------------------------------------------- /app/views/application/rights_and_regs.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/rights_and_regs.erb -------------------------------------------------------------------------------- /app/views/application/sex_and_ssn.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/application/sex_and_ssn.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/confirmation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/app/views/layouts/confirmation.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/bin/spring -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/airbrake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/initializers/airbrake.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/migrate/20150302231943_create_cases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/db/migrate/20150302231943_create_cases.rb -------------------------------------------------------------------------------- /db/migrate/20150303004215_add_interview_times_to_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/db/migrate/20150303004215_add_interview_times_to_case.rb -------------------------------------------------------------------------------- /db/migrate/20150304165910_add_signature_to_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/db/migrate/20150304165910_add_signature_to_case.rb -------------------------------------------------------------------------------- /db/migrate/20150313173045_create_uploads.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/db/migrate/20150313173045_create_uploads.rb -------------------------------------------------------------------------------- /db/migrate/20150413164935_add_pdf_to_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/db/migrate/20150413164935_add_pdf_to_case.rb -------------------------------------------------------------------------------- /db/migrate/20150415154729_add_public_id_to_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/db/migrate/20150415154729_add_public_id_to_case.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/calfresh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/lib/calfresh.rb -------------------------------------------------------------------------------- /lib/calfresh/calfresh_3pager.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/lib/calfresh/calfresh_3pager.pdf -------------------------------------------------------------------------------- /lib/calfresh/cover_letter_v5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/lib/calfresh/cover_letter_v5.pdf -------------------------------------------------------------------------------- /lib/document_processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/lib/document_processor.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/controllers/application_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/spec/controllers/application_controller_spec.rb -------------------------------------------------------------------------------- /spec/feature_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/spec/feature_spec_helper.rb -------------------------------------------------------------------------------- /spec/features/all_features_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/spec/features/all_features_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/files/spak with space.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/spec/fixtures/files/spak with space.jpeg -------------------------------------------------------------------------------- /spec/lib/calfresh_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/spec/lib/calfresh_spec.rb -------------------------------------------------------------------------------- /spec/models/case_spec.rb: -------------------------------------------------------------------------------- 1 | require 'rails_helper' 2 | 3 | RSpec.describe Case, :type => :model do 4 | end 5 | -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/clean/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------