card 1.16.6 → 1.16.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardoc/checksums +234 -49
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/VERSION +1 -1
- data/config/initializers/mime_types.rb +3 -3
- data/config/initializers/notification.rb +1 -1
- data/db/migrate/20121118115000_update_link_type.rb +8 -8
- data/db/migrate/20130411210957_update_codenames.rb +2 -2
- data/db/migrate/20140822073704_create_new_revision_tables.rb +12 -13
- data/db/migrate/20141001105348_move_revisions_to_actions.rb +16 -16
- data/db/migrate/20141121172918_rename_card_migration_table.rb +4 -4
- data/db/migrate_core_cards/20130419215612_import_help_text.rb +3 -3
- data/db/migrate_core_cards/20130823192433_add_style_cards.rb +45 -47
- data/db/migrate_core_cards/20130910183318_move_styles_to_content.rb +1 -1
- data/db/migrate_core_cards/20130920214038_jsonize_tinymce.rb +3 -3
- data/db/migrate_core_cards/20130920291703_update_stylesheets.rb +3 -3
- data/db/migrate_core_cards/20130927191728_account_events.rb +6 -6
- data/db/migrate_core_cards/20131016172445_common_css_patch.rb +1 -1
- data/db/migrate_core_cards/20140110193325_reset_account_request_type.rb +1 -1
- data/db/migrate_core_cards/20140307231621_user_data_to_cards.rb +19 -19
- data/db/migrate_core_cards/20140317035504_account_requests_to_signups.rb +11 -12
- data/db/migrate_core_cards/20140512155840_add_script_cards.rb +35 -36
- data/db/migrate_core_cards/20140629222005_add_email_cards.rb +55 -55
- data/db/migrate_core_cards/20140725180118_config_card_updates.rb +1 -1
- data/db/migrate_core_cards/20141111083921_delete_machine_output.rb +2 -2
- data/db/migrate_core_cards/20141115034214_config_descriptions_etc.rb +3 -3
- data/db/migrate_core_cards/20141120120605_fix_notification_html_message.rb +2 -2
- data/db/migrate_core_cards/20141204061304_watchers_to_following.rb +8 -8
- data/db/migrate_core_cards/20141208162106_add_ace_script.rb +2 -2
- data/db/migrate_core_cards/20141216155251_add_more_following_cards.rb +16 -16
- data/db/migrate_core_cards/20141230204340_uri_codename.rb +1 -1
- data/db/migrate_core_cards/20150202143810_import_bootstrap_layout.rb +19 -19
- data/db/migrate_core_cards/20150220134731_following_to_follow_rule.rb +3 -3
- data/db/migrate_core_cards/20150317162412_bootstrap_themes.rb +15 -15
- data/db/migrate_core_cards/20150326205655_bootswatch_themes.rb +11 -11
- data/db/migrate_core_cards/20150331135745_new_card_menu.rb +1 -1
- data/db/migrate_core_cards/20150429090551_search_card_context.rb +1 -1
- data/db/migrate_core_cards/20150508212032_menu_compatibility.rb +3 -3
- data/db/migrate_core_cards/20150510031118_fix_skin_images.rb +1 -1
- data/db/migrate_core_cards/20150528084659_add_session_cardtype.rb +4 -4
- data/db/migrate_core_cards/20150601133433_add_recent_setting_session_card.rb +5 -5
- data/db/migrate_core_cards/20150605115802_add_performance_log_card.rb +1 -1
- data/db/migrate_core_cards/20150610171702_add_debugger_session_card.rb +2 -2
- data/db/migrate_core_cards/20150611203506_rails_inflection_updates.rb +5 -5
- data/db/migrate_core_cards/20150627205133_fix_script_bootstrap_card_type.rb +1 -1
- data/db/migrate_core_cards/20150702130543_remove_edit_toolbar_pinned.rb +1 -1
- data/db/migrate_core_cards/20150724123438_update_file_and_image_cards.rb +5 -5
- data/db/migrate_core_cards/20150807205221_create_references_for_search_cards.rb +1 -1
- data/db/migrate_core_cards/20150824135418_update_file_history.rb +3 -3
- data/db/migrate_core_cards/20150903130006_attachment_upload_cards.rb +2 -2
- data/db/migrate_core_cards/20150910085603_remove_performance_log_card.rb +1 -1
- data/lib/card.rb +4 -4
- data/lib/card/active_record_ext.rb +8 -8
- data/lib/card/auth.rb +6 -6
- data/lib/card/cache.rb +1 -1
- data/lib/card/chunk.rb +1 -1
- data/lib/card/content.rb +1 -1
- data/lib/card/diff.rb +10 -10
- data/lib/card/env.rb +1 -1
- data/lib/card/format.rb +12 -12
- data/lib/card/loader.rb +1 -1
- data/lib/card/migration.rb +1 -1
- data/lib/card/name.rb +4 -4
- data/lib/card/query.rb +255 -61
- data/lib/card/query/attributes.rb +310 -0
- data/lib/card/query/clause.rb +12 -15
- data/lib/card/query/join.rb +73 -0
- data/lib/card/query/reference.rb +51 -0
- data/lib/card/query/sql_statement.rb +228 -0
- data/lib/card/query/value.rb +66 -0
- data/lib/card/reference.rb +6 -6
- data/lib/card/set.rb +12 -12
- data/lib/card/set_pattern.rb +9 -9
- data/lib/card/spec_helper.rb +5 -5
- data/lib/card/success.rb +1 -1
- data/lib/cardio.rb +7 -7
- data/lib/generators/card/format/format_generator.rb +3 -3
- data/lib/generators/card/migration/migration_generator.rb +5 -5
- data/lib/generators/card/set/set_generator.rb +4 -4
- data/mod/01_core/chunk/include.rb +4 -4
- data/mod/01_core/chunk/link.rb +5 -5
- data/mod/01_core/chunk/literal.rb +2 -2
- data/mod/01_core/chunk/query_reference.rb +8 -8
- data/mod/01_core/chunk/uri.rb +18 -18
- data/mod/01_core/format/html_format.rb +4 -4
- data/mod/01_core/set/all/active_card.rb +2 -2
- data/mod/01_core/set/all/collection.rb +21 -26
- data/mod/01_core/set/all/content.rb +2 -2
- data/mod/01_core/set/all/fetch.rb +6 -6
- data/mod/01_core/set/all/initialize.rb +4 -4
- data/mod/01_core/set/all/location_history.rb +2 -2
- data/mod/01_core/set/all/name.rb +14 -14
- data/mod/01_core/set/all/pattern.rb +1 -1
- data/mod/01_core/set/all/permissions.rb +12 -12
- data/mod/01_core/set/all/phases.rb +29 -12
- data/mod/01_core/set/all/references.rb +14 -14
- data/mod/01_core/set/all/rules.rb +8 -8
- data/mod/01_core/set/all/templating.rb +10 -9
- data/mod/01_core/set/all/tracked_attributes.rb +7 -7
- data/mod/01_core/set/all/trash.rb +6 -6
- data/mod/01_core/set/all/type.rb +7 -7
- data/mod/01_core/set/all/utils.rb +4 -4
- data/mod/01_core/set/all/view_cache.rb +1 -1
- data/mod/01_core/set_pattern/02_all_plus.rb +2 -2
- data/mod/01_core/set_pattern/03_type.rb +1 -1
- data/mod/01_core/set_pattern/04_star.rb +1 -1
- data/mod/01_core/set_pattern/05_rstar.rb +2 -2
- data/mod/01_core/set_pattern/06_right.rb +4 -4
- data/mod/01_core/set_pattern/07_type_plus_right.rb +4 -4
- data/mod/01_core/set_pattern/08_self.rb +1 -1
- data/mod/01_core/spec/chunk/uri_spec.rb +73 -73
- data/mod/01_core/spec/format/html_format_spec.rb +5 -5
- data/mod/01_core/spec/set/all/attribute_tracking_spec.rb +1 -1
- data/mod/01_core/spec/set/all/collection_spec.rb +22 -22
- data/mod/01_core/spec/set/all/content_spec.rb +1 -1
- data/mod/01_core/spec/set/all/fetch_spec.rb +24 -24
- data/mod/01_core/spec/set/all/initialize_spec.rb +9 -9
- data/mod/01_core/spec/set/all/name_spec.rb +8 -8
- data/mod/01_core/spec/set/all/pattern_spec.rb +10 -10
- data/mod/01_core/spec/set/all/permissions_spec.rb +45 -45
- data/mod/01_core/spec/set/all/references_spec.rb +1 -1
- data/mod/01_core/spec/set/all/rules2_spec.rb +15 -15
- data/mod/01_core/spec/set/all/rules_spec.rb +37 -37
- data/mod/01_core/spec/set/all/templating_spec.rb +21 -21
- data/mod/01_core/spec/set/all/tracked_attributes_spec.rb +55 -55
- data/mod/01_core/spec/set/all/trash_spec.rb +4 -4
- data/mod/01_core/spec/set/all/type_spec.rb +15 -15
- data/mod/01_history/lib/card/act.rb +2 -2
- data/mod/01_history/lib/card/action.rb +22 -22
- data/mod/01_history/lib/card/change.rb +1 -1
- data/mod/01_history/set/all/actions.rb +2 -2
- data/mod/01_history/set/all/content_history.rb +4 -4
- data/mod/01_history/set/all/history.rb +46 -46
- data/mod/02_basic_types/set/all/all_css.rb +10 -10
- data/mod/02_basic_types/set/all/all_csv.rb +7 -7
- data/mod/02_basic_types/set/all/base.rb +25 -25
- data/mod/02_basic_types/set/all/json.rb +16 -16
- data/mod/02_basic_types/set/all/rss.rb +7 -7
- data/mod/02_basic_types/set/type/html.rb +2 -2
- data/mod/02_basic_types/set/type/plain_text.rb +1 -1
- data/mod/02_basic_types/set/type/pointer.rb +39 -31
- data/mod/02_basic_types/spec/set/all/all_css_spec.rb +1 -1
- data/mod/02_basic_types/spec/set/all/all_csv_spec.rb +1 -1
- data/mod/02_basic_types/spec/set/all/base_spec.rb +18 -18
- data/mod/02_basic_types/spec/set/all/json_spec.rb +4 -4
- data/mod/02_basic_types/spec/set/all/rss_spec.rb +8 -2
- data/mod/02_basic_types/spec/set/type/plain_text_spec.rb +1 -1
- data/mod/02_basic_types/spec/set/type/pointer_spec.rb +54 -44
- data/mod/03_machines/lib/card/machine.rb +46 -29
- data/mod/03_machines/lib/card/machine_input.rb +34 -10
- data/mod/03_machines/set/type/coffee_script.rb +3 -3
- data/mod/03_machines/set/type/css.rb +8 -8
- data/mod/03_machines/set/type/java_script.rb +4 -4
- data/mod/03_machines/set/type/scss.rb +2 -2
- data/mod/03_machines/set/type/skin.rb +1 -1
- data/mod/03_machines/spec/lib/shared_machine_examples.rb +27 -27
- data/mod/03_machines/spec/lib/shared_machine_input_examples.rb +8 -8
- data/mod/03_machines/spec/set/type/coffeescript_spec.rb +6 -6
- data/mod/03_machines/spec/set/type/css_spec.rb +9 -9
- data/mod/03_machines/spec/set/type/javascript_spec.rb +6 -6
- data/mod/03_machines/spec/set/type/scss_spec.rb +5 -5
- data/mod/03_machines/spec/set/type/skin_spec.rb +25 -25
- data/mod/04_settings/lib/card/setting.rb +11 -11
- data/mod/04_settings/set/abstract/permission.rb +9 -9
- data/mod/04_settings/set/right/script.rb +1 -1
- data/mod/04_settings/set/right/structure.rb +0 -5
- data/mod/04_settings/set/right/style.rb +2 -2
- data/mod/04_settings/set/self/accountable.rb +1 -1
- data/mod/04_settings/set/self/add_help.rb +1 -1
- data/mod/04_settings/set/self/autoname.rb +1 -1
- data/mod/04_settings/set/self/captcha.rb +1 -1
- data/mod/04_settings/set/self/create.rb +1 -1
- data/mod/04_settings/set/self/default.rb +1 -1
- data/mod/04_settings/set/self/delete.rb +1 -1
- data/mod/04_settings/set/self/help.rb +1 -1
- data/mod/04_settings/set/self/input.rb +1 -1
- data/mod/04_settings/set/self/layout.rb +1 -1
- data/mod/04_settings/set/self/on_create.rb +1 -1
- data/mod/04_settings/set/self/on_delete.rb +1 -1
- data/mod/04_settings/set/self/on_update.rb +1 -1
- data/mod/04_settings/set/self/options.rb +1 -1
- data/mod/04_settings/set/self/options_label.rb +1 -1
- data/mod/04_settings/set/self/read.rb +1 -1
- data/mod/04_settings/set/self/script.rb +1 -1
- data/mod/04_settings/set/self/structure.rb +1 -1
- data/mod/04_settings/set/self/style.rb +1 -1
- data/mod/04_settings/set/self/table_of_contents.rb +1 -1
- data/mod/04_settings/set/self/thanks.rb +1 -1
- data/mod/04_settings/set/self/update.rb +1 -1
- data/mod/04_settings/set/type/setting.rb +14 -14
- data/mod/04_settings/spec/set/right/comment_spec.rb +5 -5
- data/mod/04_settings/spec/set/right/create_spec.rb +1 -1
- data/mod/04_settings/spec/set/right/script_spec.rb +5 -5
- data/mod/04_settings/spec/set/right/structure_spec.rb +4 -2
- data/mod/04_settings/spec/set/right/style_spec.rb +7 -7
- data/mod/04_settings/spec/set/type/setting_spec.rb +2 -2
- data/mod/05_email/lib/card/follow_option.rb +24 -24
- data/mod/05_email/set/all/follow.rb +24 -16
- data/mod/05_email/set/all/notify.rb +25 -23
- data/mod/05_email/set/all/observer.rb +5 -5
- data/mod/05_email/set/right/bcc.rb +8 -8
- data/mod/05_email/set/right/follow.rb +44 -17
- data/mod/05_email/set/right/follow_fields.rb +1 -1
- data/mod/05_email/set/right/following.rb +49 -40
- data/mod/05_email/set/self/always.rb +2 -2
- data/mod/05_email/set/self/created.rb +1 -1
- data/mod/05_email/set/self/edited.rb +4 -4
- data/mod/05_email/set/self/follow.rb +1 -1
- data/mod/05_email/set/self/follow_defaults.rb +9 -9
- data/mod/05_email/set/self/never.rb +1 -1
- data/mod/05_email/set/type/email_template.rb +9 -9
- data/mod/05_email/set/type_plus_right/user/follow.rb +16 -16
- data/mod/05_email/spec/set/all/follow_spec.rb +10 -10
- data/mod/05_email/spec/set/all/notify_spec.rb +82 -82
- data/mod/05_email/spec/set/all/observer_spec.rb +16 -16
- data/mod/05_email/spec/set/right/followers_spec.rb +6 -6
- data/mod/05_email/spec/set/self/follow_defaults_spec.rb +2 -2
- data/mod/05_standard/lib/carrier_wave/cardmount.rb +5 -5
- data/mod/05_standard/lib/image_uploader.rb +8 -8
- data/mod/05_standard/set/abstract/attachment.rb +18 -18
- data/mod/05_standard/set/all/account.rb +5 -5
- data/mod/05_standard/set/all/comment.rb +7 -7
- data/mod/05_standard/set/all/error.rb +25 -25
- data/mod/05_standard/set/all/event_viz.rb +1 -1
- data/mod/05_standard/set/all/links.rb +9 -9
- data/mod/05_standard/set/all/rich_html/content.rb +34 -34
- data/mod/05_standard/set/all/rich_html/editing.rb +35 -35
- data/mod/05_standard/set/all/rich_html/form.rb +20 -20
- data/mod/05_standard/set/all/rich_html/header.rb +8 -8
- data/mod/05_standard/set/all/rich_html/menu.rb +33 -33
- data/mod/05_standard/set/all/rich_html/modal.rb +16 -16
- data/mod/05_standard/set/all/rich_html/toolbar.rb +63 -63
- data/mod/05_standard/set/all/rich_html/wrapper.rb +8 -8
- data/mod/05_standard/set/right/account.rb +27 -27
- data/mod/05_standard/set/right/email.rb +5 -5
- data/mod/05_standard/set/right/password.rb +5 -5
- data/mod/05_standard/set/rstar/rules.rb +52 -52
- data/mod/05_standard/set/self/account_links.rb +27 -27
- data/mod/05_standard/set/self/all.rb +1 -1
- data/mod/05_standard/set/self/head.rb +5 -5
- data/mod/05_standard/set/self/navbox.rb +11 -11
- data/mod/05_standard/set/self/recent.rb +2 -2
- data/mod/05_standard/set/self/search.rb +13 -13
- data/mod/05_standard/set/self/signin.rb +19 -19
- data/mod/05_standard/set/self/stats.rb +2 -2
- data/mod/05_standard/set/type/basic.rb +1 -1
- data/mod/05_standard/set/type/cardtype.rb +5 -5
- data/mod/05_standard/set/type/date.rb +1 -1
- data/mod/05_standard/set/type/file.rb +7 -7
- data/mod/05_standard/set/type/image.rb +8 -8
- data/mod/05_standard/set/type/number.rb +2 -2
- data/mod/05_standard/set/type/phrase.rb +1 -1
- data/mod/05_standard/set/type/search_type.rb +27 -21
- data/mod/05_standard/set/type/session.rb +2 -2
- data/mod/05_standard/set/type/set.rb +37 -37
- data/mod/05_standard/set/type/signup.rb +25 -25
- data/mod/05_standard/set/type/uri.rb +1 -1
- data/mod/05_standard/set/type/user.rb +21 -21
- data/mod/05_standard/spec/chunk/include_spec.rb +16 -16
- data/mod/05_standard/spec/chunk/link_spec.rb +18 -18
- data/mod/05_standard/spec/chunk/query_reference_spec.rb +1 -1
- data/mod/05_standard/spec/set/all/account_spec.rb +7 -7
- data/mod/05_standard/spec/set/all/email_html_spec.rb +3 -3
- data/mod/05_standard/spec/set/all/history_spec.rb +14 -14
- data/mod/05_standard/spec/set/all/rich_html/editing_spec.rb +1 -1
- data/mod/05_standard/spec/set/all/rich_html/form_spec.rb +2 -2
- data/mod/05_standard/spec/set/right/account_spec.rb +9 -9
- data/mod/05_standard/spec/set/right/email_spec.rb +8 -8
- data/mod/05_standard/spec/set/right/password_spec.rb +9 -9
- data/mod/05_standard/spec/set/right/stats_spec.rb +1 -1
- data/mod/05_standard/spec/set/right/when_created_spec.rb +1 -1
- data/mod/05_standard/spec/set/right/when_last_edited_spec.rb +1 -1
- data/mod/05_standard/spec/set/rstar/rules_spec.rb +2 -2
- data/mod/05_standard/spec/set/self/account_links_spec.rb +2 -2
- data/mod/05_standard/spec/set/self/all_spec.rb +8 -11
- data/mod/05_standard/spec/set/self/head_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/navbox_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/now_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/stats_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/version_spec.rb +1 -1
- data/mod/05_standard/spec/set/type/email_template_spec.rb +25 -25
- data/mod/05_standard/spec/set/type/file_spec.rb +4 -4
- data/mod/05_standard/spec/set/type/html_spec.rb +3 -3
- data/mod/05_standard/spec/set/type/image_spec.rb +6 -6
- data/mod/05_standard/spec/set/type/layout_type_spec.rb +1 -1
- data/mod/05_standard/spec/set/type/search_type_spec.rb +10 -10
- data/mod/05_standard/spec/set/type/signup_spec.rb +11 -11
- data/mod/05_standard/spec/set/type/toggle_spec.rb +2 -2
- data/mod/05_standard/spec/set/type/uri_spec.rb +9 -9
- data/mod/06_bootstrap/set/all/bootstrap/helper.rb +10 -10
- data/mod/06_bootstrap/set/all/bootstrap/wrapper.rb +4 -4
- data/mod/06_bootstrap/set/all/rich_bootstrap.rb +1 -1
- data/spec/lib/card/action_spec.rb +2 -2
- data/spec/lib/card/cache_spec.rb +7 -7
- data/spec/lib/card/content_spec.rb +31 -37
- data/spec/lib/card/diff_spec.rb +56 -56
- data/spec/lib/card/format_spec.rb +11 -11
- data/spec/lib/card/query_spec.rb +382 -265
- data/spec/lib/card/reference_spec.rb +133 -140
- data/spec/lib/card/set_pattern_spec.rb +10 -9
- data/spec/lib/card/set_spec.rb +11 -11
- data/spec/lib/card/success_spec.rb +16 -8
- data/spec/mailers/mailer_spec.rb +5 -5
- data/spec/models/card/cardtype_spec.rb +20 -20
- data/spec/models/card/create_spec.rb +6 -6
- data/spec/models/card/trash_spec.rb +20 -20
- data/spec/models/card/type_transition_spec.rb +3 -3
- data/spec/models/card/validation_spec.rb +5 -5
- data/spec/models/card_spec.rb +24 -24
- data/spec/spec_helper.rb +5 -5
- data/tmpsets/set/mod001-01_core/all/active_card.rb +2 -2
- data/tmpsets/set/mod001-01_core/all/collection.rb +23 -26
- data/tmpsets/set/mod001-01_core/all/content.rb +2 -2
- data/tmpsets/set/mod001-01_core/all/fetch.rb +6 -6
- data/tmpsets/set/mod001-01_core/all/initialize.rb +8 -4
- data/tmpsets/set/mod001-01_core/all/name.rb +14 -14
- data/tmpsets/set/mod001-01_core/all/pattern.rb +1 -1
- data/tmpsets/set/mod001-01_core/all/permissions.rb +12 -12
- data/tmpsets/set/mod001-01_core/all/phases.rb +31 -13
- data/tmpsets/set/mod001-01_core/all/references.rb +14 -14
- data/tmpsets/set/mod001-01_core/all/rules.rb +8 -10
- data/tmpsets/set/mod001-01_core/all/templating.rb +10 -9
- data/tmpsets/set/mod001-01_core/all/tracked_attributes.rb +7 -7
- data/tmpsets/set/mod001-01_core/all/trash.rb +9 -8
- data/tmpsets/set/mod001-01_core/all/type.rb +7 -7
- data/tmpsets/set/mod001-01_core/all/utils.rb +16 -4
- data/tmpsets/set/mod001-01_core/all/view_cache.rb +1 -1
- data/tmpsets/set/mod002-01_history/all/actions.rb +2 -2
- data/tmpsets/set/mod002-01_history/all/content_history.rb +11 -7
- data/tmpsets/set/mod002-01_history/all/history.rb +46 -46
- data/tmpsets/set/mod003-02_basic_types/all/all_css.rb +10 -10
- data/tmpsets/set/mod003-02_basic_types/all/all_csv.rb +7 -7
- data/tmpsets/set/mod003-02_basic_types/all/base.rb +25 -25
- data/tmpsets/set/mod003-02_basic_types/all/json.rb +16 -16
- data/tmpsets/set/mod003-02_basic_types/all/rss.rb +7 -7
- data/tmpsets/set/mod003-02_basic_types/type/html.rb +2 -2
- data/tmpsets/set/mod003-02_basic_types/type/plain_text.rb +1 -1
- data/tmpsets/set/mod003-02_basic_types/type/pointer.rb +38 -31
- data/tmpsets/set/mod004-03_machines/right/machine_output.rb +4 -0
- data/tmpsets/set/mod004-03_machines/type/coffee_script.rb +3 -3
- data/tmpsets/set/mod004-03_machines/type/css.rb +8 -8
- data/tmpsets/set/mod004-03_machines/type/java_script.rb +4 -4
- data/tmpsets/set/mod004-03_machines/type/scss.rb +2 -2
- data/tmpsets/set/mod004-03_machines/type/skin.rb +1 -1
- data/tmpsets/set/mod005-04_settings/abstract/permission.rb +9 -9
- data/tmpsets/set/mod005-04_settings/right/script.rb +1 -1
- data/tmpsets/set/mod005-04_settings/right/structure.rb +0 -5
- data/tmpsets/set/mod005-04_settings/right/style.rb +2 -2
- data/tmpsets/set/mod005-04_settings/self/accountable.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/add_help.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/autoname.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/captcha.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/create.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/default.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/delete.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/help.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/input.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/layout.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/on_create.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/on_delete.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/on_update.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/options.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/options_label.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/read.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/script.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/structure.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/style.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/table_of_contents.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/thanks.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/update.rb +1 -1
- data/tmpsets/set/mod005-04_settings/type/setting.rb +14 -14
- data/tmpsets/set/mod006-05_email/all/follow.rb +24 -16
- data/tmpsets/set/mod006-05_email/all/notify.rb +25 -23
- data/tmpsets/set/mod006-05_email/all/observer.rb +8 -8
- data/tmpsets/set/mod006-05_email/right/bcc.rb +8 -8
- data/tmpsets/set/mod006-05_email/right/follow.rb +44 -17
- data/tmpsets/set/mod006-05_email/right/follow_fields.rb +1 -1
- data/tmpsets/set/mod006-05_email/right/following.rb +49 -40
- data/tmpsets/set/mod006-05_email/self/always.rb +2 -2
- data/tmpsets/set/mod006-05_email/self/created.rb +1 -1
- data/tmpsets/set/mod006-05_email/self/edited.rb +4 -4
- data/tmpsets/set/mod006-05_email/self/follow.rb +1 -1
- data/tmpsets/set/mod006-05_email/self/follow_defaults.rb +9 -9
- data/tmpsets/set/mod006-05_email/self/never.rb +1 -1
- data/tmpsets/set/mod006-05_email/type/email_template.rb +9 -9
- data/tmpsets/set/mod006-05_email/type_plus_right/user/follow.rb +17 -17
- data/tmpsets/set/mod007-05_standard/abstract/attachment.rb +98 -46
- data/tmpsets/set/mod007-05_standard/all/account.rb +5 -5
- data/tmpsets/set/mod007-05_standard/all/comment.rb +7 -7
- data/tmpsets/set/mod007-05_standard/all/error.rb +26 -26
- data/tmpsets/set/mod007-05_standard/all/event_viz.rb +1 -1
- data/tmpsets/set/mod007-05_standard/all/links.rb +10 -9
- data/tmpsets/set/mod007-05_standard/all/rich_html/content.rb +34 -34
- data/tmpsets/set/mod007-05_standard/all/rich_html/editing.rb +35 -35
- data/tmpsets/set/mod007-05_standard/all/rich_html/form.rb +20 -20
- data/tmpsets/set/mod007-05_standard/all/rich_html/header.rb +8 -8
- data/tmpsets/set/mod007-05_standard/all/rich_html/menu.rb +33 -33
- data/tmpsets/set/mod007-05_standard/all/rich_html/modal.rb +16 -16
- data/tmpsets/set/mod007-05_standard/all/rich_html/toolbar.rb +63 -63
- data/tmpsets/set/mod007-05_standard/all/rich_html/wrapper.rb +8 -8
- data/tmpsets/set/mod007-05_standard/right/account.rb +27 -27
- data/tmpsets/set/mod007-05_standard/right/email.rb +5 -5
- data/tmpsets/set/mod007-05_standard/right/password.rb +5 -5
- data/tmpsets/set/mod007-05_standard/rstar/rules.rb +52 -52
- data/tmpsets/set/mod007-05_standard/self/account_links.rb +27 -27
- data/tmpsets/set/mod007-05_standard/self/all.rb +1 -1
- data/tmpsets/set/mod007-05_standard/self/head.rb +5 -5
- data/tmpsets/set/mod007-05_standard/self/navbox.rb +11 -11
- data/tmpsets/set/mod007-05_standard/self/recent.rb +2 -2
- data/tmpsets/set/mod007-05_standard/self/search.rb +13 -13
- data/tmpsets/set/mod007-05_standard/self/signin.rb +19 -19
- data/tmpsets/set/mod007-05_standard/self/stats.rb +2 -2
- data/tmpsets/set/mod007-05_standard/type/basic.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/cardtype.rb +5 -5
- data/tmpsets/set/mod007-05_standard/type/date.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/file.rb +23 -8
- data/tmpsets/set/mod007-05_standard/type/image.rb +10 -8
- data/tmpsets/set/mod007-05_standard/type/number.rb +2 -2
- data/tmpsets/set/mod007-05_standard/type/phrase.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/search_type.rb +21 -19
- data/tmpsets/set/mod007-05_standard/type/session.rb +2 -2
- data/tmpsets/set/mod007-05_standard/type/set.rb +37 -37
- data/tmpsets/set/mod007-05_standard/type/signup.rb +25 -25
- data/tmpsets/set/mod007-05_standard/type/uri.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/user.rb +21 -21
- data/tmpsets/set/mod008-06_bootstrap/all/bootstrap/helper.rb +10 -10
- data/tmpsets/set/mod008-06_bootstrap/all/bootstrap/wrapper.rb +4 -4
- data/tmpsets/set/mod008-06_bootstrap/all/rich_bootstrap.rb +1 -1
- data/tmpsets/set_pattern/101-all_plus.rb +2 -2
- data/tmpsets/set_pattern/102-type.rb +1 -1
- data/tmpsets/set_pattern/103-star.rb +1 -1
- data/tmpsets/set_pattern/104-rstar.rb +2 -2
- data/tmpsets/set_pattern/105-right.rb +4 -4
- data/tmpsets/set_pattern/106-type_plus_right.rb +4 -4
- data/tmpsets/set_pattern/107-self.rb +1 -1
- metadata +7 -5
- data/lib/card/query/card_clause.rb +0 -528
- data/lib/card/query/ref_clause.rb +0 -47
- data/lib/card/query/value_clause.rb +0 -65
@@ -18,7 +18,7 @@ machine_input do
|
|
18
18
|
Uglifier.compile( compile_coffee format(:js)._render_raw )
|
19
19
|
end
|
20
20
|
|
21
|
-
store_machine_output :
|
21
|
+
store_machine_output filetype: 'js'
|
22
22
|
|
23
23
|
def clean_html?
|
24
24
|
false
|
@@ -33,7 +33,7 @@ end
|
|
33
33
|
|
34
34
|
|
35
35
|
format :html do
|
36
|
-
view :editor, :
|
36
|
+
view :editor, mod: Html::HtmlFormat
|
37
37
|
|
38
38
|
view :content_changes do |args|
|
39
39
|
%{
|
@@ -57,5 +57,5 @@ format do
|
|
57
57
|
end
|
58
58
|
|
59
59
|
def diff_args
|
60
|
-
|
60
|
+
{ format: :text }
|
61
61
|
end
|
@@ -3,15 +3,15 @@ require 'sass'
|
|
3
3
|
include Machine
|
4
4
|
include MachineInput
|
5
5
|
|
6
|
-
store_machine_output :
|
6
|
+
store_machine_output filetype: "css"
|
7
7
|
|
8
8
|
machine_input do
|
9
|
-
compress_css format(:
|
9
|
+
compress_css format(format: :css)._render_core
|
10
10
|
end
|
11
11
|
|
12
12
|
def compress_css input
|
13
13
|
begin
|
14
|
-
Sass.compile input, :
|
14
|
+
Sass.compile input, style: :compressed
|
15
15
|
rescue => e
|
16
16
|
raise Card::Oops, "Stylesheet Error:\n#{ e.message }"
|
17
17
|
end
|
@@ -30,20 +30,20 @@ end
|
|
30
30
|
|
31
31
|
format :html do
|
32
32
|
def get_inclusion_defaults nested_card
|
33
|
-
{ :
|
33
|
+
{ view: :closed }
|
34
34
|
end
|
35
35
|
|
36
|
-
view :editor, :
|
36
|
+
view :editor, mod: Html::HtmlFormat
|
37
37
|
|
38
38
|
view :core do |args|
|
39
39
|
# FIXME: scan must happen before process for inclusion interactions to work, but this will likely cause
|
40
40
|
# problems with including other css?
|
41
|
-
process_content ::CodeRay.scan( _render_raw, :css ).div, :
|
41
|
+
process_content ::CodeRay.scan( _render_raw, :css ).div, content_opts: {size: :icon}
|
42
42
|
end
|
43
43
|
|
44
|
-
view :content_changes, :
|
44
|
+
view :content_changes, mod: CoffeeScript::HtmlFormat
|
45
45
|
end
|
46
46
|
|
47
47
|
def diff_args
|
48
|
-
{:
|
48
|
+
{format: :text}
|
49
49
|
end
|
@@ -4,7 +4,7 @@ require 'uglifier'
|
|
4
4
|
include Machine
|
5
5
|
include MachineInput
|
6
6
|
|
7
|
-
store_machine_output :
|
7
|
+
store_machine_output filetype: "js"
|
8
8
|
|
9
9
|
machine_input do
|
10
10
|
Uglifier.compile(format(:js)._render_core)
|
@@ -22,8 +22,8 @@ format do
|
|
22
22
|
end
|
23
23
|
|
24
24
|
format :html do
|
25
|
-
view :editor, :
|
26
|
-
view :content_changes, :
|
25
|
+
view :editor, mod: Html::HtmlFormat
|
26
|
+
view :content_changes, mod: CoffeeScript::HtmlFormat
|
27
27
|
|
28
28
|
view :core do |args|
|
29
29
|
highlighted_js = ::CodeRay.scan( _render_raw, :js ).div
|
@@ -33,5 +33,5 @@ format :html do
|
|
33
33
|
end
|
34
34
|
|
35
35
|
def diff_args
|
36
|
-
{:
|
36
|
+
{format: :text}
|
37
37
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
include Type::Css
|
2
2
|
|
3
3
|
def diff_args
|
4
|
-
{:
|
4
|
+
{format: :text}
|
5
5
|
end
|
6
6
|
|
7
7
|
format do
|
@@ -12,7 +12,7 @@ format do
|
|
12
12
|
end
|
13
13
|
|
14
14
|
def compile_scss scss, style=:expanded
|
15
|
-
Sass.compile scss, :style
|
15
|
+
Sass.compile scss, style: style
|
16
16
|
rescue =>e
|
17
17
|
e
|
18
18
|
end
|
@@ -19,14 +19,14 @@ shared_examples_for 'machine' do |filetype|
|
|
19
19
|
before do
|
20
20
|
machine.update_machine_output
|
21
21
|
end
|
22
|
-
|
22
|
+
|
23
23
|
it 'has +machine_input card' do
|
24
|
-
expect(machine.machine_input_card.real?).to be_truthy
|
24
|
+
expect(machine.machine_input_card.real?).to be_truthy
|
25
25
|
end
|
26
26
|
it 'has +machine_output card' do
|
27
27
|
expect(machine.machine_output_card.real?).to be_truthy
|
28
28
|
end
|
29
|
-
it "generates #{filetype} file" do
|
29
|
+
it "generates #{filetype} file" do
|
30
30
|
expect(machine.machine_output_path).to match(/\.#{filetype}$/)
|
31
31
|
end
|
32
32
|
end
|
@@ -37,10 +37,10 @@ shared_examples_for 'content machine' do |filetype|
|
|
37
37
|
it_should_behave_like 'machine', that_produces(filetype) do
|
38
38
|
let(:machine) { machine_card }
|
39
39
|
end
|
40
|
-
|
40
|
+
|
41
41
|
context '+machine_input card' do
|
42
|
-
|
43
|
-
|
42
|
+
|
43
|
+
|
44
44
|
it "points to self" do
|
45
45
|
Card::Auth.as_bot do
|
46
46
|
machine_card.update_input_card
|
@@ -48,7 +48,7 @@ shared_examples_for 'content machine' do |filetype|
|
|
48
48
|
expect(machine_card.input_item_cards).to eq([machine_card])
|
49
49
|
end
|
50
50
|
end
|
51
|
-
|
51
|
+
|
52
52
|
context '+machine_output card' do
|
53
53
|
it 'creates file with supplied content' do
|
54
54
|
path = machine_card.machine_output_path
|
@@ -56,7 +56,7 @@ shared_examples_for 'content machine' do |filetype|
|
|
56
56
|
end
|
57
57
|
it "updates #{filetype} file when content is changed" do
|
58
58
|
changed_factory = machine_card
|
59
|
-
changed_factory.putty :
|
59
|
+
changed_factory.putty content: card_content[:changed_in]
|
60
60
|
changed_path = changed_factory.machine_output_path
|
61
61
|
expect(File.read(changed_path)).to eq(card_content[:changed_out])
|
62
62
|
end
|
@@ -68,20 +68,20 @@ shared_examples_for 'pointer machine' do |filetype|
|
|
68
68
|
subject do
|
69
69
|
=begin
|
70
70
|
We build the following structure:
|
71
|
-
|
71
|
+
|
72
72
|
#{machine_card}
|
73
73
|
|- expected_input_items (passed by the calling test if it prepopulates the machine_card with some additional items)
|
74
74
|
|_ level 0 #{filetype}
|
75
75
|
|- level 1 basic 1
|
76
|
-
|- level 1 #{filetype}
|
76
|
+
|- level 1 #{filetype}
|
77
77
|
| |- level 2 basic 1
|
78
78
|
| |- level 2 #{filetype}
|
79
79
|
| | |_ ....
|
80
|
-
| |_ level 2 basic 2
|
80
|
+
| |_ level 2 basic 2
|
81
81
|
|_ level 1 basic 2
|
82
|
-
|
82
|
+
|
83
83
|
=end
|
84
|
-
|
84
|
+
|
85
85
|
change_machine = machine_card
|
86
86
|
@depth = 2
|
87
87
|
@leaf_items = []
|
@@ -89,16 +89,16 @@ We build the following structure:
|
|
89
89
|
start = @expected_items.size
|
90
90
|
Card::Auth.as_bot do
|
91
91
|
@depth.times do |i|
|
92
|
-
@leaf_items << Card.fetch( "level #{i} basic 1", :
|
92
|
+
@leaf_items << Card.fetch( "level #{i} basic 1", new: {type: Card::BasicID } )
|
93
93
|
@leaf_items.last.save
|
94
|
-
@leaf_items << Card.fetch( "level #{i} basic 2", :
|
94
|
+
@leaf_items << Card.fetch( "level #{i} basic 2", new: {type: Card::BasicID } )
|
95
95
|
@leaf_items.last.save
|
96
96
|
end
|
97
97
|
|
98
98
|
# we build the tree from bottom up
|
99
99
|
last_level = false
|
100
100
|
(@depth-1).downto(0) do |i|
|
101
|
-
next_level = Card.fetch( "level #{i} #{filetype} ", :
|
101
|
+
next_level = Card.fetch( "level #{i} #{filetype} ", new: {type: :pointer } )
|
102
102
|
next_level.content = ""
|
103
103
|
next_level << @leaf_items[i*2]
|
104
104
|
next_level << last_level if last_level
|
@@ -121,38 +121,38 @@ We build the following structure:
|
|
121
121
|
it_should_behave_like 'machine', that_produces(filetype) do
|
122
122
|
let(:machine) { machine_card }
|
123
123
|
end
|
124
|
-
|
124
|
+
|
125
125
|
describe '+machine_input card' do
|
126
126
|
before do
|
127
127
|
Card::Auth.as_bot do
|
128
128
|
subject.update_input_card
|
129
129
|
end
|
130
130
|
end
|
131
|
-
|
131
|
+
|
132
132
|
it "contains items of all levels" do
|
133
133
|
expect(subject.machine_input_card.item_cards.map(&:id).sort).to eq(@expected_items.map(&:id).sort)
|
134
134
|
end
|
135
|
-
|
135
|
+
|
136
136
|
it "preserves order of items" do
|
137
137
|
expect(subject.machine_input_card.item_cards.map(&:id)).to eq(@expected_items.map(&:id))
|
138
138
|
end
|
139
139
|
end
|
140
|
-
|
140
|
+
|
141
141
|
describe '+machine_output card' do
|
142
142
|
it 'creates #{filetype} file with supplied content' do
|
143
143
|
path = subject.machine_output_path
|
144
144
|
expect(File.read(path)).to eq(card_content[:out])
|
145
145
|
end
|
146
|
-
|
146
|
+
|
147
147
|
it 'updates #{filetype} file if item is changed' do
|
148
|
-
machine_input_card.putty :
|
148
|
+
machine_input_card.putty content: card_content[:changed_in]
|
149
149
|
changed_path = subject.machine_output_path
|
150
150
|
expect(File.read(changed_path)).to eq(card_content[:changed_out])
|
151
151
|
end
|
152
|
-
|
152
|
+
|
153
153
|
it 'updates #{filetype} file if item is added' do
|
154
154
|
Card::Auth.as_bot do
|
155
|
-
ca = Card.gimme! "pointer item", :
|
155
|
+
ca = Card.gimme! "pointer item", type: Card::SkinID, content: ''
|
156
156
|
subject.items = [ca]
|
157
157
|
ca << another_machine_input_card
|
158
158
|
ca.save!
|
@@ -160,13 +160,13 @@ We build the following structure:
|
|
160
160
|
expect(File.read(changed_path)).to eq(card_content[:new_out])
|
161
161
|
end
|
162
162
|
end
|
163
|
-
|
163
|
+
|
164
164
|
context 'a non-existent card was added as item and now created' do
|
165
165
|
it 'updates #{filetype} file' do
|
166
166
|
Card::Auth.as_bot do
|
167
|
-
subject.content = "[[non-existent input]]"
|
167
|
+
subject.content = "[[non-existent input]]"
|
168
168
|
subject.save!
|
169
|
-
ca = Card.gimme! "non-existent input", :
|
169
|
+
ca = Card.gimme! "non-existent input", type: input_type, content: card_content[:changed_in]
|
170
170
|
ca.save!
|
171
171
|
changed_path = subject.machine_output_path
|
172
172
|
expect(File.read(changed_path)).to eq(card_content[:changed_out])
|
@@ -1,12 +1,12 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
2
|
|
3
|
-
shared_examples_for 'machine input' do
|
3
|
+
shared_examples_for 'machine input' do
|
4
4
|
subject(:input) do
|
5
5
|
myinput = create_machine_input_card
|
6
6
|
myinput
|
7
7
|
end
|
8
8
|
let!(:machine) do
|
9
|
-
f = create_machine_card
|
9
|
+
f = create_machine_card
|
10
10
|
f << create_machine_input_card
|
11
11
|
f.putty
|
12
12
|
f
|
@@ -15,7 +15,7 @@ shared_examples_for 'machine input' do
|
|
15
15
|
moreinput = create_another_machine_input_card
|
16
16
|
moreinput
|
17
17
|
end
|
18
|
-
|
18
|
+
|
19
19
|
context 'when removed' do
|
20
20
|
it 'updates machine_input card of machine card' do
|
21
21
|
machine
|
@@ -25,7 +25,7 @@ shared_examples_for 'machine input' do
|
|
25
25
|
f = Card.gimme machine.name
|
26
26
|
expect(f.machine_input_card.item_cards).to eq([])
|
27
27
|
end
|
28
|
-
|
28
|
+
|
29
29
|
it 'updates output of machine card' do
|
30
30
|
machine
|
31
31
|
Card::Auth.as_bot do
|
@@ -36,20 +36,20 @@ shared_examples_for 'machine input' do
|
|
36
36
|
expect(File.read path).to eq('')
|
37
37
|
end
|
38
38
|
end
|
39
|
-
|
39
|
+
|
40
40
|
it 'delivers machine input' do
|
41
41
|
expect(input.machine_input).to eq(card_content[:out])
|
42
42
|
end
|
43
|
-
|
43
|
+
|
44
44
|
context 'when updated' do
|
45
45
|
it 'updates output of related machine card' do
|
46
|
-
input.putty :
|
46
|
+
input.putty content: card_content[:changed_in]
|
47
47
|
updated_machine = Card.gimme machine.cardname
|
48
48
|
path = updated_machine.machine_output_path
|
49
49
|
expect(File.read path).to eq(card_content[:changed_out])
|
50
50
|
end
|
51
51
|
end
|
52
|
-
|
52
|
+
|
53
53
|
context 'when added' do
|
54
54
|
it 'updates output of related machine card' do
|
55
55
|
if machine.kind_of? Card::Set::Type::Pointer
|
@@ -9,19 +9,19 @@ describe Card::Set::Type::CoffeeScript do
|
|
9
9
|
|
10
10
|
|
11
11
|
it_should_behave_like 'content machine', that_produces_js do
|
12
|
-
let(:machine_card) { Card.gimme! "test coffeescript", :
|
12
|
+
let(:machine_card) { Card.gimme! "test coffeescript", type: Card::CoffeeScriptID, content: coffee}
|
13
13
|
let(:card_content) do
|
14
|
-
{ in: coffee, out: compressed_coffee,
|
14
|
+
{ in: coffee, out: compressed_coffee,
|
15
15
|
changed_in: changed_coffee, changed_out: compressed_changed_coffee }
|
16
16
|
end
|
17
17
|
end
|
18
18
|
|
19
19
|
it_behaves_like "machine input" do
|
20
|
-
let(:create_machine_input_card) { Card.gimme! "test coffeescript", :
|
21
|
-
let(:create_another_machine_input_card) { Card.gimme! "more coffee", :
|
22
|
-
let(:create_machine_card) { Card.gimme! "script with coffee+*script", :
|
20
|
+
let(:create_machine_input_card) { Card.gimme! "test coffeescript", type: :coffee_script, content: coffee }
|
21
|
+
let(:create_another_machine_input_card) { Card.gimme! "more coffee", type: :coffee_script, content: coffee }
|
22
|
+
let(:create_machine_card) { Card.gimme! "script with coffee+*script", type: :pointer }
|
23
23
|
let(:card_content) do
|
24
|
-
{ in: coffee, out: compressed_coffee,
|
24
|
+
{ in: coffee, out: compressed_coffee,
|
25
25
|
changed_in: changed_coffee, changed_out: compressed_changed_coffee }
|
26
26
|
end
|
27
27
|
end
|
@@ -5,29 +5,29 @@ describe Card::Set::Type::Css do
|
|
5
5
|
let(:compressed_css) { "#box{display:block}\n" }
|
6
6
|
let(:changed_css) { '#box { display: inline }' }
|
7
7
|
let(:compressed_changed_css) { "#box{display:inline}\n" }
|
8
|
-
|
8
|
+
|
9
9
|
it "should highlight code" do
|
10
10
|
Card::Auth.as_bot do
|
11
|
-
css_card = Card.create! :
|
11
|
+
css_card = Card.create! name: 'tmp css', type_code: 'css', content: "p { border: 1px solid black; }"
|
12
12
|
assert_view_select css_card.format.render_core, 'div[class=CodeRay]'
|
13
13
|
end
|
14
14
|
end
|
15
|
-
|
15
|
+
|
16
16
|
|
17
17
|
it_behaves_like "machine input" do
|
18
|
-
let(:create_machine_input_card) { Card.gimme! "test css", :
|
19
|
-
let(:create_another_machine_input_card) { Card.gimme! "more test css", :
|
20
|
-
let(:create_machine_card) { Card.gimme! "style with css+*style", :
|
18
|
+
let(:create_machine_input_card) { Card.gimme! "test css", type: :css, content: css }
|
19
|
+
let(:create_another_machine_input_card) { Card.gimme! "more test css", type: :css, content: css }
|
20
|
+
let(:create_machine_card) { Card.gimme! "style with css+*style", type: :pointer }
|
21
21
|
let(:card_content) do
|
22
|
-
{ in: css, out: compressed_css,
|
22
|
+
{ in: css, out: compressed_css,
|
23
23
|
changed_in: changed_css, changed_out: compressed_changed_css }
|
24
24
|
end
|
25
25
|
end
|
26
26
|
|
27
27
|
it_behaves_like 'content machine', that_produces_css do
|
28
|
-
let(:machine_card) { Card.gimme! "test css", :
|
28
|
+
let(:machine_card) { Card.gimme! "test css", type: :css, content: css }
|
29
29
|
let(:card_content) do
|
30
|
-
{ in: css, out: compressed_css,
|
30
|
+
{ in: css, out: compressed_css,
|
31
31
|
changed_in: changed_css, changed_out: compressed_changed_css }
|
32
32
|
end
|
33
33
|
end
|
@@ -8,19 +8,19 @@ describe Card::Set::Type::JavaScript do
|
|
8
8
|
|
9
9
|
|
10
10
|
it_should_behave_like 'content machine', that_produces_js do
|
11
|
-
let(:machine_card) { Card.gimme! "test javascript", :
|
11
|
+
let(:machine_card) { Card.gimme! "test javascript", type: :java_script, content: js}
|
12
12
|
let(:card_content) do
|
13
|
-
{ in: js, out: compressed_js,
|
13
|
+
{ in: js, out: compressed_js,
|
14
14
|
changed_in: changed_js, changed_out: compressed_changed_js }
|
15
15
|
end
|
16
16
|
end
|
17
17
|
|
18
18
|
it_behaves_like "machine input" do
|
19
|
-
let(:create_machine_input_card) { Card.gimme! "test javascript", :
|
20
|
-
let(:create_another_machine_input_card) { Card.gimme! "more javascript", :
|
21
|
-
let(:create_machine_card) { Card.gimme! "script with js+*script", :
|
19
|
+
let(:create_machine_input_card) { Card.gimme! "test javascript", type: :java_script, content: js }
|
20
|
+
let(:create_another_machine_input_card) { Card.gimme! "more javascript", type: :java_script, content: js }
|
21
|
+
let(:create_machine_card) { Card.gimme! "script with js+*script", type: :pointer }
|
22
22
|
let(:card_content) do
|
23
|
-
{ in: js, out: compressed_js,
|
23
|
+
{ in: js, out: compressed_js,
|
24
24
|
changed_in: changed_js, changed_out: compressed_changed_js }
|
25
25
|
end
|
26
26
|
end
|
@@ -28,9 +28,9 @@ describe Card::Set::Type::Scss do
|
|
28
28
|
end
|
29
29
|
|
30
30
|
it_should_behave_like "machine input" do
|
31
|
-
let(:create_machine_input_card) { Card.gimme! "test scss", :
|
32
|
-
let(:create_another_machine_input_card) { Card.gimme! "more scss", :
|
33
|
-
let(:create_machine_card) { Card.gimme! "style with scss+*style", :
|
31
|
+
let(:create_machine_input_card) { Card.gimme! "test scss", type: :scss, content: scss }
|
32
|
+
let(:create_another_machine_input_card) { Card.gimme! "more scss", type: :scss, content: scss }
|
33
|
+
let(:create_machine_card) { Card.gimme! "style with scss+*style", type: :pointer }
|
34
34
|
let(:card_content) do
|
35
35
|
{ in: scss, out: compressed_css,
|
36
36
|
changed_in: changed_scss, changed_out: compressed_changed_css }
|
@@ -40,13 +40,13 @@ describe Card::Set::Type::Scss do
|
|
40
40
|
it "should process links and inclusions but not urls" do
|
41
41
|
Card::Auth.as_bot do
|
42
42
|
scss = ".TYPE-X.no-citations {\n color: #BA5B5B;\n}\n"
|
43
|
-
card = Card.create! :
|
43
|
+
card = Card.create! name: 'minimal css', type: 'scss', content: scss
|
44
44
|
card.format(:css).render_core.should == scss
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
48
48
|
it_should_behave_like 'content machine', that_produces_css do
|
49
|
-
let(:machine_card) { Card.gimme! "test scss", :
|
49
|
+
let(:machine_card) { Card.gimme! "test scss", type: :scss, content: scss }
|
50
50
|
let(:card_content) do
|
51
51
|
{ in: scss, out: compressed_css,
|
52
52
|
changed_in: changed_scss, changed_out: compressed_changed_css }
|