locomotivecms_steam 0.1.2.pre.beta → 1.0.0.pre.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -0
- data/.travis.yml +8 -1
- data/Gemfile +17 -8
- data/Gemfile.lock +160 -113
- data/LICENSE +1 -1
- data/README.md +36 -15
- data/Rakefile +27 -1
- data/bin/steam.rb +97 -0
- data/config/locales/en.yml +2 -1
- data/config/locales/fr.yml +2 -1
- data/lib/locomotive/steam.rb +28 -19
- data/lib/locomotive/steam/adapters/concerns/key.rb +15 -0
- data/lib/locomotive/steam/adapters/filesystem.rb +124 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizer.rb +54 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/content_entry.rb +86 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/content_type.rb +21 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/page.rb +160 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/simple.rb +15 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/snippet.rb +33 -0
- data/lib/locomotive/steam/adapters/filesystem/simple_cache_store.rb +38 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loader.rb +47 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/content_entry.rb +87 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/content_type.rb +96 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/page.rb +145 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/site.rb +25 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/snippet.rb +66 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/theme_asset.rb +21 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/translation.rb +72 -0
- data/lib/locomotive/steam/adapters/memory.rb +55 -0
- data/lib/locomotive/steam/adapters/memory/condition.rb +103 -0
- data/lib/locomotive/steam/adapters/memory/dataset.rb +77 -0
- data/lib/locomotive/steam/adapters/memory/order.rb +60 -0
- data/lib/locomotive/steam/adapters/memory/query.rb +116 -0
- data/lib/locomotive/steam/adapters/mongodb.rb +83 -0
- data/lib/locomotive/steam/adapters/mongodb/dataset.rb +20 -0
- data/lib/locomotive/steam/adapters/mongodb/origin.rb +3 -0
- data/lib/locomotive/steam/adapters/mongodb/query.rb +82 -0
- data/lib/locomotive/steam/configuration.rb +106 -2
- data/lib/locomotive/steam/core_ext.rb +2 -1
- data/lib/locomotive/steam/core_ext/hash.rb +31 -19
- data/lib/locomotive/steam/core_ext/kernel.rb +14 -0
- data/lib/locomotive/steam/core_ext/string.rb +35 -6
- data/lib/locomotive/steam/decorators/i18n_decorator.rb +99 -0
- data/lib/locomotive/steam/decorators/template_decorator.rb +37 -0
- data/lib/locomotive/steam/entities/content_entry.rb +151 -0
- data/lib/locomotive/steam/entities/content_type.rb +44 -6
- data/lib/locomotive/steam/entities/content_type_field.rb +71 -0
- data/lib/locomotive/steam/entities/editable_element.rb +21 -0
- data/lib/locomotive/steam/entities/page.rb +48 -127
- data/lib/locomotive/steam/entities/site.rb +36 -27
- data/lib/locomotive/steam/entities/snippet.rb +20 -0
- data/lib/locomotive/steam/entities/theme_asset.rb +9 -0
- data/lib/locomotive/steam/entities/translation.rb +15 -0
- data/lib/locomotive/steam/initializers.rb +0 -4
- data/lib/locomotive/steam/initializers/dragonfly.rb +51 -11
- data/lib/locomotive/steam/initializers/i18n.rb +6 -3
- data/lib/locomotive/steam/initializers/sprockets.rb +4 -1
- data/lib/locomotive/steam/liquid.rb +4 -7
- data/lib/locomotive/steam/liquid/drops/base.rb +0 -1
- data/lib/locomotive/steam/liquid/drops/content_entry.rb +37 -16
- data/lib/locomotive/steam/liquid/drops/content_entry_collection.rb +77 -0
- data/lib/locomotive/steam/liquid/drops/content_types.rb +5 -102
- data/lib/locomotive/steam/liquid/drops/current_user.rb +23 -0
- data/lib/locomotive/steam/liquid/drops/i18n_base.rb +39 -0
- data/lib/locomotive/steam/liquid/drops/page.rb +77 -11
- data/lib/locomotive/steam/liquid/drops/session_proxy.rb +1 -1
- data/lib/locomotive/steam/liquid/drops/site.rb +14 -8
- data/lib/locomotive/steam/liquid/drops/upload_file.rb +23 -0
- data/lib/locomotive/steam/liquid/errors.rb +3 -9
- data/lib/locomotive/steam/liquid/filters/base.rb +62 -0
- data/lib/locomotive/steam/liquid/filters/date.rb +85 -61
- data/lib/locomotive/steam/liquid/filters/html.rb +30 -115
- data/lib/locomotive/steam/liquid/filters/misc.rb +6 -5
- data/lib/locomotive/steam/liquid/filters/pagination.rb +55 -0
- data/lib/locomotive/steam/liquid/filters/resize.rb +2 -3
- data/lib/locomotive/steam/liquid/filters/text.rb +15 -15
- data/lib/locomotive/steam/liquid/filters/translate.rb +5 -14
- data/lib/locomotive/steam/liquid/patches.rb +29 -23
- data/lib/locomotive/steam/liquid/tags/concerns/i18n_page.rb +36 -0
- data/lib/locomotive/steam/liquid/tags/concerns/path.rb +114 -0
- data/lib/locomotive/steam/liquid/tags/consume.rb +39 -43
- data/lib/locomotive/steam/liquid/tags/csrf.rb +21 -12
- data/lib/locomotive/steam/liquid/tags/editable.rb +1 -3
- data/lib/locomotive/steam/liquid/tags/editable/base.rb +54 -15
- data/lib/locomotive/steam/liquid/tags/editable/control.rb +17 -4
- data/lib/locomotive/steam/liquid/tags/editable/file.rb +34 -2
- data/lib/locomotive/steam/liquid/tags/editable/text.rb +54 -2
- data/lib/locomotive/steam/liquid/tags/extends.rb +45 -8
- data/lib/locomotive/steam/liquid/tags/fetch_page.rb +38 -0
- data/lib/locomotive/steam/liquid/tags/google_analytics.rb +25 -12
- data/lib/locomotive/steam/liquid/tags/hybrid.rb +24 -12
- data/lib/locomotive/steam/liquid/tags/inherited_block.rb +39 -0
- data/lib/locomotive/steam/liquid/tags/inline_editor.rb +14 -4
- data/lib/locomotive/steam/liquid/tags/link_to.rb +16 -27
- data/lib/locomotive/steam/liquid/tags/locale_switcher.rb +45 -56
- data/lib/locomotive/steam/liquid/tags/model_form.rb +72 -0
- data/lib/locomotive/steam/liquid/tags/nav.rb +65 -57
- data/lib/locomotive/steam/liquid/tags/paginate.rb +79 -47
- data/lib/locomotive/steam/liquid/tags/path_to.rb +8 -20
- data/lib/locomotive/steam/liquid/tags/seo.rb +8 -8
- data/lib/locomotive/steam/liquid/tags/session_assign.rb +6 -8
- data/lib/locomotive/steam/liquid/tags/snippet.rb +26 -42
- data/lib/locomotive/steam/liquid/tags/with_scope.rb +44 -26
- data/lib/locomotive/steam/middlewares.rb +7 -13
- data/lib/locomotive/steam/middlewares/default_env.rb +25 -0
- data/lib/locomotive/steam/middlewares/dynamic_assets.rb +34 -17
- data/lib/locomotive/steam/middlewares/entry_submission.rb +117 -79
- data/lib/locomotive/steam/middlewares/favicon.rb +5 -2
- data/lib/locomotive/steam/middlewares/helpers.rb +44 -0
- data/lib/locomotive/steam/middlewares/locale.rb +25 -17
- data/lib/locomotive/steam/middlewares/locale_redirection.rb +62 -0
- data/lib/locomotive/steam/middlewares/logging.rb +7 -3
- data/lib/locomotive/steam/middlewares/page.rb +17 -48
- data/lib/locomotive/steam/middlewares/path.rb +5 -8
- data/lib/locomotive/steam/middlewares/renderer.rb +65 -106
- data/lib/locomotive/steam/middlewares/robots.rb +20 -0
- data/lib/locomotive/steam/middlewares/site.rb +42 -0
- data/lib/locomotive/steam/middlewares/sitemap.rb +94 -0
- data/lib/locomotive/steam/middlewares/stack_proxy.rb +46 -0
- data/lib/locomotive/steam/middlewares/templatized_page.rb +40 -14
- data/lib/locomotive/steam/middlewares/threadsafe.rb +65 -0
- data/lib/locomotive/steam/middlewares/timezone.rb +10 -6
- data/lib/locomotive/steam/models.rb +12 -0
- data/lib/locomotive/steam/models/associations/belongs_to.rb +18 -0
- data/lib/locomotive/steam/models/associations/embedded.rb +43 -0
- data/lib/locomotive/steam/models/associations/has_many.rb +22 -0
- data/lib/locomotive/steam/models/associations/many_to_many.rb +22 -0
- data/lib/locomotive/steam/models/associations/referenced.rb +48 -0
- data/lib/locomotive/steam/models/concerns/validation.rb +58 -0
- data/lib/locomotive/steam/models/entity.rb +40 -0
- data/lib/locomotive/steam/models/i18n_field.rb +42 -0
- data/lib/locomotive/steam/models/mapper.rb +119 -0
- data/lib/locomotive/steam/models/pager.rb +53 -0
- data/lib/locomotive/steam/models/repository.rb +101 -0
- data/lib/locomotive/steam/models/scope.rb +31 -0
- data/lib/locomotive/steam/repositories.rb +51 -0
- data/lib/locomotive/steam/repositories/content_entry_repository.rb +183 -0
- data/lib/locomotive/steam/repositories/content_type_field_repository.rb +50 -0
- data/lib/locomotive/steam/repositories/content_type_field_select_option_repository.rb +23 -0
- data/lib/locomotive/steam/repositories/content_type_repository.rb +38 -0
- data/lib/locomotive/steam/repositories/editable_element_repository.rb +20 -0
- data/lib/locomotive/steam/repositories/page_repository.rb +86 -0
- data/lib/locomotive/steam/repositories/site_repository.rb +29 -0
- data/lib/locomotive/steam/repositories/snippet_repository.rb +19 -0
- data/lib/locomotive/steam/repositories/theme_asset_repository.rb +24 -0
- data/lib/locomotive/steam/repositories/translation_repository.rb +17 -0
- data/lib/locomotive/steam/server.rb +61 -40
- data/lib/locomotive/steam/services.rb +120 -1
- data/lib/locomotive/steam/services/asset_host_service.rb +51 -0
- data/lib/locomotive/steam/services/concerns/decorator.rb +35 -0
- data/lib/locomotive/steam/services/csrf_protection_service.rb +13 -0
- data/lib/locomotive/steam/services/editable_element_service.rb +19 -0
- data/lib/locomotive/steam/services/entry_submission_service.rb +91 -0
- data/lib/locomotive/steam/services/external_api_service.rb +55 -0
- data/lib/locomotive/steam/services/image_resizer_service.rb +49 -0
- data/lib/locomotive/steam/services/liquid_parser_service.rb +23 -0
- data/lib/locomotive/steam/services/markdown_service.rb +17 -0
- data/lib/locomotive/steam/services/no_cache_service.rb +17 -0
- data/lib/locomotive/steam/services/page_finder_service.rb +44 -0
- data/lib/locomotive/steam/services/parent_finder_service.rb +23 -0
- data/lib/locomotive/steam/services/site_finder_service.rb +13 -0
- data/lib/locomotive/steam/services/snippet_finder_service.rb +17 -0
- data/lib/locomotive/steam/services/textile_service.rb +17 -0
- data/lib/locomotive/steam/services/theme_asset_url_service.rb +43 -0
- data/lib/locomotive/steam/services/translator_service.rb +34 -0
- data/lib/locomotive/steam/services/url_builder_service.rb +40 -0
- data/lib/locomotive/steam/version.rb +1 -1
- data/locomotivecms_steam.gemspec +34 -28
- data/script/ci/before_build.sh +4 -0
- data/spec/fixtures/default/app/content_types/bands.yml +3 -1
- data/spec/fixtures/default/app/content_types/events.yml +2 -2
- data/spec/fixtures/default/app/views/pages/about_us.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/pages/archives.liquid.haml +6 -0
- data/spec/fixtures/default/app/views/pages/basic.liquid.haml +1 -0
- data/spec/fixtures/default/app/views/pages/contest.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/pages/events.fr.liquid +4 -0
- data/spec/fixtures/default/app/views/pages/events.liquid.haml +23 -1
- data/spec/fixtures/default/app/views/pages/filtered.liquid.haml +16 -5
- data/spec/fixtures/default/app/views/pages/grunge_bands.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/pages/index.liquid.haml +12 -11
- data/spec/fixtures/default/app/views/pages/music.liquid.haml +1 -1
- data/spec/fixtures/default/app/views/pages/songs.liquid +6 -0
- data/spec/fixtures/default/app/views/pages/songs/song-number-1.liquid.haml +5 -0
- data/spec/fixtures/default/app/views/pages/store.liquid +2 -1
- data/spec/fixtures/default/app/views/pages/tags.liquid +6 -0
- data/spec/fixtures/default/app/views/pages/unlisted_pages.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/snippets/song.fr.liquid.haml +1 -1
- data/spec/fixtures/default/config/deploy.yml +2 -2
- data/spec/fixtures/default/config/site.yml +7 -1
- data/spec/fixtures/default/data/bands.yml +3 -0
- data/spec/fixtures/mongodb/locomotive_accounts.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_accounts.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_content_assets.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_content_assets.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_content_entries.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_content_entries.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_content_types.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_content_types.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_pages.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_pages.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_sites.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_sites.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_snippets.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_snippets.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_theme_assets.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_theme_assets.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_translations.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_translations.metadata.json +1 -0
- data/spec/fixtures/mongodb/sessions.bson +0 -0
- data/spec/fixtures/mongodb/sessions.metadata.json +1 -0
- data/spec/fixtures/mongodb/system.indexes.bson +0 -0
- data/spec/integration/integration_helper.rb +2 -2
- data/spec/integration/liquid/tags/paginate_spec.rb +79 -0
- data/spec/integration/repositories/content_entry_repository_spec.rb +94 -0
- data/spec/integration/repositories/content_type_repository_spec.rb +69 -0
- data/spec/integration/repositories/page_repository_spec.rb +105 -0
- data/spec/integration/repositories/site_repository_spec.rb +45 -0
- data/spec/integration/repositories/snippet_repository_spec.rb +50 -0
- data/spec/integration/repositories/theme_asset_repository_spec.rb +48 -0
- data/spec/integration/repositories/translation_repository_spec.rb +50 -0
- data/spec/integration/server/assets_spec.rb +60 -0
- data/spec/integration/server/basic_spec.rb +100 -100
- data/spec/integration/server/contact_form_spec.rb +96 -25
- data/spec/integration/server/liquid_spec.rb +19 -41
- data/spec/integration/server/nav_spec.rb +49 -0
- data/spec/integration/server/session_spec.rb +33 -0
- data/spec/integration/server/sitemap_spec.rb +34 -0
- data/spec/integration/server/with_scope_spec.rb +28 -2
- data/spec/integration/services/external_api_service_spec.rb +20 -0
- data/spec/locales/locales_spec.rb +7 -7
- data/spec/spec_helper.rb +27 -13
- data/spec/support.rb +5 -1
- data/spec/support/cache_store.rb +3 -0
- data/spec/support/helpers.rb +20 -23
- data/spec/support/liquid.rb +29 -0
- data/spec/support/pry.rb +4 -0
- data/spec/support/time.rb +3 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/content_entry_spec.rb +50 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/content_type_spec.rb +25 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/page_spec.rb +25 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/site_spec.rb +19 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/snippet_spec.rb +26 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/translation_spec.rb +25 -0
- data/spec/unit/adapters/filesystem_adapter_spec.rb +53 -0
- data/spec/unit/adapters/memory/condition_spec.rb +125 -0
- data/spec/unit/adapters/memory/dataset_spec.rb +73 -0
- data/spec/unit/adapters/memory/order_spec.rb +67 -0
- data/spec/unit/adapters/memory/query_spec.rb +85 -0
- data/spec/unit/adapters/memory_adapter_spec.rb +36 -0
- data/spec/unit/adapters/mongodb/query_spec.rb +68 -0
- data/spec/unit/adapters/mongodb_adapter_spec.rb +17 -0
- data/spec/unit/configuration_spec.rb +29 -0
- data/spec/unit/core_ext/string_spec.rb +44 -0
- data/spec/unit/decorators/i18n_decorator_spec.rb +80 -0
- data/spec/unit/entities/content_entry_spec.rb +159 -0
- data/spec/unit/entities/content_type_field_spec.rb +67 -0
- data/spec/unit/entities/content_type_spec.rb +59 -0
- data/spec/unit/entities/page_spec.rb +40 -34
- data/spec/unit/entities/site_spec.rb +56 -5
- data/spec/unit/initializers/dragonfly_spec.rb +31 -0
- data/spec/unit/liquid/drops/content_entry_collection_spec.rb +81 -0
- data/spec/unit/liquid/drops/content_entry_spec.rb +99 -0
- data/spec/unit/liquid/drops/content_types_spec.rb +25 -0
- data/spec/unit/liquid/drops/current_user_spec.rb +45 -0
- data/spec/unit/liquid/drops/page_spec.rb +134 -0
- data/spec/unit/liquid/drops/session_proxy_spec.rb +13 -0
- data/spec/unit/liquid/drops/site_spec.rb +49 -0
- data/spec/unit/liquid/filters/date_spec.rb +160 -0
- data/spec/unit/liquid/filters/html_spec.rb +263 -0
- data/spec/unit/liquid/filters/misc_spec.rb +108 -0
- data/spec/unit/liquid/filters/pagination_spec.rb +42 -0
- data/spec/unit/liquid/filters/resize_spec.rb +36 -0
- data/spec/unit/liquid/filters/text_spec.rb +56 -0
- data/spec/unit/liquid/filters/translate_spec.rb +33 -0
- data/spec/unit/liquid/patches_spec.rb +50 -0
- data/spec/unit/liquid/tags/consume_spec.rb +87 -0
- data/spec/unit/liquid/tags/csrf_spec.rb +47 -0
- data/spec/unit/liquid/tags/editable/control_spec.rb +109 -0
- data/spec/unit/liquid/tags/editable/file_spec.rb +116 -0
- data/spec/unit/liquid/tags/editable/text_spec.rb +139 -0
- data/spec/unit/liquid/tags/extends_spec.rb +38 -0
- data/spec/unit/liquid/tags/fetch_page_spec.rb +39 -0
- data/spec/unit/liquid/tags/google_analytics_spec.rb +16 -0
- data/spec/unit/liquid/tags/inherited_block_spec.rb +33 -0
- data/spec/unit/liquid/tags/link_to_spec.rb +112 -0
- data/spec/unit/liquid/tags/locale_switcher_spec.rb +58 -0
- data/spec/unit/liquid/tags/model_form_spec.rb +35 -0
- data/spec/unit/liquid/tags/nav_spec.rb +184 -111
- data/spec/unit/liquid/tags/paginate_spec.rb +131 -0
- data/spec/unit/liquid/tags/path_to_spec.rb +100 -0
- data/spec/unit/liquid/tags/seo_spec.rb +85 -0
- data/spec/unit/liquid/tags/session_assign_spec.rb +51 -0
- data/spec/unit/liquid/tags/snippet_spec.rb +42 -0
- data/spec/unit/liquid/tags/with_scope_spec.rb +66 -0
- data/spec/unit/middlewares/dynamic_assets_spec.rb +25 -0
- data/spec/unit/middlewares/locale_redirection_spec.rb +105 -0
- data/spec/unit/middlewares/renderer_spec.rb +29 -0
- data/spec/unit/middlewares/stack_proxy_spec.rb +67 -0
- data/spec/unit/models/mapper_spec.rb +75 -0
- data/spec/unit/models/pager_spec.rb +82 -0
- data/spec/unit/models/repository_spec.rb +46 -0
- data/spec/unit/models/scope_spec.rb +27 -0
- data/spec/unit/repositories/content_entry_repository_spec.rb +347 -0
- data/spec/unit/repositories/content_type_repository_spec.rb +126 -0
- data/spec/unit/repositories/page_repository_spec.rb +365 -0
- data/spec/unit/repositories/site_repository_spec.rb +41 -0
- data/spec/unit/repositories/snippet_repository_spec.rb +37 -0
- data/spec/unit/repositories/theme_asset_repository_spec.rb +35 -0
- data/spec/unit/repositories/translation_repository_spec.rb +34 -0
- data/spec/unit/services/asset_host_service_spec.rb +79 -0
- data/spec/unit/services/entry_submission_service_spec.rb +143 -0
- data/spec/unit/services/external_api_service_spec.rb +80 -0
- data/spec/unit/services/image_resizer_service_spec.rb +75 -0
- data/spec/unit/services/markdown_service_spec.rb +36 -0
- data/spec/unit/services/parent_finder_service_spec.rb +41 -0
- data/spec/unit/services/textile_service_spec.rb +34 -0
- data/spec/unit/services/translator_service_spec.rb +65 -0
- data/spec/unit/services/url_builder_service_spec.rb +48 -0
- data/spec/unit/services_spec.rb +25 -0
- metadata +462 -119
- data/example/server.rb +0 -31
- data/lib/locomotive/steam/decorators.rb +0 -1
- data/lib/locomotive/steam/decorators/page_decorator.rb +0 -50
- data/lib/locomotive/steam/exceptions.rb +0 -62
- data/lib/locomotive/steam/liquid/scopeable.rb +0 -149
- data/lib/locomotive/steam/liquid/tags/editable/long_text.rb +0 -15
- data/lib/locomotive/steam/liquid/tags/editable/short_text.rb +0 -20
- data/lib/locomotive/steam/liquid/tags/path_helper.rb +0 -98
- data/lib/locomotive/steam/loaders/yml/pages_loader.rb +0 -193
- data/lib/locomotive/steam/loaders/yml/site_loader.rb +0 -49
- data/lib/locomotive/steam/loaders/yml/utils/localized_tree.rb +0 -33
- data/lib/locomotive/steam/loaders/yml/utils/yaml_front_matters_template.rb +0 -66
- data/lib/locomotive/steam/loaders/yml_loader.rb +0 -33
- data/lib/locomotive/steam/mapper.rb +0 -86
- data/lib/locomotive/steam/middlewares/base.rb +0 -65
- data/lib/locomotive/steam/middlewares/stack.rb +0 -66
- data/lib/locomotive/steam/middlewares/static_assets.rb +0 -25
- data/lib/locomotive/steam/monkey_patches.rb +0 -3
- data/lib/locomotive/steam/monkey_patches/haml.rb +0 -17
- data/lib/locomotive/steam/repositories/content_types_repository.rb +0 -14
- data/lib/locomotive/steam/repositories/pages_repository.rb +0 -23
- data/lib/locomotive/steam/repositories/sites_repository.rb +0 -16
- data/lib/locomotive/steam/services/dragonfly.rb +0 -49
- data/lib/locomotive/steam/services/external_api.rb +0 -47
- data/lib/locomotive/steam/services/markdown.rb +0 -20
- data/lib/locomotive/steam/standalone_server.rb +0 -30
- data/spec/unit/decorators/page_decorator_spec.rb +0 -55
- data/spec/unit/loaders/pages_loader_spec.rb +0 -42
- data/spec/unit/loaders/site_loader_spec.rb +0 -21
- data/spec/unit/loaders/utils/localized_tree_spec.rb +0 -33
- data/spec/unit/loaders/utils/yaml_front_matters_template_spec.rb +0 -39
- data/spec/unit/middlewares/base_spec.rb +0 -20
- data/spec/unit/middlewares/page_spec.rb +0 -51
- data/spec/unit/repositories/pages_spec.rb +0 -11
@@ -0,0 +1,365 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require_relative '../../../lib/locomotive/steam/adapters/filesystem.rb'
|
4
|
+
|
5
|
+
describe Locomotive::Steam::PageRepository do
|
6
|
+
|
7
|
+
let(:pages) { [{ title: { en: 'Home' }, handle: 'home', slug: { en: 'index' }, _fullpath: 'index', template_path: { en: 'index.liquid' } }] }
|
8
|
+
let(:locale) { :en }
|
9
|
+
let(:site) { instance_double('Site', _id: 1, default_locale: :en, locales: %i(en fr)) }
|
10
|
+
let(:adapter) { Locomotive::Steam::FilesystemAdapter.new(nil) }
|
11
|
+
let(:repository) { described_class.new(adapter, site, locale) }
|
12
|
+
|
13
|
+
before do
|
14
|
+
allow(adapter).to receive(:collection).and_return(pages)
|
15
|
+
adapter.cache = NoCacheStore.new
|
16
|
+
end
|
17
|
+
|
18
|
+
describe '#all' do
|
19
|
+
|
20
|
+
let(:pages) do
|
21
|
+
[
|
22
|
+
{ title: { en: 'Contact' }, slug: { en: 'contact' }, _fullpath: 'contact', template_path: { en: 'contact.liquid' } },
|
23
|
+
{ title: { en: 'About us' }, position: 2, slug: { en: 'about-us' }, _fullpath: 'about-us', template_path: { en: 'about-us.liquid' } },
|
24
|
+
{ title: { en: 'Jane Doe' }, slug: { en: 'jane-doe' }, _fullpath: 'team/jane-doe', template_path: { en: 'team/jane-doe.liquid' } },
|
25
|
+
{ title: { en: 'John Doe' }, position: 1, slug: { en: 'john-doe' }, _fullpath: 'team/john-doe', template_path: { en: 'team/john-doe.liquid' } },
|
26
|
+
{ title: { en: 'Home' }, slug: { en: 'index' }, _fullpath: 'index', template_path: { en: 'index.liquid' } }
|
27
|
+
]
|
28
|
+
end
|
29
|
+
|
30
|
+
let(:conditions) { nil }
|
31
|
+
|
32
|
+
subject { repository.all(conditions) }
|
33
|
+
|
34
|
+
it { expect(subject.size).to eq 5 }
|
35
|
+
|
36
|
+
describe 'default order' do
|
37
|
+
|
38
|
+
subject { repository.all(conditions).map { |p| p.title.values.first } }
|
39
|
+
|
40
|
+
it { is_expected.to eq ['Home', 'About us', 'Contact', 'John Doe', 'Jane Doe'] }
|
41
|
+
|
42
|
+
end
|
43
|
+
|
44
|
+
describe 'filter' do
|
45
|
+
|
46
|
+
let(:conditions) { { slug: /-doe$/ } }
|
47
|
+
it { expect(subject.size).to eq 2 }
|
48
|
+
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'templatized pages' do
|
54
|
+
|
55
|
+
let(:pages) do
|
56
|
+
[
|
57
|
+
{ title: { en: 'Comments' }, slug: { en: 'comments' }, _fullpath: 'articles/template/comments' },
|
58
|
+
{ title: { en: 'Template Article' }, slug: { en: 'template' }, content_type: :articles, _fullpath: 'articles/template' },
|
59
|
+
{ title: { en: 'Articles' }, slug: { en: 'articles' }, _fullpath: 'articles' },
|
60
|
+
{ title: { en: 'Home' }, slug: { en: 'index' }, _fullpath: 'index', template_path: { en: 'index.liquid' } }
|
61
|
+
]
|
62
|
+
end
|
63
|
+
|
64
|
+
it { expect(repository.all.size).to eq 4 }
|
65
|
+
it { expect(repository.find(2).templatized?).to eq true }
|
66
|
+
|
67
|
+
describe 'nested templatized page' do
|
68
|
+
|
69
|
+
subject { repository.find(1) }
|
70
|
+
|
71
|
+
it { expect(subject.templatized?).to eq true }
|
72
|
+
it { expect(subject.content_type_id).to eq 'articles' }
|
73
|
+
it { expect(subject.slug[:en]).to eq 'comments' }
|
74
|
+
it { expect(subject.slug[:fr]).to eq nil }
|
75
|
+
it { expect(subject.fullpath[:en]).to eq 'articles/content_type_template/comments' }
|
76
|
+
|
77
|
+
end
|
78
|
+
|
79
|
+
end
|
80
|
+
|
81
|
+
describe '#find' do
|
82
|
+
|
83
|
+
let(:id) { 15 }
|
84
|
+
let(:pages) do
|
85
|
+
[
|
86
|
+
{ _id: 15, parent_id: 1, title: { en: 'Somewhere' }, slug: { en: 'music', fr: 'notre-musique' }, _fullpath: 'music', template_path: { en: 'somewhere.liquid' } },
|
87
|
+
{ _id: 1, title: { en: 'Home' }, slug: { en: 'index' }, _fullpath: 'index', template_path: { en: 'index.liquid' } }
|
88
|
+
]
|
89
|
+
end
|
90
|
+
|
91
|
+
subject { repository.find(id) }
|
92
|
+
|
93
|
+
it { expect(subject.slug.translations).to eq('en' => 'music', 'fr' => 'notre-musique') }
|
94
|
+
it { expect(subject.fullpath.translations).to eq('en' => 'music', 'fr' => 'notre-musique') }
|
95
|
+
|
96
|
+
end
|
97
|
+
|
98
|
+
describe '#by_fullpath' do
|
99
|
+
|
100
|
+
let(:path) { nil }
|
101
|
+
subject { repository.by_fullpath(path) }
|
102
|
+
|
103
|
+
it { is_expected.to eq nil }
|
104
|
+
|
105
|
+
context 'existing page' do
|
106
|
+
|
107
|
+
let(:path) { 'index' }
|
108
|
+
it { expect(subject.title[:en]).to eq 'Home' }
|
109
|
+
|
110
|
+
end
|
111
|
+
|
112
|
+
end
|
113
|
+
|
114
|
+
describe '#by_handle' do
|
115
|
+
|
116
|
+
let(:handle) { nil }
|
117
|
+
subject { repository.by_handle(handle) }
|
118
|
+
|
119
|
+
it { is_expected.to eq nil }
|
120
|
+
|
121
|
+
context 'existing page' do
|
122
|
+
|
123
|
+
let(:handle) { 'home' }
|
124
|
+
it { expect(subject.title[:en]).to eq 'Home' }
|
125
|
+
|
126
|
+
end
|
127
|
+
|
128
|
+
end
|
129
|
+
|
130
|
+
describe '#matching_fullpath' do
|
131
|
+
|
132
|
+
let(:paths) { nil }
|
133
|
+
subject { repository.matching_fullpath(paths) }
|
134
|
+
|
135
|
+
it { is_expected.to eq [] }
|
136
|
+
|
137
|
+
context 'existing page' do
|
138
|
+
|
139
|
+
let(:paths) { ['index', '404'] }
|
140
|
+
it { expect(subject.first.title[:en]).to eq 'Home' }
|
141
|
+
|
142
|
+
end
|
143
|
+
|
144
|
+
context 'templatized page' do
|
145
|
+
|
146
|
+
let(:paths) { ['articles/content_type_template', 'content_type_template/hello-world', 'articles/hello-world'] }
|
147
|
+
|
148
|
+
let(:pages) do
|
149
|
+
[{ title: { en: 'Templatized article' }, slug: { en: 'template' }, content_type: 'articles', _fullpath: 'articles/template', template_path: { en: 'articles/template.liquid' } }]
|
150
|
+
end
|
151
|
+
|
152
|
+
it { expect(subject.first.title[:en]).to eq('Templatized article') }
|
153
|
+
|
154
|
+
end
|
155
|
+
|
156
|
+
end
|
157
|
+
|
158
|
+
describe '#template_for' do
|
159
|
+
|
160
|
+
let(:pages) do
|
161
|
+
[
|
162
|
+
{ title: { en: 'Article template' }, content_type: 'Articles', slug: { en: 'articles/content_type_template' }, _fullpath: 'articles/template', template_path: { en: 'articles/template.liquid' } },
|
163
|
+
{ title: { en: 'Archived article template' }, handle: 'archive', content_type: 'Articles', slug: { en: 'archived/articles/content_type_template' }, _fullpath: 'archived/articles/template', template_path: { en: 'archived/articles/template.liquid' } },
|
164
|
+
{ title: { en: 'Home' }, handle: 'home', slug: { en: 'index' }, _fullpath: 'index', template_path: { en: 'index.liquid' } }
|
165
|
+
]
|
166
|
+
end
|
167
|
+
let(:entry) { nil }
|
168
|
+
let(:handle) { nil }
|
169
|
+
|
170
|
+
subject { repository.template_for(entry, handle) }
|
171
|
+
|
172
|
+
it { is_expected.to eq nil }
|
173
|
+
|
174
|
+
context 'both existing entry and page' do
|
175
|
+
|
176
|
+
let(:entry) { instance_double('Article', _class_name: 'Locomotive::ContentEntryArticles', _slug: { en: 'hello-world' }) }
|
177
|
+
it { expect(subject.title[:en]).to eq 'Article template' }
|
178
|
+
it { expect(subject.content_entry).to eq entry }
|
179
|
+
|
180
|
+
context 'with a handle' do
|
181
|
+
|
182
|
+
let(:handle) { 'archive' }
|
183
|
+
it { expect(subject.title[:en]).to eq 'Archived article template' }
|
184
|
+
it { expect(subject.content_entry).to eq entry }
|
185
|
+
|
186
|
+
end
|
187
|
+
|
188
|
+
end
|
189
|
+
|
190
|
+
context 'unknown content type' do
|
191
|
+
|
192
|
+
let(:entry) { instance_double('Project', content_type_slug: 'projects', _slug: { en: 'hello-world' }) }
|
193
|
+
it { is_expected.to eq nil }
|
194
|
+
|
195
|
+
end
|
196
|
+
|
197
|
+
end
|
198
|
+
|
199
|
+
describe '#root' do
|
200
|
+
|
201
|
+
subject { repository.root }
|
202
|
+
it { expect(subject.title[:en]).to eq 'Home' }
|
203
|
+
|
204
|
+
end
|
205
|
+
|
206
|
+
describe '#parent_of' do
|
207
|
+
|
208
|
+
let(:page) { nil }
|
209
|
+
subject { repository.parent_of(page) }
|
210
|
+
|
211
|
+
it { is_expected.to eq nil }
|
212
|
+
|
213
|
+
context 'index' do
|
214
|
+
|
215
|
+
let(:page) { instance_double('Page', index?: true) }
|
216
|
+
it { is_expected.to eq nil }
|
217
|
+
|
218
|
+
end
|
219
|
+
|
220
|
+
context 'page not nil' do
|
221
|
+
|
222
|
+
let(:page) { instance_double('Page', parent_id: 1, index?: false, fullpath: { en: 'about-us' }) }
|
223
|
+
it { expect(subject.title[:en]).to eq 'Home' }
|
224
|
+
|
225
|
+
end
|
226
|
+
|
227
|
+
context 'nested pages' do
|
228
|
+
|
229
|
+
let(:pages) do
|
230
|
+
[
|
231
|
+
{ title: { en: 'Somewhere' }, slug: { en: 'somewhere' }, _fullpath: 'somewhere', template_path: { en: 'somewhere.liquid' } },
|
232
|
+
{ title: { en: 'Home' }, slug: { en: 'index' }, _fullpath: 'index', template_path: { en: 'index.liquid' } }
|
233
|
+
]
|
234
|
+
end
|
235
|
+
let(:page) { instance_double('Page', parent_id: 1, index?: false, fullpath: { en: 'somewhere/hello-world' }) }
|
236
|
+
|
237
|
+
it { expect(subject.title[:en]).to eq 'Somewhere' }
|
238
|
+
|
239
|
+
end
|
240
|
+
|
241
|
+
end
|
242
|
+
|
243
|
+
describe '#ancestors_of' do
|
244
|
+
|
245
|
+
let(:page) { nil }
|
246
|
+
subject { repository.ancestors_of(page) }
|
247
|
+
|
248
|
+
it { is_expected.to eq [] }
|
249
|
+
|
250
|
+
context 'index' do
|
251
|
+
|
252
|
+
let(:page) { instance_double('Page', _id: 1, parent_ids: [], fullpath: 'index') }
|
253
|
+
it { expect(subject.size).to eq 1 }
|
254
|
+
it { expect(subject.first.title[:en]).to eq 'Home' }
|
255
|
+
|
256
|
+
end
|
257
|
+
|
258
|
+
context 'nested pages' do
|
259
|
+
|
260
|
+
let(:pages) do
|
261
|
+
[
|
262
|
+
{ title: { en: 'Foo' }, slug: { en: 'foo' }, _fullpath: 'bar/foo', template_path: { en: 'bar/foo.liquid' } },
|
263
|
+
{ title: { en: 'Bar' }, slug: { en: 'bar' }, _fullpath: 'bar', template_path: { en: 'bar.liquid' } },
|
264
|
+
{ title: { en: 'Home' }, slug: { en: 'index' }, _fullpath: 'index', template_path: { en: 'index.liquid' } }
|
265
|
+
]
|
266
|
+
end
|
267
|
+
let(:page) { instance_double('Page', _id: 1, parent_ids: [3, 2], title: { en: 'Foo' }, index?: false, fullpath: { en: 'bar/foo' }) }
|
268
|
+
|
269
|
+
it { expect(subject.map { |p| p.title[:en] }).to eq ['Home', 'Bar', 'Foo'] }
|
270
|
+
|
271
|
+
end
|
272
|
+
|
273
|
+
end
|
274
|
+
|
275
|
+
describe '#children_of' do
|
276
|
+
|
277
|
+
let(:page) { nil }
|
278
|
+
subject { repository.children_of(page) }
|
279
|
+
|
280
|
+
it { is_expected.to eq [] }
|
281
|
+
|
282
|
+
context 'with pages' do
|
283
|
+
|
284
|
+
let(:pages) do
|
285
|
+
[
|
286
|
+
{ title: { en: 'Foo' }, slug: { en: 'foo' }, _fullpath: 'bar/foo', template_path: { en: 'bar/foo.liquid' } },
|
287
|
+
{ title: { en: 'Bar' }, slug: { en: 'bar' }, _fullpath: 'bar', template_path: { en: 'bar.liquid' } },
|
288
|
+
{ title: { en: 'Home' }, slug: { en: 'index' }, _fullpath: 'index', template_path: { en: 'index.liquid' } }
|
289
|
+
]
|
290
|
+
end
|
291
|
+
let(:page) { instance_double('Page', _id: 3, title: { en: 'Home' }, depth: 0, index?: true, fullpath: { en: 'index' }) }
|
292
|
+
|
293
|
+
it { expect(subject.map { |p| p.title[:en] }).to eq ['Bar'] }
|
294
|
+
|
295
|
+
context 'from a nested page' do
|
296
|
+
|
297
|
+
let(:page) { instance_double('Page', _id: 2, title: { en: 'Bar' }, index?: false, depth: 1, fullpath: { en: 'bar' }) }
|
298
|
+
it { expect(subject.map { |p| p.title[:en] }).to eq ['Foo'] }
|
299
|
+
|
300
|
+
end
|
301
|
+
|
302
|
+
end
|
303
|
+
|
304
|
+
end
|
305
|
+
|
306
|
+
describe '#editable_elements_of' do
|
307
|
+
|
308
|
+
let(:page) { nil }
|
309
|
+
subject { repository.editable_elements_of(page) }
|
310
|
+
|
311
|
+
it { is_expected.to eq nil }
|
312
|
+
|
313
|
+
context 'page with editable elements' do
|
314
|
+
|
315
|
+
let(:elements) { [{ block: nil, slug: 'title', content: { en: 'Stuff here' } }] }
|
316
|
+
let(:pages) do
|
317
|
+
[
|
318
|
+
{ title: { en: 'Home' }, slug: { en: 'index' }, _fullpath: 'index', editable_elements: elements, template_path: { en: 'index.liquid' } }
|
319
|
+
]
|
320
|
+
end
|
321
|
+
let(:page) { repository.all.first }
|
322
|
+
|
323
|
+
it { expect(subject.all.size).to eq 1 }
|
324
|
+
it { expect(subject.first.content[:en]).to eq 'Stuff here' }
|
325
|
+
|
326
|
+
context 'changing the locale' do
|
327
|
+
|
328
|
+
before { subject; repository.locale = :fr }
|
329
|
+
|
330
|
+
it { expect(subject.locale).to eq :fr }
|
331
|
+
|
332
|
+
end
|
333
|
+
|
334
|
+
end
|
335
|
+
|
336
|
+
end
|
337
|
+
|
338
|
+
describe '#editable_element_for' do
|
339
|
+
|
340
|
+
let(:page) { nil }
|
341
|
+
let(:block) { nil }
|
342
|
+
let(:slug) { nil }
|
343
|
+
subject { repository.editable_element_for(page, block, slug) }
|
344
|
+
|
345
|
+
it { is_expected.to eq nil }
|
346
|
+
|
347
|
+
context 'page with editable elements' do
|
348
|
+
|
349
|
+
let(:elements) { [{ block: nil, slug: 'title', content: { en: 'Stuff here', fr: 'Truc ici' } }] }
|
350
|
+
let(:pages) do
|
351
|
+
[
|
352
|
+
{ title: { en: 'Home' }, slug: { en: 'index' }, _fullpath: 'index', editable_elements: elements, template_path: { en: 'index.liquid' } }
|
353
|
+
]
|
354
|
+
end
|
355
|
+
let(:page) { repository.all.first }
|
356
|
+
let(:block) { nil }
|
357
|
+
let(:slug) { 'title' }
|
358
|
+
|
359
|
+
it { expect(subject.content[:en]).to eq 'Stuff here' }
|
360
|
+
|
361
|
+
end
|
362
|
+
|
363
|
+
end
|
364
|
+
|
365
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require_relative '../../../lib/locomotive/steam/adapters/filesystem.rb'
|
4
|
+
|
5
|
+
describe Locomotive::Steam::SiteRepository do
|
6
|
+
|
7
|
+
let(:adapter) { Locomotive::Steam::FilesystemAdapter.new(nil) }
|
8
|
+
let(:repository) { described_class.new(adapter) }
|
9
|
+
|
10
|
+
before do
|
11
|
+
allow(adapter).to receive(:collection).and_return([{ name: 'Acme', handle: 'acme', domains: ['example.org'] }])
|
12
|
+
adapter.cache = NoCacheStore.new
|
13
|
+
end
|
14
|
+
|
15
|
+
describe '#by_handle_or_domain' do
|
16
|
+
|
17
|
+
let(:handle) { nil }
|
18
|
+
let(:domains) { nil }
|
19
|
+
|
20
|
+
subject { repository.by_handle_or_domain(handle, domains) }
|
21
|
+
|
22
|
+
it { expect(subject).to eq nil }
|
23
|
+
|
24
|
+
context 'handle' do
|
25
|
+
|
26
|
+
let(:handle) { 'acme' }
|
27
|
+
it { expect(subject.class).to eq Locomotive::Steam::Site }
|
28
|
+
it { expect(subject.name).to eq 'Acme' }
|
29
|
+
|
30
|
+
end
|
31
|
+
|
32
|
+
context 'domain' do
|
33
|
+
|
34
|
+
let(:domains) { 'example.org' }
|
35
|
+
it { expect(subject.name).to eq 'Acme' }
|
36
|
+
|
37
|
+
end
|
38
|
+
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require_relative '../../../lib/locomotive/steam/adapters/filesystem.rb'
|
4
|
+
|
5
|
+
describe Locomotive::Steam::SnippetRepository do
|
6
|
+
|
7
|
+
let(:snippets) { [{ name: 'Simple', slug: 'simple', template_path: { en: 'simple.yml' } }] }
|
8
|
+
let(:locale) { :en }
|
9
|
+
let(:site) { instance_double('Site', _id: 1, default_locale: :en, locales: [:en, :fr]) }
|
10
|
+
let(:adapter) { Locomotive::Steam::FilesystemAdapter.new(nil) }
|
11
|
+
let(:repository) { described_class.new(adapter, site, locale) }
|
12
|
+
|
13
|
+
before do
|
14
|
+
allow(adapter).to receive(:collection).and_return(snippets)
|
15
|
+
adapter.cache = NoCacheStore.new
|
16
|
+
end
|
17
|
+
|
18
|
+
describe '#by_slug' do
|
19
|
+
|
20
|
+
let(:name) { nil }
|
21
|
+
subject { repository.by_slug(name) }
|
22
|
+
|
23
|
+
it { is_expected.to eq nil }
|
24
|
+
|
25
|
+
context 'existing snippet' do
|
26
|
+
|
27
|
+
let(:name) { 'simple' }
|
28
|
+
it { expect(subject.class).to eq Locomotive::Steam::Snippet }
|
29
|
+
it { expect(subject.name).to eq 'Simple' }
|
30
|
+
it { expect(subject[:template_path][:en]).to eq 'simple.yml' }
|
31
|
+
it { expect(subject[:template_path][:fr]).to eq 'simple.yml' }
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require_relative '../../../lib/locomotive/steam/adapters/filesystem.rb'
|
4
|
+
|
5
|
+
describe Locomotive::Steam::ThemeAssetRepository do
|
6
|
+
|
7
|
+
let(:theme_assets) { [{ local_path: 'application.css', checksum: 42 }] }
|
8
|
+
let(:locale) { :en }
|
9
|
+
let(:site) { instance_double('Site', _id: 1, default_locale: :en, locales: [:en, :fr]) }
|
10
|
+
let(:adapter) { Locomotive::Steam::FilesystemAdapter.new(nil) }
|
11
|
+
let(:repository) { described_class.new(adapter, site, locale) }
|
12
|
+
|
13
|
+
before do
|
14
|
+
allow(adapter).to receive(:collection).and_return(theme_assets)
|
15
|
+
adapter.cache = NoCacheStore.new
|
16
|
+
end
|
17
|
+
|
18
|
+
describe '#url_for' do
|
19
|
+
|
20
|
+
let(:path) { 'main.css' }
|
21
|
+
subject { repository.url_for(path) }
|
22
|
+
|
23
|
+
it { is_expected.to eq '/main.css' }
|
24
|
+
|
25
|
+
end
|
26
|
+
|
27
|
+
describe '#checksums' do
|
28
|
+
|
29
|
+
subject { repository.checksums }
|
30
|
+
|
31
|
+
it { is_expected.to eq({ 'application.css' => 42 }) }
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|