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
@@ -20,7 +20,7 @@ describe Card::Success do
|
|
20
20
|
|
21
21
|
context 'initialized with hash' do
|
22
22
|
before do
|
23
|
-
success_params :
|
23
|
+
success_params id: home.id, view: 'closed'
|
24
24
|
end
|
25
25
|
it { is_expected.to eq home}
|
26
26
|
end
|
@@ -59,7 +59,7 @@ describe Card::Success do
|
|
59
59
|
context 'with params' do
|
60
60
|
context 'using initilization' do
|
61
61
|
before do
|
62
|
-
success_params :
|
62
|
+
success_params id: home.id, view: 'closed', layout: 'my_layout'
|
63
63
|
end
|
64
64
|
it { is_expected.to eq '/Home?layout=my_layout&view=closed' }
|
65
65
|
end
|
@@ -80,7 +80,7 @@ describe Card::Success do
|
|
80
80
|
context 'using <<' do
|
81
81
|
before do
|
82
82
|
success_params nil
|
83
|
-
@success << { :
|
83
|
+
@success << { card: home, view: 'closed'}
|
84
84
|
end
|
85
85
|
it { is_expected.to eq '/Home?view=closed' }
|
86
86
|
end
|
@@ -95,7 +95,7 @@ describe Card::Success do
|
|
95
95
|
|
96
96
|
describe '#soft_redirect?' do
|
97
97
|
it 'returns true if soft_redirect parameter is true' do
|
98
|
-
success_params :
|
98
|
+
success_params soft_redirect: true
|
99
99
|
expect(@success.soft_redirect?).to be_truthy
|
100
100
|
end
|
101
101
|
end
|
@@ -128,14 +128,22 @@ describe Card::Success do
|
|
128
128
|
|
129
129
|
describe 'params' do
|
130
130
|
it 'returns params hash' do
|
131
|
-
success_params :
|
131
|
+
success_params name: 'Home', view: 'View'
|
132
132
|
@success.layout = 'Layout'
|
133
|
-
@success.apply :
|
134
|
-
@success << {:
|
133
|
+
@success.apply script: 'Script'
|
134
|
+
@success << { structure: 'Structure' }
|
135
135
|
expect(@success.params.keys.sort).to eq [:layout, :script, :structure, :view]
|
136
136
|
end
|
137
137
|
it 'ignores "id", "name", "mark", "card"", target", and "redirect"' do
|
138
|
-
success_params
|
138
|
+
success_params({
|
139
|
+
id: 5,
|
140
|
+
name: 'Home',
|
141
|
+
card: Card['Home'],
|
142
|
+
mark: 'Home',
|
143
|
+
target: 'Home',
|
144
|
+
redirect: false,
|
145
|
+
view: 'View'
|
146
|
+
})
|
139
147
|
expect(@success.params.keys).to eq [:view]
|
140
148
|
end
|
141
149
|
end
|
data/spec/mailers/mailer_spec.rb
CHANGED
@@ -42,15 +42,15 @@ describe Card::Mailer do
|
|
42
42
|
# describe "flexmail" do
|
43
43
|
# # FIXME: at least two tests should be here, with & w/o attachment.
|
44
44
|
# end
|
45
|
-
|
46
|
-
|
47
|
-
|
45
|
+
|
46
|
+
|
47
|
+
|
48
48
|
# describe "cardmail" do
|
49
49
|
# before do
|
50
|
-
# Card.gimme "mailtest", :
|
50
|
+
# Card.gimme "mailtest", content: "test"
|
51
51
|
# end
|
52
52
|
# it "renders email text" do
|
53
|
-
# Card::Mailer.cardmail(:
|
53
|
+
# Card::Mailer.cardmail(to: "sara@user.com").deliver
|
54
54
|
# @mail = ActionMailer::Base.deliveries.last
|
55
55
|
# expect(@mail.body).to eq("test")
|
56
56
|
# end
|
@@ -9,11 +9,11 @@ end
|
|
9
9
|
describe "Card (Cardtype)" do
|
10
10
|
|
11
11
|
it "should not allow cardtype remove when instances present" do
|
12
|
-
Card.create :
|
12
|
+
Card.create name: 'City', type: 'Cardtype'
|
13
13
|
city = Card.fetch('City')
|
14
|
-
c1=Card.create :
|
15
|
-
c2=Card.create :
|
16
|
-
assert_equal ['Eugene','Sparta'], Card.search(:
|
14
|
+
c1=Card.create name: 'Sparta', type: 'City'
|
15
|
+
c2=Card.create name: 'Eugene', type: 'City'
|
16
|
+
assert_equal ['Eugene','Sparta'], Card.search(type: 'City').map(&:name).sort
|
17
17
|
assert_raises ActiveRecord::RecordInvalid do
|
18
18
|
city.delete!
|
19
19
|
end
|
@@ -22,25 +22,25 @@ describe "Card (Cardtype)" do
|
|
22
22
|
end
|
23
23
|
|
24
24
|
it "remove cardtype" do
|
25
|
-
Card.create! :
|
25
|
+
Card.create! name: 'County', type: 'Cardtype'
|
26
26
|
c = Card['County']
|
27
27
|
c.delete
|
28
28
|
end
|
29
29
|
|
30
30
|
it "cardtype creation and dynamic cardtype" do
|
31
31
|
|
32
|
-
assert Card.create( :
|
32
|
+
assert Card.create( name: 'BananaPudding', type: 'Cardtype' ).type_id == Card::Codename[:cardtype]
|
33
33
|
assert_instance_of Card, c=Card.fetch("BananaPudding")
|
34
34
|
|
35
35
|
# you have to have a module to include or it's just a Basic (type_code fielde excepted)
|
36
|
-
cd = Card.create(:
|
36
|
+
cd = Card.create(type: 'banana_pudding',name: "figgy" )
|
37
37
|
assert cd.type_name == 'BananaPudding'
|
38
38
|
assert Card.find_by_type_id(c.id)
|
39
39
|
end
|
40
40
|
|
41
41
|
describe "conversion to cardtype" do
|
42
42
|
before do
|
43
|
-
@card = Card.create!(:
|
43
|
+
@card = Card.create!(type: 'Cardtype', name: 'Cookie')
|
44
44
|
expect(@card.type_name).to eq('Cardtype')
|
45
45
|
end
|
46
46
|
|
@@ -51,7 +51,7 @@ describe "Card (Cardtype)" do
|
|
51
51
|
@card=Card['Cookie']
|
52
52
|
assert_instance_of Card, @card
|
53
53
|
expect(@card.type_code).to eq(nil) # :cookie
|
54
|
-
assert_equal 'Cookie', Card.create!( :
|
54
|
+
assert_equal 'Cookie', Card.create!( name: 'Oreo', type: 'Cookie' ).type_name
|
55
55
|
end
|
56
56
|
end
|
57
57
|
|
@@ -73,12 +73,12 @@ describe Card, "created without permission" do
|
|
73
73
|
# was to rewrite most of the permissions section as simple validations and i decided not to go down that rabbit hole.
|
74
74
|
#
|
75
75
|
#it "should not be valid" do
|
76
|
-
# Card.new( :
|
76
|
+
# Card.new( name: 'foo', type: 'Cardtype').valid?.should_not be_true
|
77
77
|
#end
|
78
78
|
|
79
79
|
it "should not create a new cardtype until saved" do
|
80
80
|
expect {
|
81
|
-
Card.new( :
|
81
|
+
Card.new( name: 'foo', type: 'Cardtype')
|
82
82
|
}.not_to change(Card, :count)
|
83
83
|
end
|
84
84
|
end
|
@@ -112,9 +112,9 @@ end
|
|
112
112
|
describe Card, "Recreated Card" do
|
113
113
|
before do
|
114
114
|
Card::Auth.as_bot do
|
115
|
-
@ct = Card.create! :
|
115
|
+
@ct = Card.create! name: 'Species', type: 'Cardtype'
|
116
116
|
@ct.delete!
|
117
|
-
@ct = Card.create! :
|
117
|
+
@ct = Card.create! name: 'Species', type: 'Cardtype'
|
118
118
|
end
|
119
119
|
end
|
120
120
|
|
@@ -128,7 +128,7 @@ end
|
|
128
128
|
describe Card, "New Cardtype" do
|
129
129
|
before do
|
130
130
|
Card::Auth.as_bot do
|
131
|
-
@ct = Card.create! :
|
131
|
+
@ct = Card.create! name: 'Animal', type: 'Cardtype'
|
132
132
|
end
|
133
133
|
end
|
134
134
|
|
@@ -144,7 +144,7 @@ end
|
|
144
144
|
describe Card, "Wannabe Cardtype Card" do
|
145
145
|
before do
|
146
146
|
Card::Auth.as_bot do
|
147
|
-
@card = Card.create! :
|
147
|
+
@card = Card.create! name: 'convertible'
|
148
148
|
@card.type_id=Card::CardtypeID
|
149
149
|
@card.save!
|
150
150
|
end
|
@@ -159,7 +159,7 @@ describe Card, "Joe User" do
|
|
159
159
|
before do
|
160
160
|
Card::Auth.as_bot do
|
161
161
|
@r3 = Card['r3']
|
162
|
-
Card.create :
|
162
|
+
Card.create name: 'Cardtype F+*type+*create', type: 'Pointer', content: '[[r3]]'
|
163
163
|
end
|
164
164
|
|
165
165
|
@ucard = Card::Auth.current
|
@@ -167,10 +167,10 @@ describe Card, "Joe User" do
|
|
167
167
|
end
|
168
168
|
|
169
169
|
it "should not have r3 permissions" do
|
170
|
-
expect(@ucard.fetch(:
|
170
|
+
expect(@ucard.fetch(new: {}, trait: :roles).item_names.member?(@r3.name)).to be_falsey
|
171
171
|
end
|
172
172
|
it "should ponder creating a card of Cardtype F, but find that he lacks create permissions" do
|
173
|
-
expect(Card.new(:
|
173
|
+
expect(Card.new(type: 'Cardtype F').ok?(:create)).to be_falsey
|
174
174
|
end
|
175
175
|
it "should not find Cardtype F on its list of createable cardtypes" do
|
176
176
|
expect(@type_names.member?('Cardtype F')).to be_falsey
|
@@ -187,7 +187,7 @@ describe Card, "Cardtype with Existing Cards" do
|
|
187
187
|
@ct = Card['Cardtype F']
|
188
188
|
end
|
189
189
|
it "should have existing cards of that type" do
|
190
|
-
expect(Card.search(:
|
190
|
+
expect(Card.search(type: @ct.name)).not_to be_empty
|
191
191
|
end
|
192
192
|
|
193
193
|
it "should raise an error when you try to delete it" do
|
@@ -203,7 +203,7 @@ describe Card::Set::Type::Cardtype do
|
|
203
203
|
|
204
204
|
it "should handle changing away from Cardtype" do
|
205
205
|
Card::Auth.as_bot do
|
206
|
-
ctg = Card.create! :
|
206
|
+
ctg = Card.create! name: "CardtypeG", type: "Cardtype"
|
207
207
|
ctg.type_id = Card::BasicID
|
208
208
|
ctg.save!
|
209
209
|
ctg = Card["CardtypeG"]
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# FIXME this shouldn't be here
|
4
4
|
describe Card::Set::Type::Cardtype, ".create with :codename" do
|
5
5
|
it "should work" do
|
6
|
-
expect(Card.create!(:
|
6
|
+
expect(Card.create!(name: "Foo Type", codename: "foo", type: 'Cardtype').type_code).to eq(:cardtype)
|
7
7
|
end
|
8
8
|
end
|
9
9
|
|
@@ -13,14 +13,14 @@ end
|
|
13
13
|
describe Card, "created by Card.new " do
|
14
14
|
before(:each) do
|
15
15
|
Card::Auth.as_bot do
|
16
|
-
@c = Card.new :
|
16
|
+
@c = Card.new name: "New Card", content: "Great Content"
|
17
17
|
end
|
18
18
|
end
|
19
19
|
|
20
20
|
it "should not override explicit content with default content" do
|
21
21
|
Card::Auth.as_bot do
|
22
|
-
Card.create! :
|
23
|
-
c = Card.new :
|
22
|
+
Card.create! name: "blue+*right+*default", content: "joe", type: "Pointer"
|
23
|
+
c = Card.new name: "Lady+blue", content: "[[Jimmy]]"
|
24
24
|
expect(c.content).to eq("[[Jimmy]]")
|
25
25
|
end
|
26
26
|
end
|
@@ -31,7 +31,7 @@ end
|
|
31
31
|
describe Card, "created by Card.create with valid attributes" do
|
32
32
|
before(:each) do
|
33
33
|
Card::Auth.as_bot do
|
34
|
-
@b = Card.create :
|
34
|
+
@b = Card.create name: "New Card", content: "Great Content"
|
35
35
|
@c = Card.find(@b.id)
|
36
36
|
end
|
37
37
|
end
|
@@ -54,7 +54,7 @@ end
|
|
54
54
|
|
55
55
|
describe Card, "create junction" do
|
56
56
|
before(:each) do
|
57
|
-
@c = Card.create! :
|
57
|
+
@c = Card.create! name: "Peach+Pear", content: "juicy"
|
58
58
|
end
|
59
59
|
|
60
60
|
it "should not have errors" do
|
@@ -11,7 +11,7 @@ describe Card, "deleting card" do
|
|
11
11
|
expect(a.errors[:permission_denied]).not_to be_empty
|
12
12
|
expect(Card['a'].trash).to eq(false)
|
13
13
|
end
|
14
|
-
|
14
|
+
|
15
15
|
end
|
16
16
|
end
|
17
17
|
|
@@ -27,7 +27,7 @@ describe Card, "deleted card" do
|
|
27
27
|
end
|
28
28
|
it "should come out of the trash when a plus card is created" do
|
29
29
|
Card::Auth.as_bot do
|
30
|
-
Card.create(:
|
30
|
+
Card.create(name: 'A+*acct')
|
31
31
|
c = Card[ 'A' ]
|
32
32
|
expect(c.trash).to be_falsey
|
33
33
|
end
|
@@ -36,8 +36,8 @@ end
|
|
36
36
|
|
37
37
|
describe Card, "in trash" do
|
38
38
|
it "should be retrieved by fetch with new" do
|
39
|
-
Card.create(:
|
40
|
-
c=Card.fetch "Betty", :
|
39
|
+
Card.create(name: "Betty").delete
|
40
|
+
c=Card.fetch "Betty", new: {}
|
41
41
|
c.save
|
42
42
|
expect(Card["Betty"]).to be_instance_of(Card)
|
43
43
|
end
|
@@ -47,7 +47,7 @@ end
|
|
47
47
|
describe Card, "plus cards" do
|
48
48
|
it "should be deleted when root is" do
|
49
49
|
Card::Auth.as :joe_admin do
|
50
|
-
c = Card.create! :
|
50
|
+
c = Card.create! name: 'zz+top'
|
51
51
|
root = Card['zz']
|
52
52
|
root.delete
|
53
53
|
# Rails.logger.info "ERRORS = #{root.errors.full_messages*''}"
|
@@ -69,7 +69,7 @@ describe Card do
|
|
69
69
|
context "without revisions" do
|
70
70
|
before do
|
71
71
|
Card::Auth.as_bot do
|
72
|
-
@c = Card.create! :
|
72
|
+
@c = Card.create! name: 'User Must Die', type: 'User'
|
73
73
|
end
|
74
74
|
end
|
75
75
|
it "should be removable" do
|
@@ -86,7 +86,7 @@ end
|
|
86
86
|
# before do
|
87
87
|
# Card::Auth.as(Card::WagnBotID)
|
88
88
|
# # this ugly setup makes it so A+Admin is the actual user with edits..
|
89
|
-
# Card["Wagn Bot"].update_attributes! :
|
89
|
+
# Card["Wagn Bot"].update_attributes! name: "A+Wagn Bot"
|
90
90
|
# end
|
91
91
|
# it "should not be removable" do
|
92
92
|
# @a = Card['A']
|
@@ -117,8 +117,8 @@ describe Card, "rename to trashed name" do
|
|
117
117
|
@b = Card["B"]
|
118
118
|
@a.delete! #trash
|
119
119
|
Rails.logger.info "\n\n~~~~~~~deleted~~~~~~~~\n\n\n"
|
120
|
-
|
121
|
-
@b.update_attributes! :
|
120
|
+
|
121
|
+
@b.update_attributes! name: "A", update_referencers: true
|
122
122
|
end
|
123
123
|
end
|
124
124
|
|
@@ -160,8 +160,8 @@ describe Card, "revived from trash" do
|
|
160
160
|
before do
|
161
161
|
Card::Auth.as_bot do
|
162
162
|
Card["basicname"].delete!
|
163
|
-
|
164
|
-
@c = Card.create! :
|
163
|
+
|
164
|
+
@c = Card.create! name: 'basicname', content: 'revived content'
|
165
165
|
end
|
166
166
|
end
|
167
167
|
|
@@ -186,13 +186,13 @@ end
|
|
186
186
|
describe Card, "recreate trashed card via new" do
|
187
187
|
# before do
|
188
188
|
# Card::Auth.as(Card::WagnBotID)
|
189
|
-
# @c = Card.create! :
|
189
|
+
# @c = Card.create! type: 'Basic', name: "BasicMe"
|
190
190
|
# end
|
191
191
|
|
192
192
|
# this test is known to be broken; we've worked around it for now
|
193
193
|
# it "should delete and recreate with a different cardtype" do
|
194
194
|
# @c.delete!
|
195
|
-
# @re_c = Card.new :
|
195
|
+
# @re_c = Card.new type: "Phrase", name: "BasicMe", content: "Banana"
|
196
196
|
# @re_c.save!
|
197
197
|
# end
|
198
198
|
|
@@ -201,9 +201,9 @@ end
|
|
201
201
|
describe Card, "junction revival" do
|
202
202
|
before do
|
203
203
|
Card::Auth.as_bot do
|
204
|
-
@c = Card.create! :
|
204
|
+
@c = Card.create! name: "basicname+woot", content: "basiccontent"
|
205
205
|
@c.delete!
|
206
|
-
@c = Card.create! :
|
206
|
+
@c = Card.create! name: "basicname+woot", content: "revived content"
|
207
207
|
end
|
208
208
|
end
|
209
209
|
|
@@ -239,18 +239,18 @@ describe "remove tests" do
|
|
239
239
|
end
|
240
240
|
|
241
241
|
it "test_recreate_plus_card_name_variant" do
|
242
|
-
Card.create( :
|
243
|
-
Card["rta"].update_attributes :
|
244
|
-
c = Card.create! :
|
242
|
+
Card.create( name: "rta+rtb" ).delete
|
243
|
+
Card["rta"].update_attributes name: "rta!"
|
244
|
+
c = Card.create! name: "rta!+rtb"
|
245
245
|
assert Card["rta!+rtb"]
|
246
246
|
assert !Card["rta!+rtb"].trash
|
247
247
|
assert Card.find_by_key('rtb*trash').nil?
|
248
248
|
end
|
249
249
|
|
250
250
|
it "test_multiple_trash_collision" do
|
251
|
-
Card.create( :
|
251
|
+
Card.create( name: "alpha" ).delete
|
252
252
|
3.times do
|
253
|
-
b = Card.create( :
|
253
|
+
b = Card.create( name: "beta" )
|
254
254
|
b.name = "alpha"
|
255
255
|
assert b.save!
|
256
256
|
b.delete
|
@@ -4,7 +4,7 @@ class Card
|
|
4
4
|
cattr_accessor :count
|
5
5
|
|
6
6
|
module Set::Type
|
7
|
-
|
7
|
+
|
8
8
|
module CardtypeA
|
9
9
|
extend Card::Set
|
10
10
|
|
@@ -42,7 +42,7 @@ end
|
|
42
42
|
describe Card, "with role" do
|
43
43
|
before do
|
44
44
|
Card::Auth.as_bot do
|
45
|
-
@role = Card.search(:
|
45
|
+
@role = Card.search(type: 'Role')[0]
|
46
46
|
end
|
47
47
|
end
|
48
48
|
|
@@ -132,7 +132,7 @@ end
|
|
132
132
|
describe Card, "type transition create callback" do
|
133
133
|
before do
|
134
134
|
Card::Auth.as_bot do
|
135
|
-
Card.create(:
|
135
|
+
Card.create(name: 'Basic+*type+*delete', type: 'Pointer', content: "[[Anyone Signed in]]")
|
136
136
|
end
|
137
137
|
@c = change_card_to_type("basicname", :cardtype_f)
|
138
138
|
end
|
@@ -3,30 +3,30 @@
|
|
3
3
|
describe Card, "validate name" do
|
4
4
|
|
5
5
|
it "should error on name with /" do
|
6
|
-
@c = Card.create :
|
6
|
+
@c = Card.create name: "testname/"
|
7
7
|
expect(@c.errors[:name]).not_to be_blank
|
8
8
|
end
|
9
9
|
|
10
10
|
it "should error on junction name with /" do
|
11
|
-
@c = Card.create :
|
11
|
+
@c = Card.create name: "jasmin+ri/ce"
|
12
12
|
expect(@c.errors[:name]).not_to be_blank
|
13
13
|
end
|
14
14
|
|
15
15
|
it "shouldn't create any new cards when name invalid" do
|
16
16
|
original_card_count = Card.count
|
17
|
-
@c = Card.create :
|
17
|
+
@c = Card.create name: "jasmin+ri/ce"
|
18
18
|
expect(Card.count).to eq(original_card_count)
|
19
19
|
end
|
20
20
|
|
21
21
|
it "should not allow empty name" do
|
22
|
-
@c = Card.new :
|
22
|
+
@c = Card.new name: ""
|
23
23
|
expect(@c.valid?).to eq(false)
|
24
24
|
expect(@c.errors[:name]).not_to be_blank
|
25
25
|
end
|
26
26
|
|
27
27
|
# maybe the @c.key= should just throw an error, but now it doesn't take anyway
|
28
28
|
it "should not allow mismatched name and key" do
|
29
|
-
@c = Card.new :
|
29
|
+
@c = Card.new name: "Test"
|
30
30
|
@c.key="foo"
|
31
31
|
#@c.key.should == 'test'
|
32
32
|
expect(@c.valid?).to eq(false)
|