tenon 1.1.8 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.rdoc +768 -69
- data/Rakefile +7 -13
- data/app/assets/javascripts/tenon/application.js +4 -0
- data/app/controllers/tenon/assets_controller.rb +22 -23
- data/app/controllers/tenon/base_controller.rb +22 -13
- data/app/controllers/tenon/index_controller.rb +0 -4
- data/app/controllers/tenon/item_versions_controller.rb +20 -8
- data/app/controllers/tenon/resources_controller.rb +100 -30
- data/app/controllers/tenon/simple_resources_controller.rb +7 -7
- data/app/controllers/tenon/styleguides_controller.rb +10 -0
- data/app/decorators/tenon/application_decorator.rb +4 -8
- data/app/decorators/tenon/asset_decorator.rb +0 -25
- data/app/filterers/tenon/generic_filterer.rb +24 -0
- data/app/form_builders/tenon/form_builder.rb +189 -19
- data/app/helpers/tenon/active_link_to_helper.rb +9 -0
- data/app/helpers/tenon/application_helper.rb +4 -23
- data/app/helpers/tenon/asset_helper.rb +2 -2
- data/app/helpers/tenon/back_to_index_path_helper.rb +13 -0
- data/app/helpers/tenon/breadcrumbs_helper.rb +33 -0
- data/app/helpers/tenon/flash_helper.rb +14 -0
- data/app/helpers/tenon/icon_helper.rb +7 -0
- data/app/helpers/tenon/input_block_helper.rb +25 -0
- data/app/helpers/tenon/item_version_helper.rb +22 -9
- data/app/helpers/tenon/nav_helper.rb +21 -17
- data/app/helpers/tenon/piece_helper.rb +2 -7
- data/app/helpers/tenon/platform_hints_helper.rb +3 -5
- data/app/helpers/tenon/styleguide_helper.rb +15 -0
- data/app/helpers/tenon/tenon_content_helper.rb +11 -6
- data/app/helpers/tenon/tenon_helper.rb +19 -9
- data/app/models/tenon/application_record.rb +5 -0
- data/app/models/tenon/asset.rb +2 -2
- data/app/models/tenon/item_asset.rb +1 -1
- data/app/models/tenon/item_version.rb +1 -1
- data/app/models/tenon/styleguide.rb +11 -0
- data/app/models/tenon/tenon_content/piece.rb +13 -13
- data/app/models/tenon/tenon_content/row.rb +1 -1
- data/app/models/tenon/tenon_content/row_types/four_column_image.rb +4 -4
- data/app/models/tenon/tenon_content/row_types/four_column_image_and_text.rb +8 -8
- data/app/models/tenon/tenon_content/row_types/four_column_text.rb +4 -4
- data/app/models/tenon/tenon_content/row_types/full_width_embedded_content.rb +1 -1
- data/app/models/tenon/tenon_content/row_types/full_width_image.rb +1 -1
- data/app/models/tenon/tenon_content/row_types/full_width_text.rb +1 -1
- data/app/models/tenon/tenon_content/row_types/left_image_right_text.rb +2 -2
- data/app/models/tenon/tenon_content/row_types/left_text_right_image.rb +2 -2
- data/app/models/tenon/tenon_content/row_types/left_wrapped_image_with_text.rb +2 -2
- data/app/models/tenon/tenon_content/row_types/right_wrapped_image_with_text.rb +2 -2
- data/app/models/tenon/tenon_content/row_types/six_column_image.rb +6 -6
- data/app/models/tenon/tenon_content/row_types/six_column_image_and_text.rb +12 -12
- data/app/models/tenon/tenon_content/row_types/three_column_image.rb +3 -3
- data/app/models/tenon/tenon_content/row_types/three_column_image_and_text.rb +6 -6
- data/app/models/tenon/tenon_content/row_types/three_column_text.rb +3 -3
- data/app/models/tenon/tenon_content/row_types/two_column_image.rb +2 -2
- data/app/models/tenon/tenon_content/row_types/two_column_image_and_text.rb +4 -4
- data/app/models/tenon/tenon_content/row_types/two_column_text.rb +2 -2
- data/app/models/tenon/tenon_content/row_types/two_column_with_background_image.rb +3 -3
- data/app/models/tenon/tenon_content/row_types.rb +17 -17
- data/app/policies/my_settings_policy.rb +2 -0
- data/app/policies/tenon/application_policy.rb +63 -0
- data/app/policies/tenon/asset_policy.rb +4 -0
- data/app/policies/tenon/item_version_policy.rb +4 -0
- data/app/serializers/item_version_serializer.rb +23 -0
- data/app/serializers/tenon/application_serializer.rb +37 -0
- data/app/serializers/tenon/asset_serializer.rb +5 -0
- data/app/serializers/tenon/paginating_serializer.rb +18 -0
- data/app/views/layouts/tenon/application.html.haml +28 -18
- data/app/views/tenon/assets/_form.html.haml +29 -12
- data/app/views/tenon/assets/crop.html.haml +13 -13
- data/app/views/tenon/assets/edit.html.haml +1 -12
- data/app/views/tenon/assets/index.html.haml +5 -19
- data/app/views/tenon/assets/new.html.haml +1 -0
- data/app/views/tenon/fields/_asset.html.haml +26 -27
- data/app/views/tenon/fields/_base.html.haml +7 -0
- data/app/views/tenon/fields/_base_inline.html.haml +4 -0
- data/app/views/tenon/fields/_check_box.html.haml +9 -0
- data/app/views/tenon/fields/_collection_select.html.haml +4 -0
- data/app/views/tenon/fields/_color_field.html.haml +3 -0
- data/app/views/tenon/fields/_date_picker.html.haml +2 -0
- data/app/views/tenon/fields/_date_time_picker.html.haml +6 -0
- data/app/views/tenon/fields/_email_field.html.haml +2 -0
- data/app/views/tenon/fields/_inline_check_box.html.haml +5 -0
- data/app/views/tenon/fields/_inline_radio_button.html.haml +5 -0
- data/app/views/tenon/fields/_number_field.html.haml +2 -0
- data/app/views/tenon/fields/_password_field.html.haml +2 -0
- data/app/views/tenon/fields/_phone_field.html.haml +2 -0
- data/app/views/tenon/fields/_radio_button.html.haml +9 -0
- data/app/views/tenon/fields/_rich_text.html.haml +3 -6
- data/app/views/tenon/fields/_select.html.haml +3 -0
- data/app/views/tenon/fields/_text_area.html.haml +2 -0
- data/app/views/tenon/fields/_text_field.html.haml +2 -0
- data/app/views/tenon/fields/_title_text_field.html.haml +2 -0
- data/app/views/tenon/fields/_url_field.html.haml +2 -0
- data/app/views/tenon/index/index.html.haml +8 -29
- data/app/views/tenon/item_assets/new.html.haml +20 -22
- data/app/views/tenon/item_versions/_item_version.json.jbuilder +4 -4
- data/app/views/tenon/item_versions/index.html.haml +14 -6
- data/app/views/tenon/item_versions/new.html.haml +8 -10
- data/app/views/tenon/settings/_contact.html.haml +14 -19
- data/app/views/tenon/settings/_general.html.haml +15 -11
- data/app/views/tenon/settings/_seo.html.haml +10 -9
- data/app/views/tenon/settings/show.html.haml +12 -31
- data/app/views/tenon/shared/_account_dropdown.html.haml +6 -0
- data/app/views/tenon/shared/_app_info.html.haml +5 -0
- data/app/views/tenon/shared/_breadcrumbs.html.haml +1 -0
- data/app/views/tenon/shared/_burger.html.haml +5 -0
- data/app/views/tenon/shared/_default_form_toolbar.html.haml +26 -0
- data/app/views/tenon/shared/_draft_controls.html.haml +18 -0
- data/app/views/tenon/shared/_i18n_language_nav.html.haml +2 -2
- data/app/views/tenon/shared/_main_nav.html.haml +3 -14
- data/app/views/tenon/shared/_platform_hints.html.haml +15 -15
- data/app/views/tenon/shared/_seo_fields.html.haml +8 -6
- data/app/views/tenon/shared/_site_title.html.haml +6 -0
- data/app/views/tenon/shared/_util_nav.html.haml +4 -27
- data/app/views/tenon/shared/_version_warning.html.haml +11 -11
- data/app/views/tenon/styleguides/_buttons.html.haml +118 -0
- data/app/views/tenon/styleguides/_colors.html.haml +59 -0
- data/app/views/tenon/styleguides/_forms.html.haml +4 -0
- data/app/views/tenon/styleguides/_icons.html.haml +21 -0
- data/app/views/tenon/styleguides/_typography.html.haml +27 -0
- data/app/views/tenon/styleguides/buttons/_colors.html.haml +43 -0
- data/app/views/tenon/styleguides/buttons/_styles.html.haml +59 -0
- data/app/views/tenon/styleguides/colors/_helpers.html.haml +48 -0
- data/app/views/tenon/styleguides/colors/_variables.html.haml +31 -0
- data/app/views/tenon/styleguides/forms/_default.html.haml +92 -0
- data/app/views/tenon/styleguides/forms/_html5.html.haml +31 -0
- data/app/views/tenon/styleguides/forms/_tenon_content.html.haml +15 -0
- data/app/views/tenon/styleguides/index.html.haml +52 -0
- data/app/views/tenon/styleguides/typography/_blockquote.html.haml +7 -0
- data/app/views/tenon/styleguides/typography/_inline.html.haml +8 -0
- data/app/views/tenon/styleguides/typography/_lists.html.haml +40 -0
- data/app/views/tenon/styleguides/typography/_paragraphs.html.haml +17 -0
- data/app/views/tenon/styleguides/typography/_small.html.haml +18 -0
- data/app/views/tenon/styleguides/typography/_styles.html.haml +14 -0
- data/app/views/tenon/styleguides/typography/_variables.html.haml +43 -0
- data/app/views/tenon/tenon_content/_display.html.haml +2 -2
- data/app/views/tenon/tenon_content/_embed_modal.html.haml +3 -3
- data/app/views/tenon/tenon_content/_fields.html.haml +21 -35
- data/app/views/tenon/tenon_content/_row.html.haml +14 -13
- data/app/views/tenon/tenon_content/{_builder.html.haml → _tenon_content.html.haml} +2 -2
- data/app/views/tenon/tenon_content/piece_types/form/_background_image.html.haml +6 -6
- data/app/views/tenon/tenon_content/piece_types/form/_embedded_content.html.haml +2 -1
- data/app/views/tenon/tenon_content/piece_types/form/_image.html.haml +37 -29
- data/app/views/tenon/tenon_content/row_types/display/_four_column_image.html.haml +4 -4
- data/app/views/tenon/tenon_content/row_types/display/_four_column_image_and_text.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/display/_four_column_text.html.haml +4 -4
- data/app/views/tenon/tenon_content/row_types/display/_full_width_embedded_content.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/display/_full_width_image.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/display/_full_width_text.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/display/_left_image_right_text.html.haml +8 -8
- data/app/views/tenon/tenon_content/row_types/display/_left_text_right_image.html.haml +7 -7
- data/app/views/tenon/tenon_content/row_types/display/_left_wrapped_image_with_text.html.haml +6 -6
- data/app/views/tenon/tenon_content/row_types/display/_right_wrapped_image_with_text.html.haml +7 -7
- data/app/views/tenon/tenon_content/row_types/display/_six_column_image.html.haml +4 -4
- data/app/views/tenon/tenon_content/row_types/display/_six_column_image_and_text.html.haml +5 -5
- data/app/views/tenon/tenon_content/row_types/display/_three_column_image.html.haml +4 -4
- data/app/views/tenon/tenon_content/row_types/display/_three_column_image_and_text.html.haml +4 -4
- data/app/views/tenon/tenon_content/row_types/display/_three_column_text.html.haml +4 -4
- data/app/views/tenon/tenon_content/row_types/display/_two_column_image.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/display/_two_column_image_and_text.html.haml +4 -4
- data/app/views/tenon/tenon_content/row_types/display/_two_column_text.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/display/_two_column_with_background_image.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/form/_four_column_image.html.haml +2 -2
- data/app/views/tenon/tenon_content/row_types/form/_four_column_image_and_text.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/form/_four_column_text.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/form/_full_width_embedded_content.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/form/_full_width_image.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/form/_full_width_text.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/form/_left_image_right_text.html.haml +9 -8
- data/app/views/tenon/tenon_content/row_types/form/_left_text_right_image.html.haml +6 -6
- data/app/views/tenon/tenon_content/row_types/form/_left_wrapped_image_with_text.html.haml +7 -7
- data/app/views/tenon/tenon_content/row_types/form/_right_wrapped_image_with_text.html.haml +7 -7
- data/app/views/tenon/tenon_content/row_types/form/_six_column_image.html.haml +2 -2
- data/app/views/tenon/tenon_content/row_types/form/_six_column_image_and_text.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/form/_three_column_image.html.haml +2 -2
- data/app/views/tenon/tenon_content/row_types/form/_three_column_image_and_text.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/form/_three_column_text.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/form/_two_column_image.html.haml +2 -2
- data/app/views/tenon/tenon_content/row_types/form/_two_column_image_and_text.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/form/_two_column_text.html.haml +3 -3
- data/app/views/tenon/tenon_content/row_types/form/_two_column_with_background_image.html.haml +2 -2
- data/config/initializers/class_extensions/hash.rb +1 -1
- data/config/initializers/client_side_validations.rb +27 -0
- data/config/initializers/tenon.rb +0 -14
- data/config/routes.rb +10 -46
- data/db/migrate/20151117171000_drop_default_tenon_resources.rb +15 -0
- data/db/migrate/20160119185645_remove_tenon_users.rb +7 -0
- data/db/migrate/20160126123154_remove_tenon_callouts_subscribers.rb +8 -0
- data/db/migrate/20160126194219_convert_piece_size_to_int.rb +6 -0
- data/lib/ckeditor/plugins/pastefromword/filter/default.js +1 -1
- data/lib/generators/tenon/scaffold/scaffold_generator.rb +52 -27
- data/lib/generators/tenon/scaffold/templates/controller.rb +7 -4
- data/lib/generators/tenon/scaffold/templates/policy.rb +2 -0
- data/lib/generators/tenon/scaffold/templates/serializer.rb +2 -0
- data/lib/generators/tenon/scaffold/templates/view__form.html.haml +49 -54
- data/lib/generators/tenon/scaffold/templates/view_edit.html.haml +1 -8
- data/lib/generators/tenon/scaffold/templates/view_index.html.haml +8 -24
- data/lib/generators/tenon/scaffold/templates/view_new.html.haml +1 -8
- data/lib/tasks/tenon_tasks.rake +2 -2
- data/lib/templates/active_record/model/model.rb +12 -13
- data/lib/templates/migration/templates/create_table_migration.rb +1 -1
- data/lib/tenon/can_be_foreign.rb +1 -1
- data/lib/tenon/engine.rb +26 -32
- data/lib/tenon/filterers/base_filterer.rb +64 -0
- data/lib/tenon/has_history/attr_serializer.rb +6 -6
- data/lib/tenon/proxy_attachment.rb +2 -2
- data/lib/tenon/version.rb +1 -1
- data/lib/tenon.rb +1 -3
- data/vendor/assets/javascripts/bootstrap.modal.js +1 -1
- data/vendor/assets/javascripts/date_picker/picker.date.js +1429 -0
- data/vendor/assets/javascripts/date_picker/picker.js +1122 -0
- data/vendor/assets/javascripts/number-to-words.es6 +35 -0
- data/vendor/assets/stylesheets/bootstrap.scss +1 -1
- metadata +206 -972
- data/app/assets/images/tenon/icons/delete.png +0 -0
- data/app/assets/images/tenon/icons/edit.png +0 -0
- data/app/assets/images/tenon/icons/thumbdown.png +0 -0
- data/app/assets/images/tenon/icons/thumbup.png +0 -0
- data/app/assets/images/tenon/select2-spinner.gif +0 -0
- data/app/assets/images/tenon/select2.png +0 -0
- data/app/assets/images/tenon/select2x2.png +0 -0
- data/app/assets/javascripts/tenon/controllers/assets.js.coffee +0 -3
- data/app/assets/javascripts/tenon/controllers/index.js.coffee +0 -6
- data/app/assets/javascripts/tenon/controllers/tenon.js.coffee +0 -1
- data/app/assets/javascripts/tenon/features/asset_attachment.js.coffee +0 -37
- data/app/assets/javascripts/tenon/features/asset_cropping.js.coffee +0 -49
- data/app/assets/javascripts/tenon/features/asset_detachment.js.coffee +0 -11
- data/app/assets/javascripts/tenon/features/asset_list_post_crop_handler.js.coffee +0 -15
- data/app/assets/javascripts/tenon/features/asset_uploader.js.coffee +0 -88
- data/app/assets/javascripts/tenon/features/box_toggles.js.coffee +0 -17
- data/app/assets/javascripts/tenon/features/cocoon_hooks.js.coffee +0 -12
- data/app/assets/javascripts/tenon/features/date_time_picker.js.coffee +0 -25
- data/app/assets/javascripts/tenon/features/editor.js.coffee +0 -24
- data/app/assets/javascripts/tenon/features/file_select_widget.js.erb +0 -39
- data/app/assets/javascripts/tenon/features/flash.js.coffee +0 -13
- data/app/assets/javascripts/tenon/features/focus_first_field.js.coffee +0 -8
- data/app/assets/javascripts/tenon/features/hamburger_navigation.js.coffee +0 -26
- data/app/assets/javascripts/tenon/features/header_menu.js.coffee +0 -20
- data/app/assets/javascripts/tenon/features/i18n_fields.js.coffee +0 -23
- data/app/assets/javascripts/tenon/features/infinite_loading.js.coffee +0 -12
- data/app/assets/javascripts/tenon/features/item_version_autosave.js.coffee +0 -35
- data/app/assets/javascripts/tenon/features/item_version_index_handler.js.coffee +0 -3
- data/app/assets/javascripts/tenon/features/main_menu.js.coffee +0 -11
- data/app/assets/javascripts/tenon/features/modal_forms.js.coffee +0 -44
- data/app/assets/javascripts/tenon/features/modal_windows.js.coffee +0 -104
- data/app/assets/javascripts/tenon/features/multiple_asset_attachment.js.coffee +0 -8
- data/app/assets/javascripts/tenon/features/nested_fields.js +0 -95
- data/app/assets/javascripts/tenon/features/nested_lists.js +0 -10
- data/app/assets/javascripts/tenon/features/nested_set_writer.js.coffee +0 -65
- data/app/assets/javascripts/tenon/features/new_item_version_handler.js.coffee +0 -32
- data/app/assets/javascripts/tenon/features/pagination.js.coffee +0 -21
- data/app/assets/javascripts/tenon/features/protect_changes.js.coffee +0 -25
- data/app/assets/javascripts/tenon/features/quick_search.js.coffee +0 -41
- data/app/assets/javascripts/tenon/features/record_approval.js.coffee +0 -33
- data/app/assets/javascripts/tenon/features/record_boolean_toggle.js.coffee +0 -37
- data/app/assets/javascripts/tenon/features/record_deletion.js.coffee +0 -24
- data/app/assets/javascripts/tenon/features/record_list.js.coffee +0 -86
- data/app/assets/javascripts/tenon/features/record_list_updater.js.coffee +0 -56
- data/app/assets/javascripts/tenon/features/s3_direct_upload.js.coffee +0 -43
- data/app/assets/javascripts/tenon/features/sidebar_active_links.js.coffee +0 -20
- data/app/assets/javascripts/tenon/features/sortable_nested_fields.js.coffee +0 -17
- data/app/assets/javascripts/tenon/features/tenon_content/aesthetics.js.coffee +0 -31
- data/app/assets/javascripts/tenon/features/tenon_content/asset_attachment.js.coffee +0 -15
- data/app/assets/javascripts/tenon/features/tenon_content/asset_link.js.coffee +0 -11
- data/app/assets/javascripts/tenon/features/tenon_content/base.js.coffee +0 -16
- data/app/assets/javascripts/tenon/features/tenon_content/bottombar_toggler.js.coffee +0 -15
- data/app/assets/javascripts/tenon/features/tenon_content/caption_toggler.js.coffee +0 -11
- data/app/assets/javascripts/tenon/features/tenon_content/column_sizing.js.coffee +0 -53
- data/app/assets/javascripts/tenon/features/tenon_content/column_swap.js.coffee +0 -44
- data/app/assets/javascripts/tenon/features/tenon_content/editor.js.coffee +0 -34
- data/app/assets/javascripts/tenon/features/tenon_content/embedded_content_modal_handler.js.coffee +0 -12
- data/app/assets/javascripts/tenon/features/tenon_content/image_asset_link.js.coffee +0 -5
- data/app/assets/javascripts/tenon/features/tenon_content/image_controls.js.coffee +0 -63
- data/app/assets/javascripts/tenon/features/tenon_content/image_links.js.coffee +0 -54
- data/app/assets/javascripts/tenon/features/tenon_content/library.js.coffee +0 -39
- data/app/assets/javascripts/tenon/features/tenon_content/library_filter.js.coffee +0 -17
- data/app/assets/javascripts/tenon/features/tenon_content/pop_out.js.coffee +0 -46
- data/app/assets/javascripts/tenon/features/tenon_content/post_crop_handler.js.coffee +0 -22
- data/app/assets/javascripts/tenon/features/tenon_content/sidebar_navigation.js.coffee +0 -26
- data/app/assets/javascripts/tenon/features/tenon_content/sortable.js.coffee +0 -18
- data/app/assets/javascripts/tenon/features/tenon_content/stretch_to_fill.js.coffee +0 -50
- data/app/assets/javascripts/tenon/features/tenon_content/wrapped_sizing.js.coffee +0 -48
- data/app/assets/javascripts/tenon/features/tenon_content.js.coffee +0 -1
- data/app/assets/javascripts/tenon/features/video_feeds.js.coffee +0 -4
- data/app/assets/javascripts/tenon/manifest.json +0 -44
- data/app/assets/javascripts/tenon/medium-on-tenon.js +0 -1465
- data/app/assets/javascripts/tenon/templates/assets/asset_field.jst.eco +0 -17
- data/app/assets/javascripts/tenon/templates/assets/asset_progress.jst.eco +0 -8
- data/app/assets/javascripts/tenon/templates/assets/asset_row.jst.eco +0 -21
- data/app/assets/javascripts/tenon/templates/assets/asset_select.jst.eco +0 -1
- data/app/assets/javascripts/tenon/templates/comments/comment_row.jst.eco +0 -23
- data/app/assets/javascripts/tenon/templates/contacts/contact_row.jst.eco +0 -56
- data/app/assets/javascripts/tenon/templates/errors.jst.eco +0 -13
- data/app/assets/javascripts/tenon/templates/events/event_row.jst.eco +0 -22
- data/app/assets/javascripts/tenon/templates/galleries/gallery_row.jst.eco +0 -12
- data/app/assets/javascripts/tenon/templates/item_versions/item_version_row.jst.eco +0 -22
- data/app/assets/javascripts/tenon/templates/modal.jst.eco +0 -14
- data/app/assets/javascripts/tenon/templates/pages/page_row.jst.eco +0 -21
- data/app/assets/javascripts/tenon/templates/post_categories/post_category_row.jst.eco +0 -12
- data/app/assets/javascripts/tenon/templates/posts/post_row.jst.eco +0 -30
- data/app/assets/javascripts/tenon/templates/redirects/redirect_row.jst.eco +0 -18
- data/app/assets/javascripts/tenon/templates/tenon_callouts/tenon_callout_row.jst.eco +0 -19
- data/app/assets/javascripts/tenon/templates/tenon_content/popped_out.jst.eco +0 -6
- data/app/assets/javascripts/tenon/templates/users/user_row.jst.eco +0 -21
- data/app/assets/javascripts/tenon/tenon.js +0 -68
- data/app/assets/javascripts/tenon/tenon_dispatcher.js.coffee +0 -25
- data/app/assets/javascripts/tenon/tenon_manifest.js +0 -45
- data/app/assets/stylesheets/tenon/colors-custom.scss +0 -25
- data/app/assets/stylesheets/tenon/colors-named.scss +0 -22
- data/app/assets/stylesheets/tenon/helpers.scss +0 -28
- data/app/assets/stylesheets/tenon/layout/assets.scss +0 -49
- data/app/assets/stylesheets/tenon/layout/breakpoints.scss +0 -48
- data/app/assets/stylesheets/tenon/layout/global.scss +0 -36
- data/app/assets/stylesheets/tenon/layout/grid.scss +0 -145
- data/app/assets/stylesheets/tenon/layout/main-nav.scss +0 -149
- data/app/assets/stylesheets/tenon/layout/margins.scss +0 -3
- data/app/assets/stylesheets/tenon/layout/mobile.scss +0 -5
- data/app/assets/stylesheets/tenon/layout/sidebar.scss +0 -102
- data/app/assets/stylesheets/tenon/layout/util-nav.scss +0 -51
- data/app/assets/stylesheets/tenon/mixins.scss +0 -81
- data/app/assets/stylesheets/tenon/styleguide.scss +0 -6
- data/app/assets/stylesheets/tenon/tenon.scss +0 -71
- data/app/assets/stylesheets/tenon/typography.scss +0 -65
- data/app/assets/stylesheets/tenon/ui/alerts.scss +0 -65
- data/app/assets/stylesheets/tenon/ui/asset-attachment.scss +0 -136
- data/app/assets/stylesheets/tenon/ui/asset-cropping.scss +0 -51
- data/app/assets/stylesheets/tenon/ui/asset-uploads.scss +0 -26
- data/app/assets/stylesheets/tenon/ui/buttons.scss +0 -65
- data/app/assets/stylesheets/tenon/ui/callouts.scss +0 -26
- data/app/assets/stylesheets/tenon/ui/comments.scss +0 -57
- data/app/assets/stylesheets/tenon/ui/forms.scss +0 -204
- data/app/assets/stylesheets/tenon/ui/generic-loader.scss +0 -21
- data/app/assets/stylesheets/tenon/ui/header-tools.scss +0 -116
- data/app/assets/stylesheets/tenon/ui/i18n.scss +0 -18
- data/app/assets/stylesheets/tenon/ui/list-style-toggle.scss +0 -39
- data/app/assets/stylesheets/tenon/ui/login.scss +0 -97
- data/app/assets/stylesheets/tenon/ui/medium-editor.scss +0 -114
- data/app/assets/stylesheets/tenon/ui/modals.scss +0 -179
- data/app/assets/stylesheets/tenon/ui/pagination.scss +0 -113
- data/app/assets/stylesheets/tenon/ui/progress-bars.scss +0 -131
- data/app/assets/stylesheets/tenon/ui/quick-search.scss +0 -20
- data/app/assets/stylesheets/tenon/ui/record-grids.scss +0 -95
- data/app/assets/stylesheets/tenon/ui/record-lists.scss +0 -154
- data/app/assets/stylesheets/tenon/ui/section-headers.scss +0 -30
- data/app/assets/stylesheets/tenon/ui/select2-custom.scss +0 -70
- data/app/assets/stylesheets/tenon/ui/tables.scss +0 -19
- data/app/assets/stylesheets/tenon/ui/tabs.scss +0 -7
- data/app/assets/stylesheets/tenon/ui/tenon-content-library.scss +0 -80
- data/app/assets/stylesheets/tenon/ui/tenon-content-popped-out.scss +0 -92
- data/app/assets/stylesheets/tenon/ui/tenon-content.scss +0 -318
- data/app/assets/stylesheets/tenon/ui/thinking.scss +0 -3
- data/app/assets/stylesheets/tenon/ui/toolbox.scss +0 -31
- data/app/assets/stylesheets/tenon/z-indexes.scss +0 -35
- data/app/assets/stylesheets/tenon_addons.scss +0 -1
- data/app/controllers/tenon/comments_controller.rb +0 -51
- data/app/controllers/tenon/contacts_controller.rb +0 -65
- data/app/controllers/tenon/events_controller.rb +0 -9
- data/app/controllers/tenon/galleries_controller.rb +0 -9
- data/app/controllers/tenon/pages_controller.rb +0 -51
- data/app/controllers/tenon/post_categories_controller.rb +0 -9
- data/app/controllers/tenon/posts_controller.rb +0 -28
- data/app/controllers/tenon/redirects_controller.rb +0 -25
- data/app/controllers/tenon/tenon_callouts_controller.rb +0 -7
- data/app/controllers/tenon/users_controller.rb +0 -64
- data/app/decorators/tenon/comment_decorator.rb +0 -22
- data/app/decorators/tenon/contact_decorator.rb +0 -13
- data/app/decorators/tenon/event_decorator.rb +0 -11
- data/app/decorators/tenon/gallery_decorator.rb +0 -4
- data/app/decorators/tenon/page_decorator.rb +0 -11
- data/app/decorators/tenon/post_category_decorator.rb +0 -4
- data/app/decorators/tenon/post_decorator.rb +0 -4
- data/app/decorators/tenon/redirect_decorator.rb +0 -2
- data/app/decorators/tenon/tenon_callout_decorator.rb +0 -4
- data/app/decorators/tenon/user_decorator.rb +0 -4
- data/app/mailers/tenon/comment_mailer.rb +0 -16
- data/app/mailers/tenon/contact_mailer.rb +0 -15
- data/app/models/ability.rb +0 -32
- data/app/models/tenon/comment.rb +0 -47
- data/app/models/tenon/comment_subscriber.rb +0 -7
- data/app/models/tenon/contact.rb +0 -46
- data/app/models/tenon/event.rb +0 -45
- data/app/models/tenon/gallery.rb +0 -15
- data/app/models/tenon/page.rb +0 -105
- data/app/models/tenon/photo.rb +0 -10
- data/app/models/tenon/post.rb +0 -35
- data/app/models/tenon/post_category.rb +0 -7
- data/app/models/tenon/redirect.rb +0 -17
- data/app/models/tenon/role.rb +0 -8
- data/app/models/tenon/role_assignment.rb +0 -6
- data/app/models/tenon/s3_direct_upload.rb +0 -75
- data/app/models/tenon/tenon_callout.rb +0 -16
- data/app/models/tenon/user.rb +0 -60
- data/app/views/devise/confirmations/new.html.erb +0 -12
- data/app/views/devise/confirmations/new.html.haml +0 -0
- data/app/views/devise/mailer/confirmation_instructions.html.haml +0 -7
- data/app/views/devise/mailer/reset_password_instructions.html.haml +0 -15
- data/app/views/devise/mailer/unlock_instructions.html.haml +0 -9
- data/app/views/devise/passwords/edit.html.haml +0 -22
- data/app/views/devise/passwords/new.html.haml +0 -17
- data/app/views/devise/registrations/edit.html.haml +0 -0
- data/app/views/devise/registrations/new.html.haml +0 -22
- data/app/views/devise/sessions/new.html.haml +0 -28
- data/app/views/devise/shared/_links.erb +0 -19
- data/app/views/devise/shared/_links.haml +0 -0
- data/app/views/devise/unlocks/new.html.erb +0 -12
- data/app/views/devise/unlocks/new.html.haml +0 -0
- data/app/views/layouts/tenon/login.html.haml +0 -19
- data/app/views/tenon/assets/_asset.json.jbuilder +0 -7
- data/app/views/tenon/assets/_sidebar_index.html.haml +0 -18
- data/app/views/tenon/assets/create.json.jbuilder +0 -1
- data/app/views/tenon/assets/index.json.jbuilder +0 -5
- data/app/views/tenon/assets/update.json.jbuilder +0 -1
- data/app/views/tenon/comment_mailer/comment_notification.html.haml +0 -7
- data/app/views/tenon/comments/_sidebar_index.html.haml +0 -22
- data/app/views/tenon/comments/index.html.haml +0 -19
- data/app/views/tenon/comments/index.json.jbuilder +0 -22
- data/app/views/tenon/contact_mailer/contact_notification.html.haml +0 -15
- data/app/views/tenon/contacts/_sidebar_index.html.haml +0 -32
- data/app/views/tenon/contacts/index.html.haml +0 -19
- data/app/views/tenon/contacts/index.json.jbuilder +0 -15
- data/app/views/tenon/events/_form.html.haml +0 -44
- data/app/views/tenon/events/edit.html.haml +0 -8
- data/app/views/tenon/events/index.html.haml +0 -23
- data/app/views/tenon/events/index.json.jbuilder +0 -16
- data/app/views/tenon/events/new.html.haml +0 -8
- data/app/views/tenon/galleries/_form.html.haml +0 -38
- data/app/views/tenon/galleries/_photo_fields.html.haml +0 -3
- data/app/views/tenon/galleries/edit.html.haml +0 -8
- data/app/views/tenon/galleries/index.html.haml +0 -22
- data/app/views/tenon/galleries/index.json.jbuilder +0 -15
- data/app/views/tenon/galleries/new.html.haml +0 -8
- data/app/views/tenon/pages/_form.html.haml +0 -58
- data/app/views/tenon/pages/edit.html.haml +0 -8
- data/app/views/tenon/pages/index.html.haml +0 -23
- data/app/views/tenon/pages/index.json.jbuilder +0 -22
- data/app/views/tenon/pages/new.html.haml +0 -8
- data/app/views/tenon/post_categories/_form.html.haml +0 -11
- data/app/views/tenon/post_categories/_post_category.json.jbuilder +0 -2
- data/app/views/tenon/post_categories/create.json.jbuilder +0 -1
- data/app/views/tenon/post_categories/edit.html.haml +0 -1
- data/app/views/tenon/post_categories/index.html.haml +0 -30
- data/app/views/tenon/post_categories/index.json.jbuilder +0 -5
- data/app/views/tenon/post_categories/update.json.jbuilder +0 -1
- data/app/views/tenon/posts/_form.html.haml +0 -65
- data/app/views/tenon/posts/edit.html.haml +0 -8
- data/app/views/tenon/posts/index.html.haml +0 -27
- data/app/views/tenon/posts/index.json.jbuilder +0 -20
- data/app/views/tenon/posts/new.html.haml +0 -8
- data/app/views/tenon/redirects/_form.html.haml +0 -42
- data/app/views/tenon/redirects/_redirect.json.jbuilder +0 -3
- data/app/views/tenon/redirects/edit.html.haml +0 -8
- data/app/views/tenon/redirects/index.html.haml +0 -29
- data/app/views/tenon/redirects/index.json.jbuilder +0 -5
- data/app/views/tenon/redirects/new.html.haml +0 -8
- data/app/views/tenon/shared/_posts_nav.html.haml +0 -8
- data/app/views/tenon/shared/menu_items/_assets.html.haml +0 -3
- data/app/views/tenon/shared/menu_items/_comments.html.haml +0 -2
- data/app/views/tenon/shared/menu_items/_events.html.haml +0 -6
- data/app/views/tenon/shared/menu_items/_galleries.html.haml +0 -6
- data/app/views/tenon/shared/menu_items/_pages.html.haml +0 -6
- data/app/views/tenon/shared/menu_items/_posts.html.haml +0 -7
- data/app/views/tenon/shared/menu_items/_settings.html.haml +0 -2
- data/app/views/tenon/shared/menu_items/_users.html.haml +0 -2
- data/app/views/tenon/shared/section_header/_quick_search.html.haml +0 -3
- data/app/views/tenon/shared/section_header/_sidebar_toggle.html.haml +0 -1
- data/app/views/tenon/tenon_callouts/_form.html.haml +0 -45
- data/app/views/tenon/tenon_callouts/_tenon_callout.json.jbuilder +0 -1
- data/app/views/tenon/tenon_callouts/edit.html.haml +0 -8
- data/app/views/tenon/tenon_callouts/index.html.haml +0 -24
- data/app/views/tenon/tenon_callouts/index.json.jbuilder +0 -5
- data/app/views/tenon/tenon_callouts/new.html.haml +0 -8
- data/app/views/tenon/users/_form.html.haml +0 -50
- data/app/views/tenon/users/edit.html.haml +0 -8
- data/app/views/tenon/users/index.html.haml +0 -23
- data/app/views/tenon/users/index.json.jbuilder +0 -28
- data/app/views/tenon/users/new.html.haml +0 -8
- data/config/initializers/devise.rb +0 -258
- data/config/locales/devise.en.yml +0 -60
- data/config/locales/tenon.en.yml +0 -313
- data/db/seeds.rb +0 -47
- data/lib/generators/tenon/scaffold/templates/view__item.json.jbuilder +0 -1
- data/lib/generators/tenon/scaffold/templates/view_index.json.jbuilder +0 -5
- data/lib/generators/tenon/scaffold/templates/view_item_row.jst.eco +0 -13
- data/lib/generators/tenon/scaffold_small/scaffold_small_generator.rb +0 -8
- data/lib/generators/tenon/scaffold_small/templates/controller.rb +0 -19
- data/lib/generators/tenon/scaffold_small/templates/decorator.rb +0 -2
- data/lib/generators/tenon/scaffold_small/templates/view__form.html.haml +0 -26
- data/lib/generators/tenon/scaffold_small/templates/view__item.json.jbuilder +0 -2
- data/lib/generators/tenon/scaffold_small/templates/view_create.json.jbuilder +0 -1
- data/lib/generators/tenon/scaffold_small/templates/view_index.html.haml +0 -27
- data/lib/generators/tenon/scaffold_small/templates/view_index.json.jbuilder +0 -5
- data/lib/generators/tenon/scaffold_small/templates/view_item_row.jst.eco +0 -12
- data/lib/generators/tenon/scaffold_small/templates/view_update.json.jbuilder +0 -1
- data/lib/tenon/can_have_comments.rb +0 -16
- data/lib/tenon/config/events.rb +0 -29
- data/lib/tenon/factories/comments.rb +0 -10
- data/lib/tenon/factories/contacts.rb +0 -9
- data/lib/tenon/factories/events.rb +0 -7
- data/lib/tenon/factories/galleries.rb +0 -5
- data/lib/tenon/factories/pages.rb +0 -5
- data/lib/tenon/factories/posts.rb +0 -10
- data/lib/tenon/factories/redirects.rb +0 -9
- data/lib/tenon/factories/tenon_callouts.rb +0 -9
- data/lib/tenon/factories/users.rb +0 -26
- data/lib/tenon/warning_generator.rb +0 -29
- data/spec/controllers/tenon/assets_controller_spec.rb +0 -262
- data/spec/controllers/tenon/comments_controller_spec.rb +0 -173
- data/spec/controllers/tenon/contacts_controller_spec.rb +0 -174
- data/spec/controllers/tenon/index_controller_spec.rb +0 -31
- data/spec/controllers/tenon/item_assets_controller_spec.rb +0 -29
- data/spec/controllers/tenon/pages_controller_spec.rb +0 -67
- data/spec/controllers/tenon/posts_controller_spec.rb +0 -31
- data/spec/controllers/tenon/resources_controller_spec.rb +0 -352
- data/spec/controllers/tenon/settings_controller_spec.rb +0 -65
- data/spec/controllers/tenon/simple_resources_controller_spec.rb +0 -42
- data/spec/controllers/tenon/users_controller_spec.rb +0 -112
- data/spec/decorators/tenon/application_decorator_spec.rb +0 -75
- data/spec/decorators/tenon/asset_decorator_spec.rb +0 -101
- data/spec/decorators/tenon/comment_decorator_spec.rb +0 -43
- data/spec/decorators/tenon/contact_decorator_spec.rb +0 -24
- data/spec/decorators/tenon/event_decorator_spec.rb +0 -26
- data/spec/decorators/tenon/page_decorator_spec.rb +0 -23
- data/spec/decorators/tenon/tenon_content/row_type_decorator_spec.rb +0 -20
- data/spec/features/settings_spec.rb +0 -75
- data/spec/features/tenon/assets_spec.rb +0 -88
- data/spec/features/tenon/comments_spec.rb +0 -51
- data/spec/features/tenon/contacts_spec.rb +0 -51
- data/spec/features/tenon/events_spec.rb +0 -104
- data/spec/features/tenon/galleries_spec.rb +0 -107
- data/spec/features/tenon/i18n_spec.rb +0 -106
- data/spec/features/tenon/pages_spec.rb +0 -97
- data/spec/features/tenon/post_categories_spec.rb +0 -91
- data/spec/features/tenon/posts_spec.rb +0 -93
- data/spec/features/tenon/tenon_callouts_spec.rb +0 -101
- data/spec/features/tenon/users_spec.rb +0 -98
- data/spec/fixtures/files/test.png +0 -0
- data/spec/lib/tenon/asset_style_generator_spec.rb +0 -84
- data/spec/lib/tenon/can_be_foreign_spec.rb +0 -20
- data/spec/lib/tenon/can_have_comments_spec.rb +0 -22
- data/spec/lib/tenon/has_asset_spec.rb +0 -46
- data/spec/lib/tenon/has_history/attr_serializer_spec.rb +0 -63
- data/spec/lib/tenon/i18n_lookup_spec.rb +0 -88
- data/spec/lib/tenon/proxy_attachment_spec.rb +0 -96
- data/spec/lib/tenon/reorderable_spec.rb +0 -25
- data/spec/lib/tenon/tenon_content_spec.rb +0 -22
- data/spec/lib/tenon/warning_generator_spec.rb +0 -153
- data/spec/models/tenon/asset_spec.rb +0 -98
- data/spec/models/tenon/comment_spec.rb +0 -81
- data/spec/models/tenon/contact_spec.rb +0 -62
- data/spec/models/tenon/event_spec.rb +0 -79
- data/spec/models/tenon/gallery_spec.rb +0 -12
- data/spec/models/tenon/item_asset_spec.rb +0 -19
- data/spec/models/tenon/my_settings_spec.rb +0 -27
- data/spec/models/tenon/page_spec.rb +0 -60
- data/spec/models/tenon/post_spec.rb +0 -48
- data/spec/models/tenon/redirect_spec.rb +0 -31
- data/spec/models/tenon/tenon_callout_spec.rb +0 -10
- data/spec/models/tenon/tenon_content/row_spec.rb +0 -34
- data/spec/models/tenon/user_spec.rb +0 -59
- data/spec/services/tenon/redirector_spec.rb +0 -30
- data/spec/spec_helper.rb +0 -79
- data/spec/support/integration_example_group.rb +0 -35
- data/spec/support/request_helpers.rb +0 -10
- data/vendor/assets/javascripts/backstretch.js +0 -4
- data/vendor/assets/javascripts/bootstrap.collapse.js +0 -179
- data/vendor/assets/javascripts/bootstrap.datetimepicker.js +0 -954
- data/vendor/assets/javascripts/bootstrap.tabs.js +0 -135
- data/vendor/assets/javascripts/cufon/Aller_400.font.js +0 -7
- data/vendor/assets/javascripts/cufon/Aller_700.font.js +0 -7
- data/vendor/assets/javascripts/cufon/cufon.js +0 -7
- data/vendor/assets/javascripts/jquery.corner.js +0 -249
- data/vendor/assets/javascripts/jquery.hoverIntent.js +0 -115
- data/vendor/assets/javascripts/jquery.radioSlider.js +0 -55
- data/vendor/assets/javascripts/jscrollpane.js +0 -1435
- data/vendor/assets/javascripts/select2.js +0 -3
- data/vendor/assets/javascripts/underscore.inflection.js +0 -177
- data/vendor/assets/stylesheets/bootstrap.datetimepicker.css +0 -152
- data/vendor/assets/stylesheets/bootstrap.tables.scss +0 -201
- data/vendor/assets/stylesheets/jscrollpane.scss +0 -20
- data/vendor/assets/stylesheets/select2.css +0 -1
@@ -1,29 +0,0 @@
|
|
1
|
-
module Tenon
|
2
|
-
class WarningGenerator
|
3
|
-
def self.generate(root_path)
|
4
|
-
new.warnings(root_path)
|
5
|
-
end
|
6
|
-
|
7
|
-
def warnings(root_path)
|
8
|
-
warnings = []
|
9
|
-
warnings << "Your site needs a title.<br /><br /><a class='btn btn-comp btn-block' href='#{root_path}settings'>OK</a>".html_safe if Tenon::MySettings.site_title.blank?
|
10
|
-
warnings << "Your site needs an address.<br /><br /><a class='btn btn-comp btn-block' href='#{root_path}settings'>OK</a>".html_safe if Tenon::MySettings.site_url.blank?
|
11
|
-
warnings << "You haven't entered an email address to receive contact messages.<br /><br /><a class='btn btn-comp btn-block' href='#{root_path}settings'>Correct This</a>".html_safe if Tenon::MySettings.contact_email.blank?
|
12
|
-
warnings << "You haven't entered an email address from which to send contact messages and other site notices.<br /><br /><a class='btn btn-comp btn-block' href='#{root_path}settings'>Correct This</a>".html_safe if Tenon::MySettings.from_email.blank?
|
13
|
-
warnings << "You haven't entered the Google Analytics code.<br /><br /><a class='btn btn-comp btn-block' href='#{root_path}settings'>Correct This</a>".html_safe if Tenon::MySettings.google_analytics.blank?
|
14
|
-
warnings << 'You have not included a custom favicon.' unless favicon && favicon.size > 0
|
15
|
-
warnings
|
16
|
-
end
|
17
|
-
|
18
|
-
private
|
19
|
-
|
20
|
-
def favicon
|
21
|
-
return @favicon if @favicon
|
22
|
-
begin
|
23
|
-
@favicon = File.read(File.join(Rails.root, 'public', 'favicon.ico'))
|
24
|
-
rescue Errno::ENOENT
|
25
|
-
@favicon = nil
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
@@ -1,262 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Tenon::AssetsController do
|
4
|
-
routes { Tenon::Engine.routes }
|
5
|
-
|
6
|
-
let(:asset) { double.as_null_object }
|
7
|
-
|
8
|
-
let(:user) do
|
9
|
-
double(
|
10
|
-
:staff? => true,
|
11
|
-
:is_super_admin? => false,
|
12
|
-
:is_admin? => true
|
13
|
-
)
|
14
|
-
end
|
15
|
-
|
16
|
-
before do
|
17
|
-
controller.stub(:current_user) { user }
|
18
|
-
controller.stub(:polymorphic_index_path) { '/tenon/asset-library' }
|
19
|
-
end
|
20
|
-
|
21
|
-
describe 'GET index.html' do
|
22
|
-
it 'should render the index template' do
|
23
|
-
get :index, format: 'html'
|
24
|
-
expect(response).to render_template('index')
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
describe 'GET index.json' do
|
29
|
-
before do
|
30
|
-
[:all, :where, :with_type, :paginate].each do |query|
|
31
|
-
Tenon::Asset.stub(query) { Tenon::Asset }
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
context 'without params[:q] and without params[:type]' do
|
36
|
-
it 'should find, paginate, and decorate the Assets' do
|
37
|
-
expect(Tenon::Asset).to receive(:all) { Tenon::Asset }
|
38
|
-
expect(Tenon::Asset).to receive(:paginate) { Tenon::Asset }
|
39
|
-
expect(Tenon::PaginatingDecorator).to receive(:decorate).with(Tenon::Asset)
|
40
|
-
get :index, format: 'json'
|
41
|
-
end
|
42
|
-
|
43
|
-
it "shouldn't search or sort the assets by type" do
|
44
|
-
expect(Tenon::Asset).not_to receive(:where)
|
45
|
-
expect(Tenon::Asset).not_to receive(:with_type)
|
46
|
-
get :index, format: 'json'
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
context 'with params[:q] = "search"' do
|
51
|
-
it 'should search the assets with the query' do
|
52
|
-
args = [
|
53
|
-
'attachment_file_name ILIKE :q OR title ILIKE :q',
|
54
|
-
{ q: '%search%' }
|
55
|
-
]
|
56
|
-
expect(Tenon::Asset).to receive(:where).with(args)
|
57
|
-
get :index, format: 'json', q: 'search'
|
58
|
-
end
|
59
|
-
|
60
|
-
it 'should not sort the assets by type' do
|
61
|
-
expect(Tenon::Asset).not_to receive(:with_type)
|
62
|
-
get :index, format: 'json', q: 'search'
|
63
|
-
end
|
64
|
-
end
|
65
|
-
|
66
|
-
context 'with params[:type] = "images"' do
|
67
|
-
it 'should search the assets with the type' do
|
68
|
-
expect(Tenon::Asset).to receive(:with_type).with('images')
|
69
|
-
get :index, format: 'json', type: 'images'
|
70
|
-
end
|
71
|
-
|
72
|
-
it 'should not search the assets by type' do
|
73
|
-
expect(Tenon::Asset).not_to receive(:where)
|
74
|
-
get :index, format: 'json', type: 'images'
|
75
|
-
end
|
76
|
-
end
|
77
|
-
|
78
|
-
context 'with params[:q] = "search" and params[:type] = "images"' do
|
79
|
-
it 'should search the assets and sort them by type' do
|
80
|
-
args = [
|
81
|
-
'attachment_file_name ILIKE :q OR title ILIKE :q',
|
82
|
-
{ q: '%search%' }
|
83
|
-
]
|
84
|
-
expect(Tenon::Asset).to receive(:where).with(args)
|
85
|
-
expect(Tenon::Asset).to receive(:with_type).with('images')
|
86
|
-
get :index, format: 'json', type: 'images', q: 'search'
|
87
|
-
end
|
88
|
-
end
|
89
|
-
end
|
90
|
-
|
91
|
-
describe 'GET edit' do
|
92
|
-
before do
|
93
|
-
Tenon::Asset.stub(:find)
|
94
|
-
end
|
95
|
-
|
96
|
-
it 'should not render the layout' do
|
97
|
-
get :edit, id: 1
|
98
|
-
expect(response).to render_template(layout: false)
|
99
|
-
end
|
100
|
-
end
|
101
|
-
|
102
|
-
describe 'GET crop' do
|
103
|
-
before do
|
104
|
-
Tenon::Asset.stub(:find)
|
105
|
-
end
|
106
|
-
|
107
|
-
it 'should not render the layout' do
|
108
|
-
get :crop, id: 1
|
109
|
-
expect(response).to render_template(layout: false)
|
110
|
-
end
|
111
|
-
end
|
112
|
-
|
113
|
-
describe 'POST create' do
|
114
|
-
let(:params) { { 'test' => 'test' } }
|
115
|
-
it 'should instantiate an Asset' do
|
116
|
-
expect(Tenon::Asset).to receive(:new).with(params) { double.as_null_object }
|
117
|
-
post :create, asset: params
|
118
|
-
end
|
119
|
-
|
120
|
-
it 'should attempt to save it' do
|
121
|
-
Tenon::Asset.stub(:new) { asset }
|
122
|
-
expect(asset).to receive(:save)
|
123
|
-
post :create, asset: params
|
124
|
-
end
|
125
|
-
|
126
|
-
context 'with a valid Asset' do
|
127
|
-
before do
|
128
|
-
Tenon::Asset.stub(:new) { asset }
|
129
|
-
asset.stub(:save) { true }
|
130
|
-
end
|
131
|
-
|
132
|
-
it 'should set flash[:notice]' do
|
133
|
-
post :create, asset: params
|
134
|
-
expect(controller.flash[:notice]).not_to be_nil
|
135
|
-
end
|
136
|
-
|
137
|
-
it "should redirect to '/tenon/asset-library'" do
|
138
|
-
post :create, asset: params
|
139
|
-
expect(response).to redirect_to '/tenon/asset-library'
|
140
|
-
end
|
141
|
-
end
|
142
|
-
|
143
|
-
context 'with an invalid Asset' do
|
144
|
-
before do
|
145
|
-
Tenon::Asset.stub(:new) { asset }
|
146
|
-
asset.stub(:save) { false }
|
147
|
-
asset.stub(:errors) { { anything: 'will do' } }
|
148
|
-
end
|
149
|
-
|
150
|
-
it 'should not set flash[:notice]' do
|
151
|
-
post :create, asset: params, format: 'json'
|
152
|
-
expect(controller.flash[:notice]).to be_nil
|
153
|
-
end
|
154
|
-
|
155
|
-
it 'should render the errors' do
|
156
|
-
post :create, asset: params, format: 'json'
|
157
|
-
expect(JSON.parse(response.body).keys).to include('errors')
|
158
|
-
end
|
159
|
-
end
|
160
|
-
end
|
161
|
-
|
162
|
-
describe 'PATCH update' do
|
163
|
-
before do
|
164
|
-
Tenon::Asset.stub(:find) { double.as_null_object }
|
165
|
-
end
|
166
|
-
|
167
|
-
it 'should find an asset' do
|
168
|
-
expect(Tenon::Asset).to receive(:find).with('1')
|
169
|
-
patch :update, asset: { test: 'test' }, id: 1
|
170
|
-
end
|
171
|
-
|
172
|
-
context 'when creating a duplicate' do
|
173
|
-
let(:existing_asset) { double(attachment: 'test') }
|
174
|
-
let(:new_asset) { double(:cropping? => false).as_null_object }
|
175
|
-
let(:params) { { 'test' => 'test', 'duplicate' => '1' } }
|
176
|
-
|
177
|
-
before do
|
178
|
-
Tenon::Asset.stub(:find) { existing_asset }
|
179
|
-
Tenon::Asset.stub(:new) { new_asset }
|
180
|
-
end
|
181
|
-
|
182
|
-
it 'should create a new asset' do
|
183
|
-
expect(Tenon::Asset).to receive(:new).with(params)
|
184
|
-
patch :update, asset: params, id: 1
|
185
|
-
end
|
186
|
-
|
187
|
-
it "should copy the existing asset's attachment to the new asset" do
|
188
|
-
expect(new_asset).to receive(:attachment=).with(existing_asset.attachment)
|
189
|
-
patch :update, asset: params, id: 1
|
190
|
-
end
|
191
|
-
|
192
|
-
it 'should save and reset the crop field on the new asset' do
|
193
|
-
expect(new_asset).to receive(:save)
|
194
|
-
expect(new_asset).to receive(:crop_x=) { nil }
|
195
|
-
patch :update, asset: params, id: 1
|
196
|
-
end
|
197
|
-
|
198
|
-
it 'should not be reprocessed again' do
|
199
|
-
attachment = double
|
200
|
-
new_asset.stub(:attachment) { attachment }
|
201
|
-
expect(attachment).not_to receive(:reprocess!)
|
202
|
-
patch :update, asset: params, id: 1
|
203
|
-
end
|
204
|
-
|
205
|
-
it 'should be decorated' do
|
206
|
-
expect(new_asset).to receive(:decorate)
|
207
|
-
patch :update, asset: params, id: 1
|
208
|
-
end
|
209
|
-
|
210
|
-
it 'should render success' do
|
211
|
-
patch :update, asset: params, id: 1, format: 'json'
|
212
|
-
expect(response).to be_success
|
213
|
-
end
|
214
|
-
end
|
215
|
-
|
216
|
-
context 'when not creating a duplicate' do
|
217
|
-
let(:existing_asset) do
|
218
|
-
double(attachment: 'test', :cropping? => cropping).as_null_object
|
219
|
-
end
|
220
|
-
let(:params) { { 'test' => 'test' } }
|
221
|
-
let(:cropping) { nil }
|
222
|
-
|
223
|
-
before do
|
224
|
-
Tenon::Asset.stub(:find) { existing_asset }
|
225
|
-
end
|
226
|
-
|
227
|
-
it 'should attempt to update the attributes' do
|
228
|
-
expect(existing_asset).to receive(:update_attributes).with(params)
|
229
|
-
patch :update, asset: params, id: 1
|
230
|
-
end
|
231
|
-
|
232
|
-
it 'should decorate the asset' do
|
233
|
-
expect(existing_asset).to receive(:decorate)
|
234
|
-
patch :update, asset: params, id: 1
|
235
|
-
end
|
236
|
-
|
237
|
-
it 'should render success' do
|
238
|
-
patch :update, asset: params, id: 1, format: 'json'
|
239
|
-
expect(response).to be_success
|
240
|
-
end
|
241
|
-
|
242
|
-
context 'when not cropping' do
|
243
|
-
it 'should not reprocess the asset' do
|
244
|
-
attachment = double
|
245
|
-
existing_asset.stub(:attachment) { attachment }
|
246
|
-
expect(attachment).not_to receive(:reprocess!)
|
247
|
-
patch :update, asset: params, id: 1
|
248
|
-
end
|
249
|
-
end
|
250
|
-
|
251
|
-
context 'when cropping' do
|
252
|
-
let(:cropping) { true }
|
253
|
-
it 'should reprocess the asset' do
|
254
|
-
attachment = double
|
255
|
-
existing_asset.stub(:attachment) { attachment }
|
256
|
-
expect(attachment).to receive(:reprocess!)
|
257
|
-
patch :update, asset: params, id: 1
|
258
|
-
end
|
259
|
-
end
|
260
|
-
end
|
261
|
-
end
|
262
|
-
end
|
@@ -1,173 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Tenon::CommentsController do
|
4
|
-
routes { Tenon::Engine.routes }
|
5
|
-
|
6
|
-
let(:user) do
|
7
|
-
double(
|
8
|
-
:staff? => true,
|
9
|
-
:is_super_admin? => false,
|
10
|
-
:is_admin? => true
|
11
|
-
)
|
12
|
-
end
|
13
|
-
|
14
|
-
let(:comment) { double.as_null_object }
|
15
|
-
|
16
|
-
before do
|
17
|
-
controller.stub(:current_user) { user }
|
18
|
-
controller.stub(:polymorphic_index_path) { '/tenon/comments' }
|
19
|
-
|
20
|
-
end
|
21
|
-
|
22
|
-
describe 'GET index.html' do
|
23
|
-
it 'should get the comment counts' do
|
24
|
-
expect(Tenon::Comment).to receive(:count) { [] }
|
25
|
-
expect(Tenon::Comment).to receive(:approved) { [] }
|
26
|
-
expect(Tenon::Comment).to receive(:unapproved) { [] }
|
27
|
-
get :index, format: 'html'
|
28
|
-
end
|
29
|
-
|
30
|
-
it 'should assign the comment counts' do
|
31
|
-
get :index, format: 'html'
|
32
|
-
expect(assigns[:counts]).not_to be_nil
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
describe 'GET index.json' do
|
37
|
-
before do
|
38
|
-
[:all, :where, :approved, :unapproved, :paginate].each do |query|
|
39
|
-
Tenon::Comment.stub(query) { Tenon::Comment }
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
context 'without params[:q] and without params[:type]' do
|
44
|
-
it 'should find and paginate, and decorate the Comments' do
|
45
|
-
expect(Tenon::Comment).to receive(:all) { Tenon::Comment }
|
46
|
-
expect(Tenon::Comment).to receive(:paginate) { Tenon::Comment }
|
47
|
-
expect(Tenon::PaginatingDecorator).to receive(:decorate).with(Tenon::Comment)
|
48
|
-
get :index, format: 'json'
|
49
|
-
end
|
50
|
-
|
51
|
-
it "shouldn't search or sort the comments by type" do
|
52
|
-
expect(Tenon::Comment).not_to receive(:where)
|
53
|
-
expect(Tenon::Comment).not_to receive(:approved)
|
54
|
-
expect(Tenon::Comment).not_to receive(:unapproved)
|
55
|
-
get :index, format: 'json'
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
context 'with params[:q] = "search"' do
|
60
|
-
it 'should search the comments with the query' do
|
61
|
-
args = [
|
62
|
-
'author ILIKE :q OR author_url ILIKE :q OR author_email ILIKE :q OR content ILIKE :q OR user_ip ILIKE :q',
|
63
|
-
{ q: '%search%' }
|
64
|
-
]
|
65
|
-
expect(Tenon::Comment).to receive(:all) { Tenon::Comment }
|
66
|
-
expect(Tenon::Comment).to receive(:where).with(args) { Tenon::Comment }
|
67
|
-
get :index, format: 'json', q: 'search'
|
68
|
-
end
|
69
|
-
|
70
|
-
it 'should not sort the comments by type' do
|
71
|
-
expect(Tenon::Comment).not_to receive(:with_type)
|
72
|
-
get :index, format: 'json', q: 'search'
|
73
|
-
end
|
74
|
-
end
|
75
|
-
|
76
|
-
%w(approved unapproved).each do |type|
|
77
|
-
context "with params[:type] = #{type}" do
|
78
|
-
it 'should search the comments with the type' do
|
79
|
-
expect(Tenon::Comment).to receive(type)
|
80
|
-
get :index, format: 'json', type: type
|
81
|
-
end
|
82
|
-
|
83
|
-
it 'should not search the comments by type' do
|
84
|
-
expect(Tenon::Comment).not_to receive(:where)
|
85
|
-
get :index, format: 'json', type: 'images'
|
86
|
-
end
|
87
|
-
end
|
88
|
-
|
89
|
-
context "with params[:q] = 'search' and params[:type] = '#{type}'" do
|
90
|
-
it 'should search the comments and sort them by type' do
|
91
|
-
args = [
|
92
|
-
'author ILIKE :q OR author_url ILIKE :q OR author_email ILIKE :q OR content ILIKE :q OR user_ip ILIKE :q',
|
93
|
-
{ q: '%search%' }
|
94
|
-
]
|
95
|
-
expect(Tenon::Comment).to receive(:where).with(args)
|
96
|
-
expect(Tenon::Comment).to receive(type)
|
97
|
-
get :index, format: 'json', type: type, q: 'search'
|
98
|
-
end
|
99
|
-
end
|
100
|
-
end
|
101
|
-
end
|
102
|
-
|
103
|
-
%w(toggle_approved).each do |action|
|
104
|
-
describe "GET #{action}.json" do
|
105
|
-
let(:comment) { double }
|
106
|
-
before { Tenon::Comment.stub(:find) { comment } }
|
107
|
-
|
108
|
-
context 'when successful' do
|
109
|
-
before do
|
110
|
-
comment.stub("#{action}!") { true }
|
111
|
-
end
|
112
|
-
|
113
|
-
it 'should render the comment to json' do
|
114
|
-
get action, id: 1, format: 'json'
|
115
|
-
expect(response.body).to eq double.to_json
|
116
|
-
end
|
117
|
-
|
118
|
-
it 'should be successful' do
|
119
|
-
get action, id: 1, format: 'json'
|
120
|
-
expect(response).to be_success
|
121
|
-
end
|
122
|
-
end
|
123
|
-
|
124
|
-
context 'when not successful' do
|
125
|
-
before do
|
126
|
-
comment.stub("#{action}!") { false }
|
127
|
-
end
|
128
|
-
|
129
|
-
it 'should return an error' do
|
130
|
-
get action, id: 1, format: 'json'
|
131
|
-
expect(response).not_to be_success
|
132
|
-
end
|
133
|
-
end
|
134
|
-
end
|
135
|
-
|
136
|
-
describe "GET #{action}.html" do
|
137
|
-
let(:comment) { double }
|
138
|
-
before { Tenon::Comment.stub(:find) { comment } }
|
139
|
-
|
140
|
-
context 'when successful' do
|
141
|
-
before do
|
142
|
-
comment.stub("#{action}!") { true }
|
143
|
-
end
|
144
|
-
|
145
|
-
it 'should set the flash[:notice]' do
|
146
|
-
get action, id: 1, format: 'html'
|
147
|
-
expect(controller.flash[:notice]).not_to be_blank
|
148
|
-
end
|
149
|
-
|
150
|
-
it 'should redirect to index' do
|
151
|
-
get action, id: 1, format: 'html'
|
152
|
-
expect(response).to redirect_to '/tenon/comments'
|
153
|
-
end
|
154
|
-
end
|
155
|
-
|
156
|
-
context 'when not successful' do
|
157
|
-
before do
|
158
|
-
comment.stub("#{action}!") { false }
|
159
|
-
end
|
160
|
-
|
161
|
-
it 'should set the flash[:warning]' do
|
162
|
-
get action, id: 1, format: 'html'
|
163
|
-
expect(controller.flash[:warning]).not_to be_blank
|
164
|
-
end
|
165
|
-
|
166
|
-
it 'should redirect to index' do
|
167
|
-
get action, id: 1, format: 'html'
|
168
|
-
expect(response).to redirect_to '/tenon/comments'
|
169
|
-
end
|
170
|
-
end
|
171
|
-
end
|
172
|
-
end
|
173
|
-
end
|
@@ -1,174 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Tenon::ContactsController do
|
4
|
-
routes { Tenon::Engine.routes }
|
5
|
-
|
6
|
-
let(:user) do
|
7
|
-
double(
|
8
|
-
:staff? => true,
|
9
|
-
:is_super_admin? => false,
|
10
|
-
:is_admin? => true
|
11
|
-
)
|
12
|
-
end
|
13
|
-
|
14
|
-
let(:contact) { double.as_null_object }
|
15
|
-
|
16
|
-
before do
|
17
|
-
controller.stub(:current_user) { user }
|
18
|
-
controller.stub(:polymorphic_index_path) { '/tenon/contacts' }
|
19
|
-
end
|
20
|
-
|
21
|
-
describe 'GET index.html' do
|
22
|
-
it 'should get the contact counts' do
|
23
|
-
expect(Tenon::Contact).to receive(:count) { [] }
|
24
|
-
expect(Tenon::Contact).to receive(:read) { [] }
|
25
|
-
expect(Tenon::Contact).to receive(:unread) { [] }
|
26
|
-
expect(Tenon::Contact).to receive(:replied) { [] }
|
27
|
-
expect(Tenon::Contact).to receive(:unreplied) { [] }
|
28
|
-
get :index, format: 'html'
|
29
|
-
end
|
30
|
-
|
31
|
-
it 'should assign the contact counts' do
|
32
|
-
get :index, format: 'html'
|
33
|
-
expect(assigns[:counts]).not_to be_nil
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
|
-
describe 'GET index.json' do
|
38
|
-
before do
|
39
|
-
[:all, :where, :approved, :unapproved, :paginate].each do |query|
|
40
|
-
Tenon::Contact.stub(query) { Tenon::Contact }
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
context 'without params[:q] and without params[:type]' do
|
45
|
-
it 'should find and paginate, and decorate the Comments' do
|
46
|
-
expect(Tenon::Contact).to receive(:all) { Tenon::Contact }
|
47
|
-
expect(Tenon::Contact).to receive(:paginate) { Tenon::Contact }
|
48
|
-
expect(Tenon::PaginatingDecorator).to receive(:decorate).with(Tenon::Contact)
|
49
|
-
get :index, format: 'json'
|
50
|
-
end
|
51
|
-
|
52
|
-
it "shouldn't search or sort the contacts by type" do
|
53
|
-
expect(Tenon::Contact).not_to receive(:where)
|
54
|
-
expect(Tenon::Contact).not_to receive(:approved)
|
55
|
-
expect(Tenon::Contact).not_to receive(:unapproved)
|
56
|
-
get :index, format: 'json'
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
context 'with params[:q] = "search"' do
|
61
|
-
it 'should search the contacts with the query' do
|
62
|
-
args = [
|
63
|
-
'name ILIKE :q OR email ILIKE :q OR phone ILIKE :q OR content ILIKE :q OR user_ip ILIKE :q',
|
64
|
-
{ q: '%search%' }
|
65
|
-
]
|
66
|
-
expect(Tenon::Contact).to receive(:all) { Tenon::Contact }
|
67
|
-
expect(Tenon::Contact).to receive(:where).with(args) { Tenon::Contact }
|
68
|
-
get :index, format: 'json', q: 'search'
|
69
|
-
end
|
70
|
-
|
71
|
-
it 'should not sort the contacts by type' do
|
72
|
-
expect(Tenon::Contact).not_to receive(:with_type)
|
73
|
-
get :index, format: 'json', q: 'search'
|
74
|
-
end
|
75
|
-
end
|
76
|
-
|
77
|
-
%w(read unread replied unreplied).each do |type|
|
78
|
-
context "with params[:type] = #{type}" do
|
79
|
-
it 'should search the contacts with the type' do
|
80
|
-
expect(Tenon::Contact).to receive(type) { Tenon::Contact }
|
81
|
-
get :index, format: 'json', type: type
|
82
|
-
end
|
83
|
-
|
84
|
-
it 'should not search the contacts by type' do
|
85
|
-
expect(Tenon::Contact).not_to receive(:where)
|
86
|
-
get :index, format: 'json', type: 'images'
|
87
|
-
end
|
88
|
-
end
|
89
|
-
|
90
|
-
context "with params[:q] = 'search' and params[:type] = '#{type}'" do
|
91
|
-
it 'should search the contacts and sort them by type' do
|
92
|
-
args = [
|
93
|
-
'name ILIKE :q OR email ILIKE :q OR phone ILIKE :q OR content ILIKE :q OR user_ip ILIKE :q',
|
94
|
-
{ q: '%search%' }
|
95
|
-
]
|
96
|
-
expect(Tenon::Contact).to receive(:where).with(args) { Tenon::Contact }
|
97
|
-
expect(Tenon::Contact).to receive(type) { Tenon::Contact }
|
98
|
-
get :index, format: 'json', type: type, q: 'search'
|
99
|
-
end
|
100
|
-
end
|
101
|
-
end
|
102
|
-
end
|
103
|
-
|
104
|
-
%w(toggle_read toggle_replied).each do |action|
|
105
|
-
describe "GET #{action}.json" do
|
106
|
-
let(:contact) { double }
|
107
|
-
before { Tenon::Contact.stub(:find) { contact } }
|
108
|
-
|
109
|
-
context 'when successful' do
|
110
|
-
before do
|
111
|
-
contact.stub("#{action}!") { true }
|
112
|
-
end
|
113
|
-
|
114
|
-
it 'should render the contact to json' do
|
115
|
-
get action, id: 1, format: 'json'
|
116
|
-
expect(response.body).to eq double.to_json
|
117
|
-
end
|
118
|
-
|
119
|
-
it 'should be successful' do
|
120
|
-
get action, id: 1, format: 'json'
|
121
|
-
expect(response).to be_success
|
122
|
-
end
|
123
|
-
end
|
124
|
-
|
125
|
-
context 'when not successful' do
|
126
|
-
before do
|
127
|
-
contact.stub("#{action}!") { false }
|
128
|
-
end
|
129
|
-
|
130
|
-
it 'should return an error' do
|
131
|
-
get action, id: 1, format: 'json'
|
132
|
-
expect(response).not_to be_success
|
133
|
-
end
|
134
|
-
end
|
135
|
-
end
|
136
|
-
|
137
|
-
describe "GET #{action}.html" do
|
138
|
-
let(:contact) { double }
|
139
|
-
before { Tenon::Contact.stub(:find) { contact } }
|
140
|
-
|
141
|
-
context 'when successful' do
|
142
|
-
before do
|
143
|
-
contact.stub("#{action}!") { true }
|
144
|
-
end
|
145
|
-
|
146
|
-
it 'should set the flash[:notice]' do
|
147
|
-
get action, id: 1, format: 'html'
|
148
|
-
expect(controller.flash[:notice]).not_to be_blank
|
149
|
-
end
|
150
|
-
|
151
|
-
it 'should redirect to index' do
|
152
|
-
get action, id: 1, format: 'html'
|
153
|
-
expect(response).to redirect_to '/tenon/contacts'
|
154
|
-
end
|
155
|
-
end
|
156
|
-
|
157
|
-
context 'when not successful' do
|
158
|
-
before do
|
159
|
-
contact.stub("#{action}!") { false }
|
160
|
-
end
|
161
|
-
|
162
|
-
it 'should set the flash[:warning]' do
|
163
|
-
get action, id: 1, format: 'html'
|
164
|
-
expect(controller.flash[:warning]).not_to be_blank
|
165
|
-
end
|
166
|
-
|
167
|
-
it 'should redirect to index' do
|
168
|
-
get action, id: 1, format: 'html'
|
169
|
-
expect(response).to redirect_to '/tenon/contacts'
|
170
|
-
end
|
171
|
-
end
|
172
|
-
end
|
173
|
-
end
|
174
|
-
end
|
@@ -1,31 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Tenon::IndexController do
|
4
|
-
routes { Tenon::Engine.routes }
|
5
|
-
|
6
|
-
let(:user) do
|
7
|
-
double(
|
8
|
-
:staff? => true,
|
9
|
-
:is_super_admin? => false,
|
10
|
-
:is_admin? => true
|
11
|
-
)
|
12
|
-
end
|
13
|
-
let(:generator) { double(generate: 'test') }
|
14
|
-
|
15
|
-
before do
|
16
|
-
controller.stub(:current_user) { user }
|
17
|
-
stub_const('Tenon::WarningGenerator', generator)
|
18
|
-
end
|
19
|
-
|
20
|
-
describe 'GET index' do
|
21
|
-
it 'should assign the warnings from the Tenon::WarningGenerator' do
|
22
|
-
get :index
|
23
|
-
expect(assigns[:warnings]).to eq Tenon::WarningGenerator.generate
|
24
|
-
end
|
25
|
-
|
26
|
-
it 'should assign the callouts' do
|
27
|
-
get :index
|
28
|
-
expect(assigns[:tenon_callouts]).to eq Tenon::TenonCallout.published
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
@@ -1,29 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Tenon::ItemAssetsController do
|
4
|
-
routes { Tenon::Engine.routes }
|
5
|
-
|
6
|
-
let(:user) do
|
7
|
-
double(
|
8
|
-
:staff? => true,
|
9
|
-
:is_super_admin? => false,
|
10
|
-
:is_admin? => true
|
11
|
-
)
|
12
|
-
end
|
13
|
-
|
14
|
-
before do
|
15
|
-
controller.stub(:current_user) { user }
|
16
|
-
end
|
17
|
-
|
18
|
-
describe 'GET new' do
|
19
|
-
it 'should assign @multiple to params[:multiple]' do
|
20
|
-
get :new, multiple: '1'
|
21
|
-
expect(assigns[:multiple]).to eq('1')
|
22
|
-
end
|
23
|
-
|
24
|
-
it 'should not render a layout' do
|
25
|
-
get :new
|
26
|
-
expect(response).to render_template(layout: false)
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|