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,131 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Locomotive::Steam::Liquid::Tags::Paginate do
|
4
|
+
|
5
|
+
let(:source) { <<-EOF
|
6
|
+
{% paginate projects by 5 %}
|
7
|
+
{% for project in paginate.collection %}!{{ project }}{% endfor %}
|
8
|
+
{{ paginate.next.url }}
|
9
|
+
{% endpaginate %}'
|
10
|
+
EOF
|
11
|
+
}
|
12
|
+
|
13
|
+
let(:projects) { ['RoR', 'MongoDB', 'Liquid', 'ReactJS', 'DCI', 'Bootstrap'] }
|
14
|
+
let(:page) { 1 }
|
15
|
+
let(:assigns) { { 'projects' => projects, 'current_page' => page, 'fullpath' => '/' } }
|
16
|
+
let(:context) { ::Liquid::Context.new(assigns, {}, {}) }
|
17
|
+
let(:output) { render_template(source, context) }
|
18
|
+
|
19
|
+
describe 'parsing' do
|
20
|
+
|
21
|
+
subject { parse_template(source) }
|
22
|
+
|
23
|
+
describe 'wrong syntax' do
|
24
|
+
|
25
|
+
let(:source) { '{% paginate projects %}{% endpaginate %}' }
|
26
|
+
it { expect { subject }.to raise_error(::Liquid::SyntaxError, 'Liquid syntax error: Valid syntax: paginate <collection> by <number>') }
|
27
|
+
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'with options for the pagination' do
|
31
|
+
|
32
|
+
let(:source) { '{% paginate projects by 2, window_size: 4 %}{% endpaginate %}' }
|
33
|
+
let(:block) { subject.root.nodelist.first }
|
34
|
+
it { expect(block.send(:window_size)).to eq 4 }
|
35
|
+
|
36
|
+
end
|
37
|
+
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'rendering' do
|
41
|
+
|
42
|
+
describe 'nil array' do
|
43
|
+
|
44
|
+
let(:projects) { nil }
|
45
|
+
|
46
|
+
subject { output }
|
47
|
+
|
48
|
+
it { expect { subject }.to raise_error(::Liquid::ArgumentError, "Liquid error: Cannot paginate 'projects'. Not found.") }
|
49
|
+
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'simple array' do
|
53
|
+
|
54
|
+
subject { output }
|
55
|
+
|
56
|
+
it { is_expected.to include '!RoR!MongoDB!Liquid!ReactJS!DCI' }
|
57
|
+
it { is_expected.not_to include '!Bootstrap' }
|
58
|
+
|
59
|
+
describe 'second page of results: display the last item' do
|
60
|
+
|
61
|
+
let(:page) { 2 }
|
62
|
+
it { is_expected.to include '!Bootstrap' }
|
63
|
+
it { is_expected.not_to include '!RoR!MongoDB!Liquid!ReactJS!DCI' }
|
64
|
+
|
65
|
+
end
|
66
|
+
|
67
|
+
end
|
68
|
+
|
69
|
+
describe 'array from a db collection' do
|
70
|
+
|
71
|
+
let(:projects) { KindaDBCollection.new(['RoR', 'MongoDB', 'Liquid', 'ReactJS', 'DCI', 'Bootstrap']) }
|
72
|
+
|
73
|
+
subject { output }
|
74
|
+
|
75
|
+
it { is_expected.to include '!RoR!MongoDB!Liquid!ReactJS!DCI' }
|
76
|
+
it { is_expected.not_to include '!Bootstrap' }
|
77
|
+
|
78
|
+
end
|
79
|
+
|
80
|
+
describe 'a very big collection' do
|
81
|
+
|
82
|
+
let(:projects) { (1..100).to_a }
|
83
|
+
let(:page) { 20 }
|
84
|
+
let(:source) { '{% paginate projects by 2, window_size: 10 %}{% assign _pagination = paginate %}{% endpaginate %}' }
|
85
|
+
|
86
|
+
before { output }
|
87
|
+
subject { context['_pagination']['parts'] }
|
88
|
+
|
89
|
+
it { expect(subject.first['title']).to eq 1 }
|
90
|
+
it { expect(subject[1]['title']).to eq '…' }
|
91
|
+
it { expect(subject[2]['title']).to eq 11 }
|
92
|
+
it { expect(subject[21]['title']).to eq '…' }
|
93
|
+
it { expect(subject.last['title']).to eq 50 }
|
94
|
+
|
95
|
+
end
|
96
|
+
|
97
|
+
describe ''
|
98
|
+
|
99
|
+
end
|
100
|
+
|
101
|
+
class KindaDBCollection < Struct.new(:collection)
|
102
|
+
|
103
|
+
def paginate(options = {})
|
104
|
+
total_pages = (collection.size.to_f / options[:per_page].to_f).to_f.ceil + 1
|
105
|
+
offset = (options[:page] - 1) * options[:per_page]
|
106
|
+
|
107
|
+
{
|
108
|
+
collection: collection[offset..(offset + options[:per_page]) - 1],
|
109
|
+
current_page: options[:page],
|
110
|
+
previous_page: options[:page] == 1 ? 1 : options[:page] - 1,
|
111
|
+
next_page: options[:page] == total_pages ? total_pages : options[:page] + 1,
|
112
|
+
total_entries: collection.size,
|
113
|
+
total_pages: total_pages,
|
114
|
+
per_page: options[:per_page]
|
115
|
+
}
|
116
|
+
end
|
117
|
+
|
118
|
+
def each(&block)
|
119
|
+
collection.each(&block)
|
120
|
+
end
|
121
|
+
|
122
|
+
def method_missing(method, *args)
|
123
|
+
collection.send(method, *args)
|
124
|
+
end
|
125
|
+
|
126
|
+
def to_liquid
|
127
|
+
self
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
end
|
@@ -0,0 +1,100 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Locomotive::Steam::Liquid::Tags::PathTo do
|
4
|
+
|
5
|
+
let(:assigns) { {} }
|
6
|
+
let(:services) { Locomotive::Steam::Services.build_instance }
|
7
|
+
let(:site) { instance_double('Site', default_locale: 'en') }
|
8
|
+
let(:context) { ::Liquid::Context.new(assigns, {}, { services: services, site: site, locale: 'en' }) }
|
9
|
+
|
10
|
+
subject { render_template(source, context) }
|
11
|
+
|
12
|
+
before { allow(services).to receive(:current_site).and_return(site) }
|
13
|
+
|
14
|
+
describe 'parsing' do
|
15
|
+
|
16
|
+
let(:source) { '{% path_to %}' }
|
17
|
+
it { expect { subject }.to raise_error('Valid syntax: path_to <page|page_handle|content_entry>(, locale: [fr|de|...], with: <page_handle>') }
|
18
|
+
|
19
|
+
end
|
20
|
+
|
21
|
+
describe 'unknown page' do
|
22
|
+
|
23
|
+
let(:source) { '{% path_to index %}' }
|
24
|
+
|
25
|
+
before do
|
26
|
+
expect(services.repositories.page).to receive(:by_handle).with('index').and_return(nil)
|
27
|
+
end
|
28
|
+
|
29
|
+
it { is_expected.to eq '' }
|
30
|
+
|
31
|
+
end
|
32
|
+
|
33
|
+
describe 'from a handle of a page' do
|
34
|
+
|
35
|
+
let(:drop) { Locomotive::Steam::Liquid::Drops::Page.new(page) }
|
36
|
+
let(:page) { liquid_instance_double('Index', title: 'Index', handle: 'index', fullpath: fullpath, localized_attributes: { fullpath: true }, templatized?: false) }
|
37
|
+
let(:fullpath) { { en: 'index', fr: 'index' } }
|
38
|
+
let(:source) { '{% path_to index %}' }
|
39
|
+
|
40
|
+
before do
|
41
|
+
expect(services.repositories.page).to receive(:by_handle).with('index').and_return(page)
|
42
|
+
allow(page).to receive(:to_liquid).and_return(drop)
|
43
|
+
end
|
44
|
+
|
45
|
+
it { is_expected.to eq '/' }
|
46
|
+
|
47
|
+
context 'and a different locale' do
|
48
|
+
|
49
|
+
let(:source) { "{% path_to index, locale: 'fr' %}" }
|
50
|
+
it { is_expected.to eq '/fr' }
|
51
|
+
|
52
|
+
end
|
53
|
+
|
54
|
+
end
|
55
|
+
|
56
|
+
describe 'from a page (drop) itself' do
|
57
|
+
|
58
|
+
let(:assigns) { { 'about_us' => drop } }
|
59
|
+
let(:drop) { Locomotive::Steam::Liquid::Drops::Page.new(page) }
|
60
|
+
let(:page) { liquid_instance_double('AboutUs', title: 'About us', handle: 'index', localized_attributes: { fullpath: true }, fullpath: fullpath, localized_attributes: [:fullpath], templatized?: false) }
|
61
|
+
let(:fullpath) { { en: 'about-us', fr: 'a-notre-sujet' } }
|
62
|
+
let(:source) { '{% path_to about_us %}' }
|
63
|
+
|
64
|
+
it { is_expected.to eq '/about-us' }
|
65
|
+
|
66
|
+
context 'and a different locale' do
|
67
|
+
|
68
|
+
let(:source) { "{% path_to about_us, locale: 'fr' %}" }
|
69
|
+
it { is_expected.to eq '/fr/a-notre-sujet' }
|
70
|
+
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
74
|
+
|
75
|
+
describe 'from a content entry (drop)' do
|
76
|
+
|
77
|
+
let(:assigns) { { 'article' => entry_drop } }
|
78
|
+
let(:entry_drop) { Locomotive::Steam::Liquid::Drops::ContentEntry.new(entry) }
|
79
|
+
let(:entry) { liquid_instance_double('Article', localized_attributes: { _slug: true }, _slug: { en: 'hello-world', fr: 'bonjour-monde' }) }
|
80
|
+
let(:drop) { Locomotive::Steam::Liquid::Drops::Page.new(page) }
|
81
|
+
let(:page) { liquid_instance_double('ArticleTemplate', title: 'Template of an article', handle: 'article', localized_attributes: { fullpath: true }, fullpath: { en: 'my-articles/content_type_template', fr: 'mes-articles/content_type_template' }, content_entry: entry_drop.send(:_source), templatized?: true) }
|
82
|
+
let(:source) { '{% path_to article %}' }
|
83
|
+
|
84
|
+
before do
|
85
|
+
expect(services.repositories.page).to receive(:template_for).with(entry, nil).and_return(page)
|
86
|
+
allow(page).to receive(:to_liquid).and_return(drop)
|
87
|
+
end
|
88
|
+
|
89
|
+
it { is_expected.to eq '/my-articles/hello-world' }
|
90
|
+
|
91
|
+
context 'and a different locale' do
|
92
|
+
|
93
|
+
let(:source) { "{% path_to article, locale: 'fr' %}" }
|
94
|
+
it { is_expected.to eq '/fr/mes-articles/bonjour-monde' }
|
95
|
+
|
96
|
+
end
|
97
|
+
|
98
|
+
end
|
99
|
+
|
100
|
+
end
|
@@ -0,0 +1,85 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Locomotive::Steam::Liquid::Tags::SEO do
|
4
|
+
|
5
|
+
let(:page) { nil }
|
6
|
+
let(:content_entry) { nil }
|
7
|
+
|
8
|
+
let(:site) { instance_double('Site', name: 'Acme', seo_title: 'Acme (SEO)', meta_description: 'A short site description', meta_keywords: 'test only cat dog') }
|
9
|
+
let(:assigns) { { 'page' => page, 'content_entry' => content_entry } }
|
10
|
+
let(:context) { ::Liquid::Context.new(assigns, {}, { site: site }) }
|
11
|
+
|
12
|
+
subject { render_template(source, context).strip }
|
13
|
+
|
14
|
+
describe 'seo' do
|
15
|
+
|
16
|
+
let(:source) { '{% seo %}' }
|
17
|
+
it { is_expected.to include '<title>Acme (SEO)</title>' }
|
18
|
+
it { is_expected.to include %Q[<meta name="description" content="A short site description">] }
|
19
|
+
it { is_expected.to include %Q[<meta name="keywords" content="test only cat dog">] }
|
20
|
+
|
21
|
+
end
|
22
|
+
|
23
|
+
describe 'seo_title' do
|
24
|
+
|
25
|
+
let(:source) { '{% seo_title %}' }
|
26
|
+
|
27
|
+
describe 'no page' do
|
28
|
+
|
29
|
+
it { is_expected.to eq '<title>Acme (SEO)</title>' }
|
30
|
+
|
31
|
+
describe 'no seo_title site property' do
|
32
|
+
|
33
|
+
let(:site) { instance_double('Site', name: 'Acme', seo_title: nil, meta_description: 'A short site description', meta_keywords: 'test only cat dog') }
|
34
|
+
it { is_expected.to eq '<title>Acme</title>' }
|
35
|
+
|
36
|
+
end
|
37
|
+
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'with a page' do
|
41
|
+
|
42
|
+
let(:page) { liquid_instance_double('Page', seo_title: 'Snow!') }
|
43
|
+
it { is_expected.to eq '<title>Snow!</title>' }
|
44
|
+
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'with a content entry' do
|
48
|
+
|
49
|
+
let(:content_entry) { liquid_instance_double('Entry', seo_title: 'Snow!') }
|
50
|
+
it { is_expected.to eq '<title>Snow!</title>' }
|
51
|
+
|
52
|
+
end
|
53
|
+
|
54
|
+
end
|
55
|
+
|
56
|
+
describe 'seo_metadata' do
|
57
|
+
|
58
|
+
let(:source) { '{% seo_metadata %}' }
|
59
|
+
|
60
|
+
describe 'no page' do
|
61
|
+
|
62
|
+
it { is_expected.to include %Q[<meta name="description" content="A short site description">] }
|
63
|
+
it { is_expected.to include %Q[<meta name="keywords" content="test only cat dog">] }
|
64
|
+
|
65
|
+
end
|
66
|
+
|
67
|
+
describe 'with a page' do
|
68
|
+
|
69
|
+
let(:page) { liquid_instance_double('Page', meta_description: "It's snowing", meta_keywords: 'snow') }
|
70
|
+
it { is_expected.to include %Q[<meta name="description" content="It's snowing">] }
|
71
|
+
it { is_expected.to include %Q[<meta name="keywords" content="snow">] }
|
72
|
+
|
73
|
+
end
|
74
|
+
|
75
|
+
describe 'with a content entry' do
|
76
|
+
|
77
|
+
let(:content_entry) { liquid_instance_double('Entry', meta_description: "It's snowing", meta_keywords: 'snow') }
|
78
|
+
it { is_expected.to include %Q[<meta name="description" content="It's snowing">] }
|
79
|
+
it { is_expected.to include %Q[<meta name="keywords" content="snow">] }
|
80
|
+
|
81
|
+
end
|
82
|
+
|
83
|
+
end
|
84
|
+
|
85
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Locomotive::Steam::Liquid::Tags::SessionAssign do
|
4
|
+
|
5
|
+
let(:source) { '{% session_assign title=42 %}' }
|
6
|
+
let(:session) { Hash.new }
|
7
|
+
let(:request) { instance_double('Request', session: session) }
|
8
|
+
let(:assigns) { {} }
|
9
|
+
let(:context) { ::Liquid::Context.new(assigns, {}, { request: request }) }
|
10
|
+
|
11
|
+
let(:output) { render_template(source, context) }
|
12
|
+
|
13
|
+
subject { session[:title] }
|
14
|
+
|
15
|
+
it { expect(output).to eq '' }
|
16
|
+
|
17
|
+
describe 'parsing' do
|
18
|
+
|
19
|
+
context 'wrong syntax' do
|
20
|
+
|
21
|
+
let(:source) { '{% session_assign title %}' }
|
22
|
+
it { expect { output }.to raise_error(::Liquid::SyntaxError) }
|
23
|
+
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'store the object in the session' do
|
29
|
+
|
30
|
+
before { output }
|
31
|
+
|
32
|
+
it { is_expected.to eq 42 }
|
33
|
+
|
34
|
+
describe 'the object is a string' do
|
35
|
+
|
36
|
+
let(:source) { '{% session_assign title = "Hello world" %}' }
|
37
|
+
it { is_expected.to eq 'Hello world' }
|
38
|
+
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'the object is a variable' do
|
42
|
+
|
43
|
+
let(:assigns) { { 'product' => { 'name' => 'Snow!' } } }
|
44
|
+
let(:source) { '{% session_assign title = product.name %}' }
|
45
|
+
it { is_expected.to eq 'Snow!' }
|
46
|
+
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Locomotive::Steam::Liquid::Tags::Snippet do
|
4
|
+
|
5
|
+
let(:services) { Locomotive::Steam::Services.build_instance(nil) }
|
6
|
+
let(:finder) { services.snippet_finder }
|
7
|
+
let(:snippet) { instance_double('Snippet', template: nil, :template= => nil, liquid_source: 'built by NoCoffee') }
|
8
|
+
let(:source) { 'Locomotive {% include footer %}' }
|
9
|
+
|
10
|
+
before { allow(finder).to receive(:find).and_return(snippet) }
|
11
|
+
|
12
|
+
describe 'parsing' do
|
13
|
+
|
14
|
+
let(:page) { instance_double('Page') }
|
15
|
+
let(:listener) { Liquid::SimpleEventsListener.new }
|
16
|
+
let(:options) { { events_listener: listener, page: page, snippet_finder: finder, parser: services.liquid_parser } }
|
17
|
+
|
18
|
+
let!(:template) { parse_template(source, options) }
|
19
|
+
|
20
|
+
it { expect(listener.event_names.first).to eq :include }
|
21
|
+
|
22
|
+
# describe 'with an editable_element inside', pending: true do
|
23
|
+
|
24
|
+
# let(:snippet) { instance_double('Snippet', source: '{% editable_text company %}built by NoCoffee{% endeditable_text %}') }
|
25
|
+
|
26
|
+
# it { expect(listener.events.size).to eq 2 }
|
27
|
+
|
28
|
+
# end
|
29
|
+
|
30
|
+
end
|
31
|
+
|
32
|
+
describe 'rendering' do
|
33
|
+
|
34
|
+
let(:context) { ::Liquid::Context.new({}, {}, { services: services }) }
|
35
|
+
|
36
|
+
subject { render_template(source, context) }
|
37
|
+
|
38
|
+
it { is_expected.to eq 'Locomotive built by NoCoffee' }
|
39
|
+
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Locomotive::Steam::Liquid::Tags::WithScope do
|
4
|
+
|
5
|
+
let(:assigns) { {} }
|
6
|
+
let(:context) { ::Liquid::Context.new(assigns, {}, {}) }
|
7
|
+
let!(:output) { render_template(source, context) }
|
8
|
+
let(:conditions) { context['conditions'] }
|
9
|
+
|
10
|
+
describe 'decode basic options (boolean, integer, ...)' do
|
11
|
+
|
12
|
+
let(:source) { "{% with_scope active: true, price: 42, title: 'foo', hidden: false %}{% assign conditions = with_scope %}{% endwith_scope %}" }
|
13
|
+
|
14
|
+
it { expect(conditions['active']).to eq true }
|
15
|
+
it { expect(conditions['price']).to eq 42 }
|
16
|
+
it { expect(conditions['title']).to eq 'foo' }
|
17
|
+
it { expect(conditions['hidden']).to eq false }
|
18
|
+
|
19
|
+
end
|
20
|
+
|
21
|
+
describe 'decode regexps' do
|
22
|
+
|
23
|
+
let(:source) { "{% with_scope title: /Like this one|or this one/ %}{% assign conditions = with_scope %}{% endwith_scope %}" }
|
24
|
+
it { expect(conditions['title']).to eq(/Like this one|or this one/) }
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'decode context variable' do
|
29
|
+
|
30
|
+
let(:assigns) { { 'params' => { 'type' => 'posts' } } }
|
31
|
+
let(:source) { "{% with_scope category: params.type %}{% assign conditions = with_scope %}{% endwith_scope %}" }
|
32
|
+
it { expect(conditions['category']).to eq 'posts' }
|
33
|
+
|
34
|
+
end
|
35
|
+
|
36
|
+
describe 'decode a regexp stored in a context variable' do
|
37
|
+
|
38
|
+
let(:assigns) { { 'my_regexp' => '/^Hello World/' } }
|
39
|
+
let(:source) { "{% with_scope title: my_regexp %}{% assign conditions = with_scope %}{% endwith_scope %}" }
|
40
|
+
it { expect(conditions['title']).to eq(/^Hello World/) }
|
41
|
+
|
42
|
+
end
|
43
|
+
|
44
|
+
describe 'allow order_by option' do
|
45
|
+
|
46
|
+
let(:source) { "{% with_scope order_by:\'name DESC\' %}{% assign conditions = with_scope %}{% endwith_scope %}" }
|
47
|
+
it { expect(conditions['order_by']).to eq 'name DESC' }
|
48
|
+
|
49
|
+
end
|
50
|
+
|
51
|
+
describe 'replace _permalink by _slug' do
|
52
|
+
|
53
|
+
let(:source) { "{% with_scope _permalink: 'foo' %}{% assign conditions = with_scope %}{% endwith_scope %}" }
|
54
|
+
it { expect(conditions['_slug']).to eq 'foo' }
|
55
|
+
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'decode criteria with gt and lt' do
|
59
|
+
|
60
|
+
let(:source) { "{% with_scope price.gt:42.0, price.lt:50 %}{% assign conditions = with_scope %}{% endwith_scope %}" }
|
61
|
+
it { expect(conditions['price.gt']).to eq 42.0 }
|
62
|
+
it { expect(conditions['price.lt']).to eq 50 }
|
63
|
+
|
64
|
+
end
|
65
|
+
|
66
|
+
end
|