├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ └── documentation_editor │ │ │ └── .keep │ ├── javascripts │ │ └── documentation_editor │ │ │ ├── application.js │ │ │ └── pages.js │ └── stylesheets │ │ └── documentation_editor │ │ ├── application.css │ │ └── pages.css.sass ├── controllers │ └── documentation_editor │ │ ├── application_controller.rb │ │ └── pages_controller.rb ├── helpers │ └── documentation_editor │ │ ├── application_helper.rb │ │ └── pages_helper.rb ├── models │ └── documentation_editor │ │ ├── image.rb │ │ ├── page.rb │ │ └── revision.rb └── views │ └── documentation_editor │ └── pages │ ├── _menu_items.html.haml │ ├── edit.html.haml │ ├── history.html.haml │ ├── index.html.haml │ └── preview.html.haml ├── bin └── rails ├── config └── routes.rb ├── db └── migrate │ ├── 20150722230424_create_documentation_editor_pages.rb │ ├── 20150725063642_create_documentation_editor_images.rb │ ├── 20150728040718_create_documentation_editor_revisions.rb │ ├── 20150818102838_add_title_to_pages.rb │ ├── 20150903121913_add_thumbnail_id_to_pages.rb │ ├── 20160202155254_add_languages_to_pages.rb │ ├── 20160202155259_add_description_to_pages.rb │ ├── 20160202164212_add_section_to_pages.rb │ └── 20160204105307_add_position_to_pages.rb ├── doc ├── editor.png ├── final.png ├── history.png ├── preview.png └── snippet-star.png ├── documentation-editor.gemspec ├── lib ├── documentation-editor.rb ├── documentation_editor.rb ├── documentation_editor │ ├── configuration.rb │ ├── engine.rb │ ├── parser.rb │ └── version.rb └── tasks │ └── documentation_editor_tasks.rake └── test ├── controllers └── documentation_editor │ └── pages_controller_test.rb ├── documentation_editor_test.rb ├── dummy ├── .gitignore ├── README.md ├── Rakefile ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── application.js │ │ │ └── ng-file-upload.min.js │ │ └── stylesheets │ │ │ ├── application.css │ │ │ └── highlight.css │ ├── controllers │ │ ├── application_controller.rb │ │ └── concerns │ │ │ └── .keep │ ├── helpers │ │ ├── admin_helper.rb │ │ └── application_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ └── concerns │ │ │ └── .keep │ └── views │ │ └── layouts │ │ └── application.html.erb ├── bin │ ├── bundle │ ├── rails │ ├── rake │ └── setup ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── documentation_editor.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── routes.rb │ └── secrets.yml ├── db │ └── schema.rb ├── lib │ └── assets │ │ └── .keep ├── log │ └── .keep └── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ └── favicon.ico ├── factories.rb ├── integration └── navigation_test.rb ├── models └── documentation_editor │ ├── image_test.rb │ ├── page_test.rb │ └── revision_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/documentation_editor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/documentation_editor/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/assets/javascripts/documentation_editor/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/documentation_editor/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/assets/javascripts/documentation_editor/pages.js -------------------------------------------------------------------------------- /app/assets/stylesheets/documentation_editor/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/assets/stylesheets/documentation_editor/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/documentation_editor/pages.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/assets/stylesheets/documentation_editor/pages.css.sass -------------------------------------------------------------------------------- /app/controllers/documentation_editor/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/controllers/documentation_editor/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/documentation_editor/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/controllers/documentation_editor/pages_controller.rb -------------------------------------------------------------------------------- /app/helpers/documentation_editor/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/helpers/documentation_editor/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/documentation_editor/pages_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/helpers/documentation_editor/pages_helper.rb -------------------------------------------------------------------------------- /app/models/documentation_editor/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/models/documentation_editor/image.rb -------------------------------------------------------------------------------- /app/models/documentation_editor/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/models/documentation_editor/page.rb -------------------------------------------------------------------------------- /app/models/documentation_editor/revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/models/documentation_editor/revision.rb -------------------------------------------------------------------------------- /app/views/documentation_editor/pages/_menu_items.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/views/documentation_editor/pages/_menu_items.html.haml -------------------------------------------------------------------------------- /app/views/documentation_editor/pages/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/views/documentation_editor/pages/edit.html.haml -------------------------------------------------------------------------------- /app/views/documentation_editor/pages/history.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/views/documentation_editor/pages/history.html.haml -------------------------------------------------------------------------------- /app/views/documentation_editor/pages/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/views/documentation_editor/pages/index.html.haml -------------------------------------------------------------------------------- /app/views/documentation_editor/pages/preview.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/app/views/documentation_editor/pages/preview.html.haml -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/bin/rails -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20150722230424_create_documentation_editor_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/db/migrate/20150722230424_create_documentation_editor_pages.rb -------------------------------------------------------------------------------- /db/migrate/20150725063642_create_documentation_editor_images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/db/migrate/20150725063642_create_documentation_editor_images.rb -------------------------------------------------------------------------------- /db/migrate/20150728040718_create_documentation_editor_revisions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/db/migrate/20150728040718_create_documentation_editor_revisions.rb -------------------------------------------------------------------------------- /db/migrate/20150818102838_add_title_to_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/db/migrate/20150818102838_add_title_to_pages.rb -------------------------------------------------------------------------------- /db/migrate/20150903121913_add_thumbnail_id_to_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/db/migrate/20150903121913_add_thumbnail_id_to_pages.rb -------------------------------------------------------------------------------- /db/migrate/20160202155254_add_languages_to_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/db/migrate/20160202155254_add_languages_to_pages.rb -------------------------------------------------------------------------------- /db/migrate/20160202155259_add_description_to_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/db/migrate/20160202155259_add_description_to_pages.rb -------------------------------------------------------------------------------- /db/migrate/20160202164212_add_section_to_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/db/migrate/20160202164212_add_section_to_pages.rb -------------------------------------------------------------------------------- /db/migrate/20160204105307_add_position_to_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/db/migrate/20160204105307_add_position_to_pages.rb -------------------------------------------------------------------------------- /doc/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/doc/editor.png -------------------------------------------------------------------------------- /doc/final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/doc/final.png -------------------------------------------------------------------------------- /doc/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/doc/history.png -------------------------------------------------------------------------------- /doc/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/doc/preview.png -------------------------------------------------------------------------------- /doc/snippet-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/doc/snippet-star.png -------------------------------------------------------------------------------- /documentation-editor.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/documentation-editor.gemspec -------------------------------------------------------------------------------- /lib/documentation-editor.rb: -------------------------------------------------------------------------------- 1 | require 'documentation_editor' 2 | -------------------------------------------------------------------------------- /lib/documentation_editor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/lib/documentation_editor.rb -------------------------------------------------------------------------------- /lib/documentation_editor/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/lib/documentation_editor/configuration.rb -------------------------------------------------------------------------------- /lib/documentation_editor/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/lib/documentation_editor/engine.rb -------------------------------------------------------------------------------- /lib/documentation_editor/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/lib/documentation_editor/parser.rb -------------------------------------------------------------------------------- /lib/documentation_editor/version.rb: -------------------------------------------------------------------------------- 1 | module DocumentationEditor 2 | VERSION = "0.13.0" 3 | end 4 | -------------------------------------------------------------------------------- /lib/tasks/documentation_editor_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/lib/tasks/documentation_editor_tasks.rake -------------------------------------------------------------------------------- /test/controllers/documentation_editor/pages_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/controllers/documentation_editor/pages_controller_test.rb -------------------------------------------------------------------------------- /test/documentation_editor_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/documentation_editor_test.rb -------------------------------------------------------------------------------- /test/dummy/.gitignore: -------------------------------------------------------------------------------- 1 | public/system/ 2 | -------------------------------------------------------------------------------- /test/dummy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/README.md -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/ng-file-upload.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/app/assets/javascripts/ng-file-upload.min.js -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/app/assets/stylesheets/highlight.css -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/admin_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/app/helpers/admin_helper.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/dummy/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/bin/bundle -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/bin/rails -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/bin/rake -------------------------------------------------------------------------------- /test/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/bin/setup -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/initializers/assets.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/documentation_editor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/initializers/documentation_editor.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/initializers/session_store.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/config/secrets.yml -------------------------------------------------------------------------------- /test/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/db/schema.rb -------------------------------------------------------------------------------- /test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/public/404.html -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/public/422.html -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/dummy/public/500.html -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/factories.rb -------------------------------------------------------------------------------- /test/integration/navigation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/integration/navigation_test.rb -------------------------------------------------------------------------------- /test/models/documentation_editor/image_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/models/documentation_editor/image_test.rb -------------------------------------------------------------------------------- /test/models/documentation_editor/page_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/models/documentation_editor/page_test.rb -------------------------------------------------------------------------------- /test/models/documentation_editor/revision_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/models/documentation_editor/revision_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/documentation-editor/HEAD/test/test_helper.rb --------------------------------------------------------------------------------