├── .gitignore ├── .ruby-version ├── .travis.yml ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── api ├── .env.sample ├── API_DOC.md ├── app │ ├── controllers │ │ ├── Application.scala │ │ ├── Management.scala │ │ └── Swarms.scala │ └── lib │ │ ├── Elasticsearch.scala │ │ └── GeoJsonFormatter.scala ├── conf │ ├── application.conf │ └── routes ├── eb_name.txt └── package.sh ├── bombard ├── Gemfile ├── Gemfile.lock ├── README.md ├── bombard.rb └── postcodes.csv ├── case_studies ├── broadband_survey.md ├── broadband_survey │ ├── add-fields.gif │ ├── clone.gif │ ├── create.gif │ ├── csv.png │ ├── embed-code.gif │ ├── graphs.gif │ ├── login.gif │ ├── move-delete.gif │ ├── open.gif │ ├── permissions.gif │ ├── preview.png │ ├── table.png │ ├── thumb.png │ └── view-form.png ├── indyref.md ├── indyref │ ├── indyref-graph1.png │ ├── indyref-graph2.png │ ├── indyref-graph3.png │ ├── indyref1.gif │ └── thumb.png ├── realtime_clicker.md └── realtime_clicker │ ├── aggregate-field.gif │ ├── api-keys.gif │ ├── get-code.gif │ ├── map-demo.png │ ├── preview-form.png │ ├── results-over-time.png │ └── thumb.jpg ├── cloudformation ├── README.md ├── __example.template ├── all.template ├── base.template ├── bashlib │ └── shared.sh ├── cfn.conf ├── collector.template ├── create_all.sh ├── delete_all.sh ├── dist │ └── elasticsearch.yml ├── elasticsearch.template ├── processor.template ├── update_all.sh └── validate_all.sh ├── collector ├── README.md ├── app │ ├── Global.scala │ ├── controllers │ │ ├── Application.scala │ │ ├── Management.scala │ │ └── Swarms.scala │ └── views │ │ ├── index.scala.html │ │ └── main.scala.html ├── conf │ ├── application.conf │ └── routes ├── eb_name.txt ├── example_curl_live_form.sh ├── example_curl_live_json.sh ├── example_curl_local_form.sh ├── example_curl_local_json.sh ├── package.sh └── public │ ├── images │ └── favicon.png │ └── stylesheets │ └── main.css ├── copy_static_markdown.sh ├── deploy.sh ├── deploy ├── Gemfile ├── Gemfile.lock ├── README.md └── deploy.rb ├── examples ├── README.md ├── generic-backend │ ├── .gitignore │ ├── README.md │ ├── backend.js │ ├── package.json │ └── public │ │ └── index.html ├── livedebate-scotland │ ├── README.md │ ├── ad.jpg │ ├── as.jpg │ ├── cookies.js │ ├── debate.css │ ├── debate.js │ ├── index.html │ └── jquery.min.js ├── livedebate │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── app.rb │ ├── config.rb │ ├── config.ru │ ├── lib │ │ └── swarm_api.rb │ ├── public │ │ ├── images │ │ │ ├── .gitkeep │ │ │ ├── dc.jpg │ │ │ ├── em.jpg │ │ │ └── nc.jpg │ │ ├── javascripts │ │ │ ├── application.js │ │ │ └── jquery.min.js │ │ └── stylesheets │ │ │ └── application.css │ ├── stylesheets │ │ └── application.scss │ └── views │ │ ├── index.haml │ │ └── layout.haml ├── mapdemo-backend │ ├── .gitignore │ ├── README.md │ ├── backend.js │ ├── package.json │ └── public │ │ └── index.html └── mapdemo-standalone │ ├── README.md │ └── index.html ├── geocoder ├── .gitignore ├── README.md ├── eb_name.txt ├── geocoder.js ├── package.json └── package.sh ├── processor ├── app │ ├── Global.scala │ ├── controllers │ │ ├── Application.scala │ │ ├── Management.scala │ │ └── Swarms.scala │ └── lib │ │ ├── Activities.scala │ │ ├── ActivityDispatcher.scala │ │ ├── Decider.scala │ │ ├── Elasticsearch.scala │ │ ├── ExternalActivity.scala │ │ └── StoreInElasticsearchActivity.scala ├── conf │ ├── application-logger.xml │ ├── application.conf │ └── routes ├── eb_name.txt ├── external_processors.md ├── logs │ └── processor.log ├── package.sh ├── start_prod_processor.sh ├── stop_prod_processor.sh └── test │ ├── ActivityRunOnce.scala │ ├── DeciderRunOnce.scala │ └── resources │ └── logback-test.xml ├── project ├── SwarmizeBuild.scala ├── build.properties └── plugins.sbt ├── sentiment-endpoint ├── .gitignore ├── Procfile ├── package.json └── sentiment-endpoint.js ├── shared-lib └── src │ ├── main │ ├── resources │ │ └── field_types.json │ └── scala │ │ └── swarmize │ │ ├── ClassLogger.scala │ │ ├── FieldTypes.scala │ │ ├── Swarm.scala │ │ ├── SwarmApiKeys.scala │ │ ├── SwarmField.scala │ │ ├── SwarmSubmissionValidator.scala │ │ ├── SwarmTable.scala │ │ ├── UniqueId.scala │ │ ├── aws │ │ ├── AWS.scala │ │ ├── SimpleWorkflowConfig.scala │ │ └── swf │ │ │ ├── SwfAsyncHelpers.scala │ │ │ ├── SwfDecision.scala │ │ │ └── SwfHistoryEvent.scala │ │ └── json │ │ ├── FieldTypeJson.scala │ │ ├── PlayJsonIsoDateFormat.scala │ │ ├── SubmittedData.scala │ │ └── SwarmDefinition.scala │ └── test │ └── scala │ └── swarmize │ ├── SwarmFieldTypesTest.scala │ ├── SwarmSubmissionValidatorTest.scala │ ├── SwarmTest.scala │ ├── TestSwarms.scala │ ├── aws │ └── swf │ │ └── SwfHistoryEventTest.scala │ └── json │ ├── SubmittedDataTest.scala │ └── SwarmDefinitionJsonTest.scala └── swarmize-dot-com ├── .ebextensions └── packages.config ├── .env.example ├── .gitignore ├── .rspec ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── .keep │ │ └── favicon.ico │ ├── javascripts │ │ ├── application.js │ │ ├── backbone-min.js │ │ ├── bootstrap.min.js │ │ ├── c3.min.js │ │ ├── d3.min.js │ │ ├── embed.js │ │ ├── field_workspace.js │ │ ├── form_element.js │ │ ├── jquery.iecors.js │ │ ├── models │ │ │ ├── graph_data.js │ │ │ └── results_data.js │ │ ├── moment.min.js │ │ ├── palette_field.js │ │ ├── parsley-config.js │ │ ├── parsley.min.js │ │ ├── rickshaw.min.js │ │ ├── swarmize-embed.js │ │ ├── underscore-min.js │ │ └── views │ │ │ ├── pie_graph.js │ │ │ ├── results_table.js │ │ │ └── timeseries_graph.js │ └── stylesheets │ │ ├── application.scss │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.min.css │ │ ├── c3.css │ │ └── rickshaw.min.css ├── controllers │ ├── admin_controller.rb │ ├── api_keys_controller.rb │ ├── application_controller.rb │ ├── case_studies_controller.rb │ ├── concerns │ │ └── .keep │ ├── csv_controller.rb │ ├── documentation_controller.rb │ ├── graphs_controller.rb │ ├── home_controller.rb │ ├── oembed_controller.rb │ ├── permissions_controller.rb │ ├── search_controller.rb │ ├── sessions_controller.rb │ ├── swarm_import_controller.rb │ ├── swarms_controller.rb │ ├── users_controller.rb │ └── utils_controller.rb ├── helpers │ ├── application_helper.rb │ └── fields_helper.rb ├── mailers │ ├── .keep │ └── permission_mailer.rb ├── models │ ├── .keep │ ├── access_permission.rb │ ├── api_key.rb │ ├── concerns │ │ └── .keep │ ├── field_description.rb │ ├── graph.rb │ ├── swarm.rb │ ├── swarm_field.rb │ └── user.rb └── views │ ├── admin │ └── show.html.haml │ ├── api_keys │ └── index.html.haml │ ├── case_studies │ ├── _list.html.haml │ ├── index.html.haml │ └── show.html.haml │ ├── documentation │ ├── index.html.haml │ └── show.html.haml │ ├── form_partials │ ├── _bigtext_display_field_partial.html.haml │ ├── _check_box_display_field_partial.html.haml │ ├── _display_field_partial.html.haml │ ├── _edit_field_partial.html.haml │ ├── _element_controls.html.haml │ ├── _pick_one_display_field_partial.html.haml │ ├── _pick_several_display_field_partial.html.haml │ ├── _rating_display_field_partial.html.haml │ └── _yesno_display_field_partial.html.haml │ ├── graphs │ ├── _pie.html.haml │ ├── _timeseries.html.haml │ ├── delete.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ └── new.html.haml │ ├── home │ ├── _logged_in.html.haml │ ├── _logged_out.html.haml │ ├── _project_status.html.haml │ └── show.html.haml │ ├── layouts │ ├── _flashes.html.haml │ ├── _nav.html.haml │ ├── application.html.haml │ └── embed.html.haml │ ├── permission_mailer │ └── permission_email.text.erb │ ├── permissions │ ├── _logged_out_permissions_page.html.haml │ ├── _owner_permissions_page.html.haml │ └── index.html.haml │ ├── search │ └── results.html.haml │ ├── sessions │ └── logout.html.haml │ ├── swarm_import │ └── new.html.haml │ ├── swarms │ ├── _close_swarm_modal.html.haml │ ├── _embed_closed.html.haml │ ├── _embed_live.html.haml │ ├── _field_code_update_js.html.haml │ ├── _open_swarm_modal.html.haml │ ├── _swarm_description_open_close.html.haml │ ├── _swarm_description_open_close_logged_in.html.haml │ ├── _swarm_dropdown_menu.html.haml │ ├── _swarm_graphs.html.haml │ ├── _swarm_header.html.haml │ ├── _swarm_page_js.html.haml │ ├── _swarm_results.html.haml │ ├── _swarm_table.html.haml │ ├── closed.html.haml │ ├── code.html.haml │ ├── delete.html.haml │ ├── draft.html.haml │ ├── edit.html.haml │ ├── embed.html.haml │ ├── fields.html.haml │ ├── index.html.haml │ ├── live.html.haml │ ├── new.html.haml │ ├── preview.html.haml │ └── show.html.haml │ └── users │ ├── _user_header.html.haml │ ├── closed.html.haml │ ├── delete.html.haml │ ├── draft.html.haml │ ├── index.html.haml │ ├── live.html.haml │ └── show.html.haml ├── bin ├── bundle ├── rails └── rake ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── amazon_ses.rb │ ├── aws.rb │ ├── backtrace_silencers.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── non_digest_assets.rb │ ├── omniauth.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── will_paginate.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml └── routes.rb ├── db ├── migrate │ ├── 20140712134916_create_swarms.rb │ ├── 20140716162431_add_fields_to_swarm.rb │ ├── 20140722135555_add_open_close_to_swarm.rb │ ├── 20140729093242_create_users.rb │ ├── 20140729123430_add_user_id_to_swarms.rb │ ├── 20140729133308_add_parent_swarm_id_to_swarms.rb │ ├── 20140801101148_add_is_fake_to_users.rb │ ├── 20140801134513_add_spiked_field_to_swarms.rb │ ├── 20140812130235_add_tokens_to_swarms.rb │ ├── 20140814134610_create_graph_configurations.rb │ ├── 20140814135824_rename_graph_configurations.rb │ ├── 20140814173018_create_swarm_fields.rb │ ├── 20140815095709_remove_serialized_fields.rb │ ├── 20140826092139_create_access_permissions.rb │ ├── 20140827092647_add_owner_field_to_permissions.rb │ ├── 20140827103714_add_creators_to_access_permissions.rb │ ├── 20140827162410_remove_creator_field_from_swarm.rb │ ├── 20140828114635_add_is_admin_to_users.rb │ ├── 20140912101553_add_deleted_at_to_swarms.rb │ ├── 20141010094402_remove_viz_type.rb │ ├── 20141017093840_add_other_to_swarmfield.rb │ ├── 20141017131200_add_toggles_to_swarm.rb │ ├── 20141017150238_change_other_to_allow_other.rb │ ├── 20141021114539_change_desscription_to_text_field.rb │ └── 20141204145601_allow_pick_one_to_be_select.rb ├── schema.rb └── seeds.rb ├── deploy-sample.json ├── deploy.rb ├── eb_name.txt ├── field_types.json ├── lib ├── assets │ └── .keep ├── dummy.rb ├── dynamo_sync.rb ├── email_validator.rb ├── json_importer.rb ├── swarm_csv_tool.rb ├── swarmize_oembed.rb ├── swarmize_search.rb ├── swarmize_search │ └── queries.rb └── tasks │ ├── .keep │ └── swarmize.rake ├── log └── .keep ├── package.sh ├── public ├── 404.html ├── 422.html ├── 500.html ├── case_studies │ ├── broadband_survey.md │ ├── broadband_survey │ │ ├── add-fields.gif │ │ ├── clone.gif │ │ ├── create.gif │ │ ├── csv.png │ │ ├── embed-code.gif │ │ ├── graphs.gif │ │ ├── login.gif │ │ ├── move-delete.gif │ │ ├── open.gif │ │ ├── permissions.gif │ │ ├── preview.png │ │ ├── table.png │ │ ├── thumb.png │ │ └── view-form.png │ ├── indyref.md │ ├── indyref │ │ ├── indyref-graph1.png │ │ ├── indyref-graph2.png │ │ ├── indyref-graph3.png │ │ ├── indyref1.gif │ │ └── thumb.png │ ├── realtime_clicker.md │ └── realtime_clicker │ │ ├── aggregate-field.gif │ │ ├── api-keys.gif │ │ ├── get-code.gif │ │ ├── map-demo.png │ │ ├── preview-form.png │ │ ├── results-over-time.png │ │ └── thumb.jpg ├── documentation │ └── api.md ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── js │ └── swarmize-embed.js └── robots.txt ├── spec ├── controllers │ ├── admin_controller_spec.rb │ ├── api_tokens_controller_spec.rb │ ├── case_studies_controller_spec.rb │ ├── csv_controller_spec.rb │ ├── graphs_controller_spec.rb │ ├── home_controller_spec.rb │ ├── oembed_controller_spec.rb │ ├── permissions_controller_spec.rb │ ├── search_controller_spec.rb │ ├── sessions_controller_spec.rb │ ├── shared_examples_for_controllers.rb │ ├── swarm_import_controller_spec.rb │ ├── swarms_controller_spec.rb │ ├── users_controller_spec.rb │ └── utils_controller_spec.rb ├── factories │ ├── access_permissions.rb │ ├── graphs.rb │ ├── swarm_fields.rb │ ├── swarms.rb │ └── users.rb ├── helpers │ ├── admin_helper_spec.rb │ ├── graphs_helper_spec.rb │ ├── home_helper_spec.rb │ ├── permissions_helper_spec.rb │ ├── search_helper_spec.rb │ ├── sessions_helper_spec.rb │ ├── swarms_helper_spec.rb │ └── users_helper_spec.rb ├── lib │ ├── json_importer_spec.rb │ ├── sample.json │ ├── sample_field.json │ └── sample_field_possible_values.json ├── mailers │ └── permission_mailer_spec.rb ├── models │ ├── access_permission_spec.rb │ ├── email_validator_spec.rb │ ├── graph_spec.rb │ ├── swarm_field_spec.rb │ ├── swarm_spec.rb │ └── user_spec.rb ├── spec_helper.rb └── support │ └── factory_girl.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 1.9.3-p547 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/README.md -------------------------------------------------------------------------------- /api/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/api/.env.sample -------------------------------------------------------------------------------- /api/API_DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/api/API_DOC.md -------------------------------------------------------------------------------- /api/app/controllers/Application.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/api/app/controllers/Application.scala -------------------------------------------------------------------------------- /api/app/controllers/Management.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/api/app/controllers/Management.scala -------------------------------------------------------------------------------- /api/app/controllers/Swarms.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/api/app/controllers/Swarms.scala -------------------------------------------------------------------------------- /api/app/lib/Elasticsearch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/api/app/lib/Elasticsearch.scala -------------------------------------------------------------------------------- /api/app/lib/GeoJsonFormatter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/api/app/lib/GeoJsonFormatter.scala -------------------------------------------------------------------------------- /api/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/api/conf/application.conf -------------------------------------------------------------------------------- /api/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/api/conf/routes -------------------------------------------------------------------------------- /api/eb_name.txt: -------------------------------------------------------------------------------- 1 | Swarmize API 2 | -------------------------------------------------------------------------------- /api/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/api/package.sh -------------------------------------------------------------------------------- /bombard/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/bombard/Gemfile -------------------------------------------------------------------------------- /bombard/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/bombard/Gemfile.lock -------------------------------------------------------------------------------- /bombard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/bombard/README.md -------------------------------------------------------------------------------- /bombard/bombard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/bombard/bombard.rb -------------------------------------------------------------------------------- /bombard/postcodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/bombard/postcodes.csv -------------------------------------------------------------------------------- /case_studies/broadband_survey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/broadband_survey.md -------------------------------------------------------------------------------- /case_studies/broadband_survey/add-fields.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/broadband_survey/add-fields.gif -------------------------------------------------------------------------------- /case_studies/broadband_survey/clone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/broadband_survey/clone.gif -------------------------------------------------------------------------------- /case_studies/broadband_survey/create.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/broadband_survey/create.gif -------------------------------------------------------------------------------- /case_studies/broadband_survey/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/broadband_survey/csv.png -------------------------------------------------------------------------------- /case_studies/broadband_survey/embed-code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/broadband_survey/embed-code.gif -------------------------------------------------------------------------------- /case_studies/broadband_survey/graphs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/broadband_survey/graphs.gif -------------------------------------------------------------------------------- /case_studies/broadband_survey/login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/broadband_survey/login.gif -------------------------------------------------------------------------------- /case_studies/broadband_survey/move-delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/broadband_survey/move-delete.gif -------------------------------------------------------------------------------- /case_studies/broadband_survey/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/broadband_survey/open.gif -------------------------------------------------------------------------------- /case_studies/broadband_survey/permissions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/broadband_survey/permissions.gif -------------------------------------------------------------------------------- /case_studies/broadband_survey/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/broadband_survey/preview.png -------------------------------------------------------------------------------- /case_studies/broadband_survey/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/broadband_survey/table.png -------------------------------------------------------------------------------- /case_studies/broadband_survey/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/broadband_survey/thumb.png -------------------------------------------------------------------------------- /case_studies/broadband_survey/view-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/broadband_survey/view-form.png -------------------------------------------------------------------------------- /case_studies/indyref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/indyref.md -------------------------------------------------------------------------------- /case_studies/indyref/indyref-graph1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/indyref/indyref-graph1.png -------------------------------------------------------------------------------- /case_studies/indyref/indyref-graph2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/indyref/indyref-graph2.png -------------------------------------------------------------------------------- /case_studies/indyref/indyref-graph3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/indyref/indyref-graph3.png -------------------------------------------------------------------------------- /case_studies/indyref/indyref1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/indyref/indyref1.gif -------------------------------------------------------------------------------- /case_studies/indyref/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/indyref/thumb.png -------------------------------------------------------------------------------- /case_studies/realtime_clicker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/realtime_clicker.md -------------------------------------------------------------------------------- /case_studies/realtime_clicker/aggregate-field.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/realtime_clicker/aggregate-field.gif -------------------------------------------------------------------------------- /case_studies/realtime_clicker/api-keys.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/realtime_clicker/api-keys.gif -------------------------------------------------------------------------------- /case_studies/realtime_clicker/get-code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/realtime_clicker/get-code.gif -------------------------------------------------------------------------------- /case_studies/realtime_clicker/map-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/realtime_clicker/map-demo.png -------------------------------------------------------------------------------- /case_studies/realtime_clicker/preview-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/realtime_clicker/preview-form.png -------------------------------------------------------------------------------- /case_studies/realtime_clicker/results-over-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/realtime_clicker/results-over-time.png -------------------------------------------------------------------------------- /case_studies/realtime_clicker/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/case_studies/realtime_clicker/thumb.jpg -------------------------------------------------------------------------------- /cloudformation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/cloudformation/README.md -------------------------------------------------------------------------------- /cloudformation/__example.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/cloudformation/__example.template -------------------------------------------------------------------------------- /cloudformation/all.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/cloudformation/all.template -------------------------------------------------------------------------------- /cloudformation/base.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/cloudformation/base.template -------------------------------------------------------------------------------- /cloudformation/bashlib/shared.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/cloudformation/bashlib/shared.sh -------------------------------------------------------------------------------- /cloudformation/cfn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/cloudformation/cfn.conf -------------------------------------------------------------------------------- /cloudformation/collector.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/cloudformation/collector.template -------------------------------------------------------------------------------- /cloudformation/create_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/cloudformation/create_all.sh -------------------------------------------------------------------------------- /cloudformation/delete_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/cloudformation/delete_all.sh -------------------------------------------------------------------------------- /cloudformation/dist/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/cloudformation/dist/elasticsearch.yml -------------------------------------------------------------------------------- /cloudformation/elasticsearch.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/cloudformation/elasticsearch.template -------------------------------------------------------------------------------- /cloudformation/processor.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/cloudformation/processor.template -------------------------------------------------------------------------------- /cloudformation/update_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/cloudformation/update_all.sh -------------------------------------------------------------------------------- /cloudformation/validate_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/cloudformation/validate_all.sh -------------------------------------------------------------------------------- /collector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/collector/README.md -------------------------------------------------------------------------------- /collector/app/Global.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/collector/app/Global.scala -------------------------------------------------------------------------------- /collector/app/controllers/Application.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/collector/app/controllers/Application.scala -------------------------------------------------------------------------------- /collector/app/controllers/Management.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/collector/app/controllers/Management.scala -------------------------------------------------------------------------------- /collector/app/controllers/Swarms.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/collector/app/controllers/Swarms.scala -------------------------------------------------------------------------------- /collector/app/views/index.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/collector/app/views/index.scala.html -------------------------------------------------------------------------------- /collector/app/views/main.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/collector/app/views/main.scala.html -------------------------------------------------------------------------------- /collector/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/collector/conf/application.conf -------------------------------------------------------------------------------- /collector/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/collector/conf/routes -------------------------------------------------------------------------------- /collector/eb_name.txt: -------------------------------------------------------------------------------- 1 | Collector -------------------------------------------------------------------------------- /collector/example_curl_live_form.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/collector/example_curl_live_form.sh -------------------------------------------------------------------------------- /collector/example_curl_live_json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/collector/example_curl_live_json.sh -------------------------------------------------------------------------------- /collector/example_curl_local_form.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/collector/example_curl_local_form.sh -------------------------------------------------------------------------------- /collector/example_curl_local_json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/collector/example_curl_local_json.sh -------------------------------------------------------------------------------- /collector/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/collector/package.sh -------------------------------------------------------------------------------- /collector/public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/collector/public/images/favicon.png -------------------------------------------------------------------------------- /collector/public/stylesheets/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /copy_static_markdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/copy_static_markdown.sh -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/deploy.sh -------------------------------------------------------------------------------- /deploy/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/deploy/Gemfile -------------------------------------------------------------------------------- /deploy/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/deploy/Gemfile.lock -------------------------------------------------------------------------------- /deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/deploy/README.md -------------------------------------------------------------------------------- /deploy/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/deploy/deploy.rb -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/generic-backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /examples/generic-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/generic-backend/README.md -------------------------------------------------------------------------------- /examples/generic-backend/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/generic-backend/backend.js -------------------------------------------------------------------------------- /examples/generic-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/generic-backend/package.json -------------------------------------------------------------------------------- /examples/generic-backend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/generic-backend/public/index.html -------------------------------------------------------------------------------- /examples/livedebate-scotland/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate-scotland/README.md -------------------------------------------------------------------------------- /examples/livedebate-scotland/ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate-scotland/ad.jpg -------------------------------------------------------------------------------- /examples/livedebate-scotland/as.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate-scotland/as.jpg -------------------------------------------------------------------------------- /examples/livedebate-scotland/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate-scotland/cookies.js -------------------------------------------------------------------------------- /examples/livedebate-scotland/debate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate-scotland/debate.css -------------------------------------------------------------------------------- /examples/livedebate-scotland/debate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate-scotland/debate.js -------------------------------------------------------------------------------- /examples/livedebate-scotland/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate-scotland/index.html -------------------------------------------------------------------------------- /examples/livedebate-scotland/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate-scotland/jquery.min.js -------------------------------------------------------------------------------- /examples/livedebate/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | -------------------------------------------------------------------------------- /examples/livedebate/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/Gemfile -------------------------------------------------------------------------------- /examples/livedebate/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/Gemfile.lock -------------------------------------------------------------------------------- /examples/livedebate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/README.md -------------------------------------------------------------------------------- /examples/livedebate/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/app.rb -------------------------------------------------------------------------------- /examples/livedebate/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/config.rb -------------------------------------------------------------------------------- /examples/livedebate/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/config.ru -------------------------------------------------------------------------------- /examples/livedebate/lib/swarm_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/lib/swarm_api.rb -------------------------------------------------------------------------------- /examples/livedebate/public/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/livedebate/public/images/dc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/public/images/dc.jpg -------------------------------------------------------------------------------- /examples/livedebate/public/images/em.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/public/images/em.jpg -------------------------------------------------------------------------------- /examples/livedebate/public/images/nc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/public/images/nc.jpg -------------------------------------------------------------------------------- /examples/livedebate/public/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/public/javascripts/application.js -------------------------------------------------------------------------------- /examples/livedebate/public/javascripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/public/javascripts/jquery.min.js -------------------------------------------------------------------------------- /examples/livedebate/public/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/public/stylesheets/application.css -------------------------------------------------------------------------------- /examples/livedebate/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/stylesheets/application.scss -------------------------------------------------------------------------------- /examples/livedebate/views/index.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/views/index.haml -------------------------------------------------------------------------------- /examples/livedebate/views/layout.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/livedebate/views/layout.haml -------------------------------------------------------------------------------- /examples/mapdemo-backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /examples/mapdemo-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/mapdemo-backend/README.md -------------------------------------------------------------------------------- /examples/mapdemo-backend/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/mapdemo-backend/backend.js -------------------------------------------------------------------------------- /examples/mapdemo-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/mapdemo-backend/package.json -------------------------------------------------------------------------------- /examples/mapdemo-backend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/mapdemo-backend/public/index.html -------------------------------------------------------------------------------- /examples/mapdemo-standalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/mapdemo-standalone/README.md -------------------------------------------------------------------------------- /examples/mapdemo-standalone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/examples/mapdemo-standalone/index.html -------------------------------------------------------------------------------- /geocoder/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /geocoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/geocoder/README.md -------------------------------------------------------------------------------- /geocoder/eb_name.txt: -------------------------------------------------------------------------------- 1 | Swarmize Geocoder -------------------------------------------------------------------------------- /geocoder/geocoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/geocoder/geocoder.js -------------------------------------------------------------------------------- /geocoder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/geocoder/package.json -------------------------------------------------------------------------------- /geocoder/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/geocoder/package.sh -------------------------------------------------------------------------------- /processor/app/Global.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/app/Global.scala -------------------------------------------------------------------------------- /processor/app/controllers/Application.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/app/controllers/Application.scala -------------------------------------------------------------------------------- /processor/app/controllers/Management.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/app/controllers/Management.scala -------------------------------------------------------------------------------- /processor/app/controllers/Swarms.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/app/controllers/Swarms.scala -------------------------------------------------------------------------------- /processor/app/lib/Activities.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/app/lib/Activities.scala -------------------------------------------------------------------------------- /processor/app/lib/ActivityDispatcher.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/app/lib/ActivityDispatcher.scala -------------------------------------------------------------------------------- /processor/app/lib/Decider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/app/lib/Decider.scala -------------------------------------------------------------------------------- /processor/app/lib/Elasticsearch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/app/lib/Elasticsearch.scala -------------------------------------------------------------------------------- /processor/app/lib/ExternalActivity.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/app/lib/ExternalActivity.scala -------------------------------------------------------------------------------- /processor/app/lib/StoreInElasticsearchActivity.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/app/lib/StoreInElasticsearchActivity.scala -------------------------------------------------------------------------------- /processor/conf/application-logger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/conf/application-logger.xml -------------------------------------------------------------------------------- /processor/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/conf/application.conf -------------------------------------------------------------------------------- /processor/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/conf/routes -------------------------------------------------------------------------------- /processor/eb_name.txt: -------------------------------------------------------------------------------- 1 | Processor -------------------------------------------------------------------------------- /processor/external_processors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/external_processors.md -------------------------------------------------------------------------------- /processor/logs/processor.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/logs/processor.log -------------------------------------------------------------------------------- /processor/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/package.sh -------------------------------------------------------------------------------- /processor/start_prod_processor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/start_prod_processor.sh -------------------------------------------------------------------------------- /processor/stop_prod_processor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/stop_prod_processor.sh -------------------------------------------------------------------------------- /processor/test/ActivityRunOnce.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/test/ActivityRunOnce.scala -------------------------------------------------------------------------------- /processor/test/DeciderRunOnce.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/test/DeciderRunOnce.scala -------------------------------------------------------------------------------- /processor/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/processor/test/resources/logback-test.xml -------------------------------------------------------------------------------- /project/SwarmizeBuild.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/project/SwarmizeBuild.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.6 -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /sentiment-endpoint/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /sentiment-endpoint/Procfile: -------------------------------------------------------------------------------- 1 | web: node sentiment-endpoint.js 2 | -------------------------------------------------------------------------------- /sentiment-endpoint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/sentiment-endpoint/package.json -------------------------------------------------------------------------------- /sentiment-endpoint/sentiment-endpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/sentiment-endpoint/sentiment-endpoint.js -------------------------------------------------------------------------------- /shared-lib/src/main/resources/field_types.json: -------------------------------------------------------------------------------- 1 | ../../../../swarmize-dot-com/field_types.json -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/ClassLogger.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/ClassLogger.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/FieldTypes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/FieldTypes.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/Swarm.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/Swarm.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/SwarmApiKeys.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/SwarmApiKeys.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/SwarmField.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/SwarmField.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/SwarmSubmissionValidator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/SwarmSubmissionValidator.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/SwarmTable.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/SwarmTable.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/UniqueId.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/UniqueId.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/aws/AWS.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/aws/AWS.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/aws/SimpleWorkflowConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/aws/SimpleWorkflowConfig.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/aws/swf/SwfAsyncHelpers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/aws/swf/SwfAsyncHelpers.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/aws/swf/SwfDecision.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/aws/swf/SwfDecision.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/aws/swf/SwfHistoryEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/aws/swf/SwfHistoryEvent.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/json/FieldTypeJson.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/json/FieldTypeJson.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/json/PlayJsonIsoDateFormat.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/json/PlayJsonIsoDateFormat.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/json/SubmittedData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/json/SubmittedData.scala -------------------------------------------------------------------------------- /shared-lib/src/main/scala/swarmize/json/SwarmDefinition.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/main/scala/swarmize/json/SwarmDefinition.scala -------------------------------------------------------------------------------- /shared-lib/src/test/scala/swarmize/SwarmFieldTypesTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/test/scala/swarmize/SwarmFieldTypesTest.scala -------------------------------------------------------------------------------- /shared-lib/src/test/scala/swarmize/SwarmSubmissionValidatorTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/test/scala/swarmize/SwarmSubmissionValidatorTest.scala -------------------------------------------------------------------------------- /shared-lib/src/test/scala/swarmize/SwarmTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/test/scala/swarmize/SwarmTest.scala -------------------------------------------------------------------------------- /shared-lib/src/test/scala/swarmize/TestSwarms.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/test/scala/swarmize/TestSwarms.scala -------------------------------------------------------------------------------- /shared-lib/src/test/scala/swarmize/aws/swf/SwfHistoryEventTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/test/scala/swarmize/aws/swf/SwfHistoryEventTest.scala -------------------------------------------------------------------------------- /shared-lib/src/test/scala/swarmize/json/SubmittedDataTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/test/scala/swarmize/json/SubmittedDataTest.scala -------------------------------------------------------------------------------- /shared-lib/src/test/scala/swarmize/json/SwarmDefinitionJsonTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/shared-lib/src/test/scala/swarmize/json/SwarmDefinitionJsonTest.scala -------------------------------------------------------------------------------- /swarmize-dot-com/.ebextensions/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/.ebextensions/packages.config -------------------------------------------------------------------------------- /swarmize-dot-com/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/.env.example -------------------------------------------------------------------------------- /swarmize-dot-com/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/.gitignore -------------------------------------------------------------------------------- /swarmize-dot-com/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /swarmize-dot-com/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/Gemfile -------------------------------------------------------------------------------- /swarmize-dot-com/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/Gemfile.lock -------------------------------------------------------------------------------- /swarmize-dot-com/Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/Guardfile -------------------------------------------------------------------------------- /swarmize-dot-com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/README.md -------------------------------------------------------------------------------- /swarmize-dot-com/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/Rakefile -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/backbone-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/backbone-min.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/bootstrap.min.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/c3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/c3.min.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/d3.min.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/embed.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/field_workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/field_workspace.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/form_element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/form_element.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/jquery.iecors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/jquery.iecors.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/models/graph_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/models/graph_data.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/models/results_data.js: -------------------------------------------------------------------------------- 1 | var ResultsData = Backbone.Model.extend(); 2 | -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/moment.min.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/palette_field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/palette_field.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/parsley-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/parsley-config.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/parsley.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/parsley.min.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/rickshaw.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/rickshaw.min.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/swarmize-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/swarmize-embed.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/underscore-min.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/views/pie_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/views/pie_graph.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/views/results_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/views/results_table.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/javascripts/views/timeseries_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/javascripts/views/timeseries_graph.js -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/stylesheets/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/stylesheets/bootstrap-theme.min.css -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/stylesheets/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/stylesheets/bootstrap.min.css -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/stylesheets/c3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/stylesheets/c3.css -------------------------------------------------------------------------------- /swarmize-dot-com/app/assets/stylesheets/rickshaw.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/assets/stylesheets/rickshaw.min.css -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/admin_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/admin_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/api_keys_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/api_keys_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/case_studies_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/case_studies_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/csv_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/csv_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/documentation_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/documentation_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/graphs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/graphs_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/oembed_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/oembed_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/permissions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/permissions_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/search_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/swarm_import_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/swarm_import_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/swarms_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/swarms_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/controllers/utils_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/controllers/utils_controller.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/helpers/fields_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/helpers/fields_helper.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swarmize-dot-com/app/mailers/permission_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/mailers/permission_mailer.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swarmize-dot-com/app/models/access_permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/models/access_permission.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/models/api_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/models/api_key.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swarmize-dot-com/app/models/field_description.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/models/field_description.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/models/graph.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/models/graph.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/models/swarm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/models/swarm.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/models/swarm_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/models/swarm_field.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/models/user.rb -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/admin/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/admin/show.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/api_keys/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/api_keys/index.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/case_studies/_list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/case_studies/_list.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/case_studies/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/case_studies/index.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/case_studies/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/case_studies/show.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/documentation/index.html.haml: -------------------------------------------------------------------------------- 1 | %h1 Help 2 | 3 | %ul 4 | %li= link_to "API Documentation", doc_path('api') 5 | -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/documentation/show.html.haml: -------------------------------------------------------------------------------- 1 | .case_study= @body.html_safe 2 | -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/form_partials/_bigtext_display_field_partial.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/form_partials/_bigtext_display_field_partial.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/form_partials/_check_box_display_field_partial.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/form_partials/_check_box_display_field_partial.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/form_partials/_display_field_partial.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/form_partials/_display_field_partial.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/form_partials/_edit_field_partial.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/form_partials/_edit_field_partial.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/form_partials/_element_controls.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/form_partials/_element_controls.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/form_partials/_pick_one_display_field_partial.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/form_partials/_pick_one_display_field_partial.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/form_partials/_pick_several_display_field_partial.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/form_partials/_pick_several_display_field_partial.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/form_partials/_rating_display_field_partial.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/form_partials/_rating_display_field_partial.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/form_partials/_yesno_display_field_partial.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/form_partials/_yesno_display_field_partial.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/graphs/_pie.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/graphs/_pie.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/graphs/_timeseries.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/graphs/_timeseries.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/graphs/delete.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/graphs/delete.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/graphs/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/graphs/edit.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/graphs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/graphs/index.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/graphs/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/graphs/new.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/home/_logged_in.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/home/_logged_in.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/home/_logged_out.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/home/_logged_out.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/home/_project_status.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/home/_project_status.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/home/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/home/show.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/layouts/_flashes.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/layouts/_flashes.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/layouts/_nav.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/layouts/_nav.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/layouts/embed.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/layouts/embed.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/permission_mailer/permission_email.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/permission_mailer/permission_email.text.erb -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/permissions/_logged_out_permissions_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/permissions/_logged_out_permissions_page.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/permissions/_owner_permissions_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/permissions/_owner_permissions_page.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/permissions/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/permissions/index.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/search/results.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/search/results.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/sessions/logout.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/sessions/logout.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarm_import/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarm_import/new.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/_close_swarm_modal.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/_close_swarm_modal.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/_embed_closed.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/_embed_closed.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/_embed_live.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/_embed_live.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/_field_code_update_js.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/_field_code_update_js.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/_open_swarm_modal.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/_open_swarm_modal.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/_swarm_description_open_close.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/_swarm_description_open_close.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/_swarm_description_open_close_logged_in.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/_swarm_description_open_close_logged_in.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/_swarm_dropdown_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/_swarm_dropdown_menu.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/_swarm_graphs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/_swarm_graphs.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/_swarm_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/_swarm_header.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/_swarm_page_js.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/_swarm_page_js.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/_swarm_results.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/_swarm_results.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/_swarm_table.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/_swarm_table.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/closed.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/closed.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/code.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/code.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/delete.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/delete.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/draft.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/draft.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/edit.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/embed.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/embed.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/fields.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/fields.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/index.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/live.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/live.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/new.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/preview.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/preview.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/swarms/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/swarms/show.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/users/_user_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/users/_user_header.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/users/closed.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/users/closed.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/users/delete.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/users/delete.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/users/draft.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/users/draft.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/users/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/users/index.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/users/live.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/users/live.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/app/views/users/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/app/views/users/show.html.haml -------------------------------------------------------------------------------- /swarmize-dot-com/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/bin/bundle -------------------------------------------------------------------------------- /swarmize-dot-com/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/bin/rails -------------------------------------------------------------------------------- /swarmize-dot-com/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/bin/rake -------------------------------------------------------------------------------- /swarmize-dot-com/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config.ru -------------------------------------------------------------------------------- /swarmize-dot-com/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/application.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/boot.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/database.yml -------------------------------------------------------------------------------- /swarmize-dot-com/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/environment.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/environments/development.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/environments/production.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/environments/test.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/initializers/amazon_ses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/initializers/amazon_ses.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/initializers/aws.rb: -------------------------------------------------------------------------------- 1 | AWS.config(region: 'eu-west-1') 2 | -------------------------------------------------------------------------------- /swarmize-dot-com/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/initializers/inflections.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/initializers/non_digest_assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/initializers/non_digest_assets.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/initializers/session_store.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/initializers/will_paginate.rb: -------------------------------------------------------------------------------- 1 | WillPaginate.per_page = 10 2 | -------------------------------------------------------------------------------- /swarmize-dot-com/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /swarmize-dot-com/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/locales/en.yml -------------------------------------------------------------------------------- /swarmize-dot-com/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/config/routes.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140712134916_create_swarms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140712134916_create_swarms.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140716162431_add_fields_to_swarm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140716162431_add_fields_to_swarm.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140722135555_add_open_close_to_swarm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140722135555_add_open_close_to_swarm.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140729093242_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140729093242_create_users.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140729123430_add_user_id_to_swarms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140729123430_add_user_id_to_swarms.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140729133308_add_parent_swarm_id_to_swarms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140729133308_add_parent_swarm_id_to_swarms.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140801101148_add_is_fake_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140801101148_add_is_fake_to_users.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140801134513_add_spiked_field_to_swarms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140801134513_add_spiked_field_to_swarms.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140812130235_add_tokens_to_swarms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140812130235_add_tokens_to_swarms.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140814134610_create_graph_configurations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140814134610_create_graph_configurations.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140814135824_rename_graph_configurations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140814135824_rename_graph_configurations.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140814173018_create_swarm_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140814173018_create_swarm_fields.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140815095709_remove_serialized_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140815095709_remove_serialized_fields.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140826092139_create_access_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140826092139_create_access_permissions.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140827092647_add_owner_field_to_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140827092647_add_owner_field_to_permissions.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140827103714_add_creators_to_access_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140827103714_add_creators_to_access_permissions.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140827162410_remove_creator_field_from_swarm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140827162410_remove_creator_field_from_swarm.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140828114635_add_is_admin_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140828114635_add_is_admin_to_users.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20140912101553_add_deleted_at_to_swarms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20140912101553_add_deleted_at_to_swarms.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20141010094402_remove_viz_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20141010094402_remove_viz_type.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20141017093840_add_other_to_swarmfield.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20141017093840_add_other_to_swarmfield.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20141017131200_add_toggles_to_swarm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20141017131200_add_toggles_to_swarm.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20141017150238_change_other_to_allow_other.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20141017150238_change_other_to_allow_other.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20141021114539_change_desscription_to_text_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20141021114539_change_desscription_to_text_field.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/migrate/20141204145601_allow_pick_one_to_be_select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/migrate/20141204145601_allow_pick_one_to_be_select.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/schema.rb -------------------------------------------------------------------------------- /swarmize-dot-com/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/db/seeds.rb -------------------------------------------------------------------------------- /swarmize-dot-com/deploy-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/deploy-sample.json -------------------------------------------------------------------------------- /swarmize-dot-com/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/deploy.rb -------------------------------------------------------------------------------- /swarmize-dot-com/eb_name.txt: -------------------------------------------------------------------------------- 1 | Swarmize 2 | -------------------------------------------------------------------------------- /swarmize-dot-com/field_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/field_types.json -------------------------------------------------------------------------------- /swarmize-dot-com/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swarmize-dot-com/lib/dummy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/lib/dummy.rb -------------------------------------------------------------------------------- /swarmize-dot-com/lib/dynamo_sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/lib/dynamo_sync.rb -------------------------------------------------------------------------------- /swarmize-dot-com/lib/email_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/lib/email_validator.rb -------------------------------------------------------------------------------- /swarmize-dot-com/lib/json_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/lib/json_importer.rb -------------------------------------------------------------------------------- /swarmize-dot-com/lib/swarm_csv_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/lib/swarm_csv_tool.rb -------------------------------------------------------------------------------- /swarmize-dot-com/lib/swarmize_oembed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/lib/swarmize_oembed.rb -------------------------------------------------------------------------------- /swarmize-dot-com/lib/swarmize_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/lib/swarmize_search.rb -------------------------------------------------------------------------------- /swarmize-dot-com/lib/swarmize_search/queries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/lib/swarmize_search/queries.rb -------------------------------------------------------------------------------- /swarmize-dot-com/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swarmize-dot-com/lib/tasks/swarmize.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/lib/tasks/swarmize.rake -------------------------------------------------------------------------------- /swarmize-dot-com/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swarmize-dot-com/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/package.sh -------------------------------------------------------------------------------- /swarmize-dot-com/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/404.html -------------------------------------------------------------------------------- /swarmize-dot-com/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/422.html -------------------------------------------------------------------------------- /swarmize-dot-com/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/500.html -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/broadband_survey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/broadband_survey.md -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/broadband_survey/add-fields.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/broadband_survey/add-fields.gif -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/broadband_survey/clone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/broadband_survey/clone.gif -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/broadband_survey/create.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/broadband_survey/create.gif -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/broadband_survey/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/broadband_survey/csv.png -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/broadband_survey/embed-code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/broadband_survey/embed-code.gif -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/broadband_survey/graphs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/broadband_survey/graphs.gif -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/broadband_survey/login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/broadband_survey/login.gif -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/broadband_survey/move-delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/broadband_survey/move-delete.gif -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/broadband_survey/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/broadband_survey/open.gif -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/broadband_survey/permissions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/broadband_survey/permissions.gif -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/broadband_survey/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/broadband_survey/preview.png -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/broadband_survey/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/broadband_survey/table.png -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/broadband_survey/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/broadband_survey/thumb.png -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/broadband_survey/view-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/broadband_survey/view-form.png -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/indyref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/indyref.md -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/indyref/indyref-graph1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/indyref/indyref-graph1.png -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/indyref/indyref-graph2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/indyref/indyref-graph2.png -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/indyref/indyref-graph3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/indyref/indyref-graph3.png -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/indyref/indyref1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/indyref/indyref1.gif -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/indyref/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/indyref/thumb.png -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/realtime_clicker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/realtime_clicker.md -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/realtime_clicker/aggregate-field.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/realtime_clicker/aggregate-field.gif -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/realtime_clicker/api-keys.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/realtime_clicker/api-keys.gif -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/realtime_clicker/get-code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/realtime_clicker/get-code.gif -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/realtime_clicker/map-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/realtime_clicker/map-demo.png -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/realtime_clicker/preview-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/realtime_clicker/preview-form.png -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/realtime_clicker/results-over-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/realtime_clicker/results-over-time.png -------------------------------------------------------------------------------- /swarmize-dot-com/public/case_studies/realtime_clicker/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/case_studies/realtime_clicker/thumb.jpg -------------------------------------------------------------------------------- /swarmize-dot-com/public/documentation/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/documentation/api.md -------------------------------------------------------------------------------- /swarmize-dot-com/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swarmize-dot-com/public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /swarmize-dot-com/public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /swarmize-dot-com/public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /swarmize-dot-com/public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /swarmize-dot-com/public/js/swarmize-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/js/swarmize-embed.js -------------------------------------------------------------------------------- /swarmize-dot-com/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/public/robots.txt -------------------------------------------------------------------------------- /swarmize-dot-com/spec/controllers/admin_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/controllers/admin_controller_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/controllers/api_tokens_controller_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | -------------------------------------------------------------------------------- /swarmize-dot-com/spec/controllers/case_studies_controller_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swarmize-dot-com/spec/controllers/csv_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/controllers/csv_controller_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/controllers/graphs_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/controllers/graphs_controller_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/controllers/home_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/controllers/home_controller_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/controllers/oembed_controller_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swarmize-dot-com/spec/controllers/permissions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/controllers/permissions_controller_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/controllers/search_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/controllers/search_controller_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/controllers/sessions_controller_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe SessionsController do 4 | 5 | end 6 | -------------------------------------------------------------------------------- /swarmize-dot-com/spec/controllers/shared_examples_for_controllers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/controllers/shared_examples_for_controllers.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/controllers/swarm_import_controller_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe SwarmImportController do 4 | 5 | end 6 | -------------------------------------------------------------------------------- /swarmize-dot-com/spec/controllers/swarms_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/controllers/swarms_controller_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/controllers/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/controllers/users_controller_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/controllers/utils_controller_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe UtilsController do 4 | 5 | end 6 | -------------------------------------------------------------------------------- /swarmize-dot-com/spec/factories/access_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/factories/access_permissions.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/factories/graphs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/factories/graphs.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/factories/swarm_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/factories/swarm_fields.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/factories/swarms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/factories/swarms.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/factories/users.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/helpers/admin_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/helpers/admin_helper_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/helpers/graphs_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/helpers/graphs_helper_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/helpers/home_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/helpers/home_helper_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/helpers/permissions_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/helpers/permissions_helper_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/helpers/search_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/helpers/search_helper_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/helpers/sessions_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/helpers/sessions_helper_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/helpers/swarms_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/helpers/swarms_helper_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/helpers/users_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/helpers/users_helper_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/lib/json_importer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/lib/json_importer_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/lib/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/lib/sample.json -------------------------------------------------------------------------------- /swarmize-dot-com/spec/lib/sample_field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/lib/sample_field.json -------------------------------------------------------------------------------- /swarmize-dot-com/spec/lib/sample_field_possible_values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/lib/sample_field_possible_values.json -------------------------------------------------------------------------------- /swarmize-dot-com/spec/mailers/permission_mailer_spec.rb: -------------------------------------------------------------------------------- 1 | require "spec_helper" 2 | 3 | describe PermissionMailer do 4 | end 5 | -------------------------------------------------------------------------------- /swarmize-dot-com/spec/models/access_permission_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/models/access_permission_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/models/email_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/models/email_validator_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/models/graph_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe Graph do 4 | end 5 | -------------------------------------------------------------------------------- /swarmize-dot-com/spec/models/swarm_field_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/models/swarm_field_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/models/swarm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/models/swarm_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/models/user_spec.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/spec_helper.rb -------------------------------------------------------------------------------- /swarmize-dot-com/spec/support/factory_girl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/swarmize/HEAD/swarmize-dot-com/spec/support/factory_girl.rb -------------------------------------------------------------------------------- /swarmize-dot-com/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swarmize-dot-com/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------