wagn 1.13.0 → 1.14.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Guardfile +3 -2
- data/VERSION +1 -1
- data/app/controllers/card_controller.rb +33 -38
- data/config/routes.rb +2 -2
- data/config/version.txt +1 -1
- data/db/bootstrap/card_actions.yml +3543 -0
- data/db/bootstrap/card_acts.yml +7 -0
- data/db/bootstrap/card_changes.yml +9150 -0
- data/db/bootstrap/card_references.yml +666 -344
- data/db/bootstrap/cards.yml +3256 -1702
- data/db/migrate/20140822073704_create_new_revision_tables.rb +43 -0
- data/db/migrate/20141001105348_move_revisions_to_actions.rb +62 -0
- data/db/migrate_cards/20130411191151_renaming_for_menu.rb +42 -45
- data/db/migrate_cards/20130411211600_delete_old_related_tab_cards.rb +13 -16
- data/db/migrate_cards/20130419215612_import_help_text.rb +7 -10
- data/db/migrate_cards/20130823192433_add_style_cards.rb +77 -81
- data/db/migrate_cards/20130910183318_move_styles_to_content.rb +4 -7
- data/db/migrate_cards/20130920214038_jsonize_tinymce.rb +9 -12
- data/db/migrate_cards/20130920291703_update_stylesheets.rb +10 -13
- data/db/migrate_cards/20130927191728_account_events.rb +15 -18
- data/db/migrate_cards/20131016172445_common_css_patch.rb +5 -8
- data/db/migrate_cards/20140110193325_reset_account_request_type.rb +4 -7
- data/db/migrate_cards/20140307231621_user_data_to_cards.rb +50 -53
- data/db/migrate_cards/20140317035504_account_requests_to_signups.rb +39 -42
- data/db/migrate_cards/20140512155840_add_script_cards.rb +56 -59
- data/db/migrate_cards/20140629222005_add_email_cards.rb +168 -0
- data/db/migrate_cards/20140725180118_config_card_updates.rb +4 -7
- data/db/migrate_cards/data/mailer/follower_notification_email.html +9 -0
- data/db/migrate_cards/data/mailer/follower_notification_email.txt +11 -0
- data/db/migrate_cards/data/mailer/mail_config.json +22 -0
- data/db/migrate_cards/data/mailer/password_reset_email.html +10 -0
- data/db/migrate_cards/data/mailer/password_reset_email.txt +11 -0
- data/db/migrate_cards/data/mailer/signup_alert_email.html +7 -0
- data/db/migrate_cards/data/mailer/signup_alert_email.txt +5 -0
- data/db/migrate_cards/data/mailer/verification_email.html +9 -0
- data/db/migrate_cards/data/mailer/verification_email.txt +8 -0
- data/db/schema.rb +31 -1
- data/features/conflict.feature +39 -0
- data/features/flexmail.feature +54 -54
- data/features/notifications.feature +4 -2
- data/features/reset_password.feature +1 -1
- data/features/step_definitions/wagn_steps.rb +20 -2
- data/features/step_definitions/window_steps.rb +23 -0
- data/features/support/env.rb +1 -0
- data/features/update_includers.feature +16 -10
- data/features/watch.feature +2 -2
- data/lib/card.rb +11 -10
- data/lib/card/act.rb +63 -0
- data/lib/card/action.rb +194 -0
- data/lib/card/change.rb +29 -0
- data/lib/card/content.rb +1 -1
- data/lib/card/diff.rb +229 -276
- data/lib/card/env.rb +4 -3
- data/lib/card/format.rb +2 -5
- data/lib/card/generators/card_migration/USAGE +15 -3
- data/lib/card/generators/card_migration/card_migration_generator.rb +22 -2
- data/lib/card/generators/card_migration/templates/card_migration.erb +4 -5
- data/lib/card/generators/format/USAGE +2 -2
- data/lib/card/generators/format/format_generator.rb +2 -2
- data/lib/card/generators/set/USAGE +2 -2
- data/lib/card/mailer.rb +21 -100
- data/lib/card/name.rb +4 -3
- data/lib/card/query.rb +2 -2
- data/lib/card/query/card_spec.rb +20 -30
- data/lib/card/query/value_spec.rb +2 -3
- data/lib/card/set.rb +3 -0
- data/lib/wagn/all.rb +6 -0
- data/lib/wagn/application.rb +16 -6
- data/lib/wagn/commands.rb +87 -27
- data/lib/wagn/config/environments/development.rb +17 -0
- data/lib/wagn/config/environments/test.rb +14 -1
- data/lib/wagn/config/initializers/airbrake.rb +1 -1
- data/lib/wagn/generators/wagn/templates/Gemfile +27 -9
- data/lib/wagn/generators/wagn/templates/config/application.rb +12 -3
- data/lib/wagn/generators/wagn/templates/simplecov +5 -0
- data/lib/wagn/generators/wagn/templates/spec/spec_helper.rb +1 -0
- data/lib/wagn/generators/wagn/wagn_generator.rb +75 -45
- data/lib/wagn/location.rb +9 -0
- data/lib/wagn/migration.rb +96 -0
- data/lib/wagn/mods_spec_helper.rb +16 -8
- data/lib/wagn/simplecov_helper.rb +61 -0
- data/lib/wagn/{wagn_spec_helper.rb → spec_helper.rb} +11 -3
- data/lib/wagn/tasks/test.rake +1 -1
- data/lib/wagn/tasks/wagn.rake +100 -34
- data/lib/wagn/version.rb +7 -2
- data/mod/{core → 01_core}/chunk/include.rb +0 -0
- data/mod/{core → 01_core}/chunk/link.rb +0 -0
- data/mod/{core → 01_core}/chunk/literal.rb +0 -0
- data/mod/{core → 01_core}/chunk/reference.rb +15 -3
- data/mod/{core → 01_core}/chunk/uri.rb +0 -0
- data/mod/{core → 01_core}/format/data_format.rb +0 -0
- data/mod/{core → 01_core}/format/html_format.rb +5 -2
- data/mod/{core → 01_core}/format/text_format.rb +0 -0
- data/mod/{core → 01_core}/layout/blank.html +0 -0
- data/mod/{core → 01_core}/layout/default.html +0 -0
- data/mod/{core → 01_core}/layout/noside.html +0 -0
- data/mod/{core → 01_core}/layout/pre.html +0 -0
- data/mod/{core → 01_core}/layout/simple.html +0 -0
- data/mod/{core → 01_core}/set/all/active_card.rb +0 -0
- data/mod/{core → 01_core}/set/all/collection.rb +33 -5
- data/mod/01_core/set/all/content.rb +144 -0
- data/mod/01_core/set/all/erb.rb +11 -0
- data/mod/{core → 01_core}/set/all/fetch.rb +8 -1
- data/mod/01_core/set/all/haml.rb +7 -0
- data/mod/{core → 01_core}/set/all/initialize.rb +4 -2
- data/mod/{core → 01_core}/set/all/name.rb +2 -3
- data/mod/01_core/set/all/notify.rb +215 -0
- data/mod/{core → 01_core}/set/all/pattern.rb +0 -0
- data/mod/{core → 01_core}/set/all/permissions.rb +1 -1
- data/mod/{core → 01_core}/set/all/phases.rb +24 -8
- data/mod/{core → 01_core}/set/all/references.rb +2 -2
- data/mod/{core → 01_core}/set/all/rules.rb +2 -2
- data/mod/{core → 01_core}/set/all/states.rb +1 -1
- data/mod/{core → 01_core}/set/all/templating.rb +4 -4
- data/mod/{core → 01_core}/set/all/tracked_attributes.rb +15 -64
- data/mod/{core → 01_core}/set/all/trash.rb +6 -5
- data/mod/{core → 01_core}/set/all/type.rb +0 -0
- data/mod/{core → 01_core}/set/all/utils.rb +1 -1
- data/mod/{core → 01_core}/set_pattern/01_all.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/02_all_plus.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/03_type.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/04_star.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/05_rstar.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/06_right.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/07_type_plus_right.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/08_self.rb +0 -0
- data/mod/01_core/spec/chunk/literal_spec.rb +14 -0
- data/{spec/mod/core → mod/01_core/spec}/chunk/uri_spec.rb +3 -3
- data/{spec/mod/core → mod/01_core/spec}/format/data_format_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/format/html_format_spec.rb +9 -8
- data/{spec/mod/core → mod/01_core/spec}/format/text_format_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/active_card_spec.rb +0 -0
- data/mod/01_core/spec/set/all/attribute_tracking_spec.rb +21 -0
- data/mod/01_core/spec/set/all/collection_spec.rb +65 -0
- data/mod/01_core/spec/set/all/content_spec.rb +15 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/fetch_spec.rb +70 -68
- data/{spec/mod/core → mod/01_core/spec}/set/all/initialize_spec.rb +12 -12
- data/{spec/mod/core → mod/01_core/spec}/set/all/name_spec.rb +7 -7
- data/mod/01_core/spec/set/all/notify_spec.rb +199 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/pattern_spec.rb +16 -16
- data/{spec/mod/core → mod/01_core/spec}/set/all/permissions_spec.rb +62 -62
- data/{spec/mod/core → mod/01_core/spec}/set/all/phases_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/references_spec.rb +1 -1
- data/{spec/mod/core → mod/01_core/spec}/set/all/rules2_spec.rb +57 -57
- data/mod/01_core/spec/set/all/rules_spec.rb +81 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/states_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/templating_spec.rb +16 -12
- data/{spec/mod/core → mod/01_core/spec}/set/all/tracked_attributes_spec.rb +24 -22
- data/{spec/mod/core → mod/01_core/spec}/set/all/trash_spec.rb +2 -2
- data/{spec/mod/core → mod/01_core/spec}/set/all/type_spec.rb +13 -13
- data/{spec/mod/core → mod/01_core/spec}/set/all/utils_spec.rb +0 -0
- data/mod/{core → 02_basic_types}/set/type/plain_text.rb +0 -0
- data/mod/{standard → 02_basic_types}/set/type/pointer.rb +21 -8
- data/{spec/mod/standard/set/type → mod/02_basic_types/spec/set}/plain_text_spec.rb +0 -0
- data/{spec/mod/standard/set/type → mod/02_basic_types/spec/set}/pointer_spec.rb +22 -9
- data/mod/{standard → 03_machines}/lib/card/machine.rb +3 -2
- data/mod/{standard → 03_machines}/lib/card/machine_input.rb +1 -1
- data/mod/{standard → 03_machines}/lib/javascript/html5shiv-printshiv.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery-ui.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.autosize.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.fileupload.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.iframe-transport.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.ui.autocomplete.html.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery_ujs.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquerymobile.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/tinymce.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/wagn.js.coffee +17 -9
- data/mod/{standard → 03_machines}/lib/javascript/wagn_menu.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/wagn_mod.js.coffee +1 -1
- data/mod/{standard → 03_machines}/lib/stylesheets/functional.scss +1 -1
- data/mod/{standard → 03_machines}/lib/stylesheets/jquery-ui-smoothness.css +0 -0
- data/mod/{standard → 03_machines}/lib/stylesheets/standard.scss +126 -21
- data/mod/{standard → 03_machines}/set/right/machine_output.rb +3 -2
- data/mod/{standard → 03_machines}/set/self/script_card_menu.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_html5shiv_printshiv.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_jquery.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_jquery_helper.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_slot.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_tinymce.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/style_functional.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/style_jquery_ui_smoothness.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/style_standard.rb +1 -1
- data/mod/{standard → 03_machines}/set/type/coffee_script.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/css.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/java_script.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/scss.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/skin.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/lib/machine_input_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/lib/machine_spec.rb +4 -4
- data/{spec/mod/standard → mod/03_machines/spec}/set/right/machine_output_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/self/style_functional_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/self/style_jquery_ui_smoothness_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/self/style_standard_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/coffeescript_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/css_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/javascript_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/scss_spec.rb +1 -1
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/skin_spec.rb +22 -0
- data/mod/04_settings/lib/card/setting.rb +57 -0
- data/mod/{core/set/right/structure.rb → 04_settings/set/right/add_help.rb} +0 -2
- data/mod/{standard → 04_settings}/set/right/comment.rb +0 -1
- data/mod/{standard → 04_settings}/set/right/create.rb +0 -1
- data/mod/04_settings/set/right/default.rb +3 -0
- data/mod/{standard → 04_settings}/set/right/delete.rb +2 -0
- data/mod/04_settings/set/right/help.rb +3 -0
- data/mod/{standard → 04_settings}/set/right/read.rb +0 -0
- data/mod/{standard → 04_settings}/set/right/script.rb +0 -0
- data/mod/04_settings/set/right/structure.rb +4 -0
- data/mod/{standard → 04_settings}/set/right/style.rb +0 -0
- data/mod/{standard → 04_settings}/set/right/update.rb +0 -0
- data/mod/04_settings/set/self/accountable.rb +2 -0
- data/mod/04_settings/set/self/add_help.rb +2 -0
- data/mod/04_settings/set/self/autoname.rb +2 -0
- data/mod/04_settings/set/self/captcha.rb +2 -0
- data/mod/04_settings/set/self/comment.rb +2 -0
- data/mod/04_settings/set/self/create.rb +2 -0
- data/mod/04_settings/set/self/default.rb +2 -0
- data/mod/04_settings/set/self/delete.rb +2 -0
- data/mod/04_settings/set/self/help.rb +2 -0
- data/mod/04_settings/set/self/input.rb +2 -0
- data/mod/04_settings/set/self/layout.rb +2 -0
- data/mod/04_settings/set/self/on_create.rb +2 -0
- data/mod/04_settings/set/self/on_delete.rb +2 -0
- data/mod/04_settings/set/self/on_update.rb +2 -0
- data/mod/04_settings/set/self/options.rb +2 -0
- data/mod/04_settings/set/self/options_label.rb +2 -0
- data/mod/04_settings/set/self/read.rb +2 -0
- data/mod/04_settings/set/self/script.rb +2 -0
- data/mod/04_settings/set/self/structure.rb +2 -0
- data/mod/04_settings/set/self/style.rb +2 -0
- data/mod/04_settings/set/self/table_of_contents.rb +2 -0
- data/mod/04_settings/set/self/thanks.rb +2 -0
- data/mod/04_settings/set/self/update.rb +2 -0
- data/mod/{standard → 04_settings}/set/type/setting.rb +8 -14
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/add_help_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/comment_spec.rb +5 -5
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/create_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/default_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/delete_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/help_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/read_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/script_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/structure_spec.rb +4 -2
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/style_spec.rb +1 -1
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/update_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/type/setting_spec.rb +0 -0
- data/mod/{standard → 05_standard}/file/103/icon-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/large-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/medium-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/original-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/small-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/79/icon-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/large-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/medium-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/original-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/small-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/790/icon-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/large-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/medium-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/original-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/small-6419.png +0 -0
- data/mod/{standard → 05_standard}/format/css_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/csv_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/file_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/js_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/json_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/rss_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/xml_format.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/account.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/all_css.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/all_csv.rb +1 -1
- data/mod/05_standard/set/all/all_js.rb +7 -0
- data/mod/{standard → 05_standard}/set/all/attach.rb +33 -33
- data/mod/{standard → 05_standard}/set/all/base.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/comment.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/event_viz.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/file.rb +0 -0
- data/mod/05_standard/set/all/follow.rb +51 -0
- data/mod/05_standard/set/all/history.rb +294 -0
- data/mod/{standard → 05_standard}/set/all/json.rb +2 -1
- data/mod/05_standard/set/all/observer.rb +27 -0
- data/mod/{standard → 05_standard}/set/all/rich_html.rb +21 -28
- data/mod/{standard → 05_standard}/set/all/rss.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/text.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/account.rb +53 -7
- data/mod/{standard → 05_standard}/set/right/email.rb +0 -1
- data/mod/{standard → 05_standard}/set/right/password.rb +1 -1
- data/mod/{standard → 05_standard}/set/right/salt.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/stats.rb +1 -1
- data/mod/{standard → 05_standard}/set/right/status.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/token.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/when_created.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/when_last_edited.rb +0 -0
- data/mod/{standard → 05_standard}/set/rstar/rules.rb +8 -7
- data/mod/{standard → 05_standard}/set/self/account_links.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/alerts.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/all.rb +1 -1
- data/mod/{standard → 05_standard}/set/self/foot.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/head.rb +21 -6
- data/mod/{standard → 05_standard}/set/self/navbox.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/now.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/recent.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/search.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/signin.rb +1 -1
- data/mod/{standard → 05_standard}/set/self/stats.rb +2 -2
- data/mod/{standard → 05_standard}/set/self/version.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/basic.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/cardtype.rb +4 -6
- data/mod/{standard → 05_standard}/set/type/date.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/file.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/html.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/image.rb +7 -6
- data/mod/{standard → 05_standard}/set/type/layout_type.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/number.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/phrase.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/search_type.rb +6 -3
- data/mod/{standard → 05_standard}/set/type/set.rb +16 -9
- data/mod/{standard → 05_standard}/set/type/signup.rb +16 -17
- data/mod/{standard → 05_standard}/set/type/toggle.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/user.rb +10 -11
- data/{spec/mod/standard → mod/05_standard/spec}/chunk/include_spec.rb +39 -39
- data/mod/05_standard/spec/chunk/link_spec.rb +61 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/css_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/csv_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/email_html_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/file_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/js_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/json_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/rss_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/xml_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/account_spec.rb +16 -16
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/all_css_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/all_csv_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/attach_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/base_spec.rb +10 -10
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/comment_spec.rb +0 -0
- data/mod/05_standard/spec/set/all/email_html_spec.rb +15 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/event_viz_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/file_spec.rb +0 -0
- data/mod/05_standard/spec/set/all/follow_spec.rb +83 -0
- data/mod/05_standard/spec/set/all/history_spec.rb +161 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/json_spec.rb +4 -4
- data/mod/05_standard/spec/set/all/observer_spec.rb +74 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/rich_html_spec.rb +14 -14
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/rss_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/text_spec.rb +0 -0
- data/mod/05_standard/spec/set/right/account_spec.rb +162 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/email_spec.rb +7 -7
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/password_spec.rb +7 -7
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/salt_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/stats_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/status_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/token_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/when_created_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/when_last_edited_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/rstar/rules_spec.rb +4 -4
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/account_links_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/alerts_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/all_spec.rb +7 -6
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/foot_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/head_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/navbox_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/now_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/recent_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/search_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/signin_spec.rb +12 -12
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/stats_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/version_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/basic_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/cardtype_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/date_spec.rb +0 -0
- data/mod/05_standard/spec/set/type/email_template_spec.rb +130 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/file_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/html_spec.rb +3 -3
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/image_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/layout_type_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/number_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/phrase_spec.rb +0 -0
- data/mod/05_standard/spec/set/type/search_type_spec.rb +27 -0
- data/mod/05_standard/spec/set/type/set_spec.rb +26 -0
- data/mod/05_standard/spec/set/type/signup_spec.rb +209 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/toggle_spec.rb +2 -2
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/user_spec.rb +0 -0
- data/mod/{standard → 06_email}/format/email_html_format.rb +0 -0
- data/mod/06_email/format/email_text_format.rb +7 -0
- data/mod/06_email/set/all/email_html.rb +9 -0
- data/mod/{standard/set/all/email_html.rb → 06_email/set/all/email_text.rb} +2 -1
- data/mod/06_email/set/right/bcc.rb +31 -0
- data/mod/06_email/set/right/cc.rb +2 -0
- data/mod/06_email/set/right/from.rb +2 -0
- data/mod/06_email/set/right/html_message.rb +3 -0
- data/mod/06_email/set/right/to.rb +2 -0
- data/mod/06_email/set/type/email_template.rb +99 -0
- data/spec/controllers/card_controller_spec.rb +34 -46
- data/spec/lib/card/action_spec.rb +14 -0
- data/spec/lib/card/chunk_spec.rb +3 -3
- data/spec/lib/card/codename_spec.rb +5 -5
- data/spec/lib/card/content_spec.rb +25 -25
- data/spec/lib/card/diff_spec.rb +107 -107
- data/spec/lib/card/format_spec.rb +11 -11
- data/spec/lib/card/loader_spec.rb +35 -29
- data/spec/lib/card/name_spec.rb +82 -82
- data/spec/lib/card/query_spec.rb +83 -82
- data/spec/lib/card/reference_spec.rb +30 -30
- data/spec/lib/card/set_pattern_spec.rb +1 -1
- data/spec/lib/card/set_spec.rb +86 -82
- data/spec/lib/wagn/cache_spec.rb +24 -24
- data/spec/mailers/mailer_spec.rb +41 -30
- data/spec/models/card/cardtype_spec.rb +19 -19
- data/spec/models/card/create_spec.rb +14 -14
- data/spec/models/card/trash_spec.rb +37 -36
- data/spec/models/card/type_transition_spec.rb +13 -13
- data/spec/models/card/validation_spec.rb +6 -6
- data/spec/models/card_spec.rb +40 -39
- data/spec/spec_helper.rb +37 -11
- data/test/fixtures/card_actions.yml +4726 -0
- data/test/fixtures/card_acts.yml +589 -0
- data/test/fixtures/card_changes.yml +12644 -0
- data/test/fixtures/card_references.yml +976 -591
- data/test/fixtures/cards.yml +4544 -2781
- data/test/seed.rb +14 -13
- data/wagn.gemspec +4 -0
- metadata +404 -403
- data/db/bootstrap/card_revisions.yml +0 -3379
- data/lib/card/flexmail.rb +0 -53
- data/lib/card/mailer/change_notice.html.erb +0 -32
- data/lib/card/mailer/confirmation_email.html.erb +0 -12
- data/lib/card/mailer/flexmail.html.erb +0 -6
- data/lib/card/mailer/password_reset.html.erb +0 -9
- data/lib/card/mailer/signup_alert.html.erb +0 -14
- data/lib/card/revision.rb +0 -47
- data/lib/wagn/migration_helper.rb +0 -34
- data/mod/core/set/all/attribute_tracking.rb +0 -85
- data/mod/core/set/all/content.rb +0 -94
- data/mod/standard/set/all/flexmail.rb +0 -3
- data/mod/standard/set/all/follow.rb +0 -119
- data/mod/standard/set/all/history.rb +0 -107
- data/mod/standard/set/right/add_help.rb +0 -3
- data/mod/standard/set/right/default.rb +0 -3
- data/mod/standard/set/right/help.rb +0 -3
- data/spec/lib/card/flexmail_spec.rb +0 -209
- data/spec/lib/card/revision_spec.rb +0 -30
- data/spec/mod/core/chunk/literal_spec.rb +0 -14
- data/spec/mod/core/set/all/attribute_tracking_spec.rb +0 -21
- data/spec/mod/core/set/all/collection_spec.rb +0 -45
- data/spec/mod/core/set/all/content_spec.rb +0 -14
- data/spec/mod/core/set/all/rules_spec.rb +0 -98
- data/spec/mod/standard/chunk/link_spec.rb +0 -59
- data/spec/mod/standard/set/all/email_html_spec.rb +0 -13
- data/spec/mod/standard/set/all/flexmail_spec.rb +0 -5
- data/spec/mod/standard/set/all/follow_spec.rb +0 -95
- data/spec/mod/standard/set/all/history_spec.rb +0 -10
- data/spec/mod/standard/set/right/account_spec.rb +0 -90
- data/spec/mod/standard/set/type/search_type_spec.rb +0 -27
- data/spec/mod/standard/set/type/set_spec.rb +0 -26
- data/spec/mod/standard/set/type/signup_spec.rb +0 -169
- data/test/fixtures/card_revisions.yml +0 -4560
data/lib/wagn/location.rb
CHANGED
@@ -41,6 +41,15 @@ module Wagn::Location
|
|
41
41
|
def url_key_for_location(location)
|
42
42
|
location.match( /\/([^\/]*$)/ ) ? $1 : nil
|
43
43
|
end
|
44
|
+
|
45
|
+
def save_interrupted_action uri
|
46
|
+
uri = path(uri) if Hash === uri
|
47
|
+
session[:interrupted_action] = uri
|
48
|
+
end
|
49
|
+
|
50
|
+
def interrupted_action
|
51
|
+
session.delete :interrupted_action
|
52
|
+
end
|
44
53
|
|
45
54
|
# -----------( urls and redirects from application.rb) ----------------
|
46
55
|
|
@@ -0,0 +1,96 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
|
3
|
+
class Wagn::Migration < ActiveRecord::Migration
|
4
|
+
def self.card_migration_paths
|
5
|
+
Wagn.paths['db/migrate_cards'].to_a
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.deck_card_migration_paths
|
9
|
+
Wagn.paths['db/migrate_deck_cards'].to_a
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.schema_mode type
|
13
|
+
new_suffix = case type.to_s
|
14
|
+
when /card/ then '_cards'
|
15
|
+
when /deck/ then '_deck_cards'
|
16
|
+
else ''
|
17
|
+
end
|
18
|
+
original_suffix = ActiveRecord::Base.table_name_suffix
|
19
|
+
ActiveRecord::Base.table_name_suffix = new_suffix
|
20
|
+
yield
|
21
|
+
ActiveRecord::Base.table_name_suffix = original_suffix
|
22
|
+
end
|
23
|
+
|
24
|
+
def contentedly &block
|
25
|
+
Wagn::Cache.reset_global
|
26
|
+
Wagn::Migration.schema_mode '' do
|
27
|
+
Card::Auth.as_bot do
|
28
|
+
ActiveRecord::Base.transaction do
|
29
|
+
begin
|
30
|
+
yield
|
31
|
+
ensure
|
32
|
+
Wagn::Cache.reset_global
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def import_json filename, root=Wagn::Migration.deck_card_migration_paths.first
|
40
|
+
Wagn.config.action_mailer.perform_deliveries = false
|
41
|
+
raw_json = File.read File.join(root , 'data', filename )
|
42
|
+
json = JSON.parse raw_json
|
43
|
+
Card.merge_list json["card"]["value"], :output_file=>File.join(root,"unmerged_#{ filename }")
|
44
|
+
end
|
45
|
+
|
46
|
+
def import_json_to_core filename
|
47
|
+
import_json filename, Wagn::Migration.card_migration_paths.first
|
48
|
+
end
|
49
|
+
|
50
|
+
# Execute this migration in the named direction
|
51
|
+
# copied from ActiveRecord to wrap "up" in "contentendly"
|
52
|
+
def migrate(direction)
|
53
|
+
return unless respond_to?(direction)
|
54
|
+
|
55
|
+
case direction
|
56
|
+
when :up then announce "migrating"
|
57
|
+
when :down then announce "reverting"
|
58
|
+
end
|
59
|
+
|
60
|
+
time = nil
|
61
|
+
ActiveRecord::Base.connection_pool.with_connection do |conn|
|
62
|
+
@connection = conn
|
63
|
+
if respond_to?(:change)
|
64
|
+
if direction == :down
|
65
|
+
recorder = CommandRecorder.new(@connection)
|
66
|
+
suppress_messages do
|
67
|
+
@connection = recorder
|
68
|
+
change
|
69
|
+
end
|
70
|
+
@connection = conn
|
71
|
+
time = Benchmark.measure {
|
72
|
+
self.revert {
|
73
|
+
recorder.inverse.each do |cmd, args|
|
74
|
+
send(cmd, *args)
|
75
|
+
end
|
76
|
+
}
|
77
|
+
}
|
78
|
+
else
|
79
|
+
time = Benchmark.measure { change }
|
80
|
+
end
|
81
|
+
else
|
82
|
+
time = Benchmark.measure { contentedly { send(direction) } }
|
83
|
+
end
|
84
|
+
@connection = nil
|
85
|
+
end
|
86
|
+
|
87
|
+
case direction
|
88
|
+
when :up then announce "migrated (%.4fs)" % time.real; write
|
89
|
+
when :down then announce "reverted (%.4fs)" % time.real; write
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
def down
|
94
|
+
raise ActiveRecord::IrreversibleMigration
|
95
|
+
end
|
96
|
+
end
|
@@ -5,11 +5,19 @@ ENV["RAILS_ENV"] = 'test'
|
|
5
5
|
|
6
6
|
|
7
7
|
Spork.prefork do
|
8
|
+
require File.expand_path( '../simplecov_helper.rb', __FILE__ )
|
9
|
+
|
8
10
|
if ENV["RAILS_ROOT"]
|
9
11
|
require File.join( ENV["RAILS_ROOT"], '/config/environment')
|
10
12
|
else
|
11
13
|
require File.expand_path( '../../config/environment', __FILE__ )
|
12
14
|
end
|
15
|
+
|
16
|
+
if defined?(Bundler)
|
17
|
+
Bundler.require(:test) # if simplecov is activated in the Gemfile, it has to be required here
|
18
|
+
end
|
19
|
+
|
20
|
+
|
13
21
|
|
14
22
|
require 'rspec/rails'
|
15
23
|
|
@@ -21,14 +29,13 @@ Spork.prefork do
|
|
21
29
|
JOE_USER_ID = Card['joe_user'].id
|
22
30
|
|
23
31
|
RSpec.configure do |config|
|
24
|
-
|
25
|
-
config.include RSpec::Rails::Matchers::RoutingMatchers, :example_group => {
|
32
|
+
config.include RSpec::Rails::Matchers::RoutingMatchers, {
|
26
33
|
:file_path => /\bspec\/controllers\//
|
27
34
|
}
|
28
|
-
|
29
|
-
format_index = ARGV.find_index {|arg| arg =~ /--format/ }
|
30
|
-
formatter = format_index ? ARGV[ format_index + 1 ] : 'documentation'
|
31
|
-
config.add_formatter formatter
|
35
|
+
config.infer_spec_type_from_file_location!
|
36
|
+
# format_index = ARGV.find_index {|arg| arg =~ /--format/ }
|
37
|
+
# formatter = format_index ? ARGV[ format_index + 1 ] : 'documentation'
|
38
|
+
# config.add_formatter formatter
|
32
39
|
|
33
40
|
#config.include CustomMatchers
|
34
41
|
#config.include ControllerMacros, :type=>:controllers
|
@@ -59,6 +66,7 @@ Spork.each_run do
|
|
59
66
|
# This code will be run each time you run your specs.
|
60
67
|
end
|
61
68
|
|
62
|
-
require 'wagn/
|
63
|
-
RSpec::Core::ExampleGroup.send :include, Wagn::
|
69
|
+
require 'wagn/spec_helper'
|
70
|
+
RSpec::Core::ExampleGroup.send :include, Wagn::SpecHelper
|
71
|
+
|
64
72
|
|
@@ -0,0 +1,61 @@
|
|
1
|
+
def wagn_simplecov_filters
|
2
|
+
add_filter 'spec/'
|
3
|
+
add_filter '/config/'
|
4
|
+
add_filter '/tasks/'
|
5
|
+
|
6
|
+
# filter all wagn mods
|
7
|
+
add_filter do |src_file|
|
8
|
+
src_file.filename =~ /tmp\// and not
|
9
|
+
/\d+-(.+\.rb)/.match(src_file.filename) { |m| Dir["mod/**/#{m[1]}"].present? }
|
10
|
+
end
|
11
|
+
|
12
|
+
# add group for each deck mod
|
13
|
+
Dir['mod/*'].map{ |path| path.sub('mod/','') }.each do |mod|
|
14
|
+
add_group mod.capitalize do |src_file|
|
15
|
+
src_file.filename =~ /mod\/#{mod}\// or
|
16
|
+
(
|
17
|
+
src_file.filename =~ /tmp\// and
|
18
|
+
/\d+-(.+\.rb)/.match(src_file.filename) { |m| Dir["mod/#{mod}/**/#{m[1]}"].present? }
|
19
|
+
)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
add_group 'Sets' do |src_file|
|
24
|
+
src_file.filename =~ /tmp\/set\// and
|
25
|
+
/\d+-(.+\.rb)/.match(src_file.filename) { |m| Dir["mod/**/#{m[1]}"].present? }
|
26
|
+
end
|
27
|
+
add_group 'Set patterns' do |src_file|
|
28
|
+
src_file.filename =~ /tmp\/set_pattern\// and
|
29
|
+
/\d+-(.+\.rb)/.match(src_file.filename) { |m| Dir["mod/**/#{m[1]}"].present? }
|
30
|
+
end
|
31
|
+
add_group 'Formats' do |src_file|
|
32
|
+
src_file.filename =~ /mod\/[^\/]+\/formats/
|
33
|
+
end
|
34
|
+
add_group 'Chunks' do |src_file|
|
35
|
+
src_file.filename =~ /mod\/[^\/]+\/chunks/
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def wagn_core_dev_simplecov_filters
|
40
|
+
filters.clear # This will remove the :root_filter that comes via simplecov's defaults
|
41
|
+
add_filter do |src|
|
42
|
+
!(src.filename =~ /^#{SimpleCov.root}/) unless src.filename =~ /wagn/
|
43
|
+
end
|
44
|
+
|
45
|
+
add_filter '/spec/'
|
46
|
+
add_filter '/features/'
|
47
|
+
add_filter '/config/'
|
48
|
+
add_filter '/tasks/'
|
49
|
+
add_filter '/generators/'
|
50
|
+
add_filter 'lib/wagn'
|
51
|
+
|
52
|
+
add_group 'Card', 'lib/card'
|
53
|
+
add_group 'Set Patterns', 'tmp/set_pattern/'
|
54
|
+
add_group 'Sets', 'tmp/set/'
|
55
|
+
add_group 'Formats' do |src_file|
|
56
|
+
src_file.filename =~ /mod\/[^\/]+\/format/
|
57
|
+
end
|
58
|
+
add_group 'Chunks' do |src_file|
|
59
|
+
src_file.filename =~ /mod\/[^\/]+\/chunk/
|
60
|
+
end
|
61
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
module Wagn::
|
1
|
+
module Wagn::SpecHelper
|
2
2
|
|
3
3
|
include ActionDispatch::Assertions::SelectorAssertions
|
4
4
|
#~~~~~~~~~ HELPER METHODS ~~~~~~~~~~~~~~~#
|
@@ -31,12 +31,20 @@ module Wagn::WagnSpecHelper
|
|
31
31
|
end
|
32
32
|
|
33
33
|
def render_content content, format_args={}
|
34
|
+
render_content_with_args( content, format_args )
|
35
|
+
end
|
36
|
+
|
37
|
+
def render_content_with_args content, format_args={}, view_args={}
|
34
38
|
@card ||= Card.new :name=>"Tempo Rary 2"
|
35
39
|
@card.content = content
|
36
|
-
@card.format(format_args)._render :core
|
40
|
+
@card.format(format_args)._render :core, view_args
|
37
41
|
end
|
38
42
|
|
39
43
|
def render_card view, card_args={}, format_args={}
|
44
|
+
render_card_with_args view, card_args, format_args
|
45
|
+
end
|
46
|
+
|
47
|
+
def render_card_with_args view, card_args={}, format_args={}, view_args={}
|
40
48
|
card = begin
|
41
49
|
if card_args[:name]
|
42
50
|
Card.fetch card_args[:name], :new=>card_args
|
@@ -44,6 +52,6 @@ module Wagn::WagnSpecHelper
|
|
44
52
|
Card.new card_args.merge( :name=> 'Tempo Rary' )
|
45
53
|
end
|
46
54
|
end
|
47
|
-
card.format(format_args)._render(view)
|
55
|
+
card.format(format_args)._render(view, view_args)
|
48
56
|
end
|
49
57
|
end
|
data/lib/wagn/tasks/test.rake
CHANGED
@@ -69,7 +69,7 @@ namespace :test do
|
|
69
69
|
# which dumps with slashes that syck can't understand (also !!null stuff)
|
70
70
|
|
71
71
|
sql = "SELECT * FROM %s"
|
72
|
-
tables = %w{ cards
|
72
|
+
tables = %w{ cards card_acts card_actions card_changes card_references }
|
73
73
|
ActiveRecord::Base.establish_connection
|
74
74
|
tables.each do |table_name|
|
75
75
|
i = "000"
|
data/lib/wagn/tasks/wagn.rake
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
WAGN_BOOTSTRAP_TABLES = %w{ cards
|
2
|
+
WAGN_BOOTSTRAP_TABLES = %w{ cards card_actions card_acts card_changes card_references }
|
3
3
|
|
4
4
|
namespace :wagn do
|
5
5
|
desc "create a wagn database from scratch"
|
@@ -72,20 +72,28 @@ namespace :wagn do
|
|
72
72
|
Rake::Task['wagn:migrate:stamp'].invoke ''
|
73
73
|
end
|
74
74
|
|
75
|
-
puts 'migrating cards'
|
75
|
+
puts 'migrating core cards'
|
76
76
|
Wagn::Cache.reset_global
|
77
77
|
Rake::Task['wagn:migrate:cards'].execute #not invoke because we don't want to reload environment
|
78
78
|
if stamp
|
79
79
|
Rake::Task['wagn:migrate:stamp'].reenable
|
80
80
|
Rake::Task['wagn:migrate:stamp'].invoke '_cards'
|
81
81
|
end
|
82
|
+
|
83
|
+
puts 'migrating deck cards'
|
84
|
+
Rake::Task['wagn:migrate:deck_cards'].execute #not invoke because we don't want to reload environment
|
85
|
+
if stamp
|
86
|
+
Rake::Task['wagn:migrate:stamp'].reenable
|
87
|
+
Rake::Task['wagn:migrate:stamp'].invoke '_deck'
|
88
|
+
end
|
89
|
+
|
82
90
|
Wagn::Cache.reset_global
|
83
91
|
end
|
84
92
|
|
85
93
|
desc 'insert existing card migrations into schema_migrations_cards to avoid re-migrating'
|
86
94
|
task :assume_card_migrations do
|
87
|
-
Wagn::
|
88
|
-
ActiveRecord::Schema.assume_migrated_upto_version Wagn::Version.schema(:cards), Wagn::
|
95
|
+
Wagn::Migration.schema_mode :card do
|
96
|
+
ActiveRecord::Schema.assume_migrated_upto_version Wagn::Version.schema(:cards), Wagn::Migration.card_migration_paths
|
89
97
|
end
|
90
98
|
end
|
91
99
|
|
@@ -96,11 +104,28 @@ namespace :wagn do
|
|
96
104
|
Wagn::Cache.reset_global
|
97
105
|
ENV['SCHEMA'] = "#{Wagn.gem_root}/db/schema.rb"
|
98
106
|
Wagn.config.action_mailer.perform_deliveries = false
|
107
|
+
Card.reset_column_information
|
108
|
+
# this is needed in production mode to insure core db structures are loaded before schema_mode is set
|
109
|
+
|
110
|
+
|
111
|
+
paths = ActiveRecord::Migrator.migrations_paths = Wagn::Migration.card_migration_paths
|
112
|
+
|
113
|
+
Wagn::Migration.schema_mode :card do
|
114
|
+
ActiveRecord::Migration.verbose = ENV["VERBOSE"] ? ENV["VERBOSE"] == "true" : true
|
115
|
+
ActiveRecord::Migrator.migrate paths, ENV["VERSION"] ? ENV["VERSION"].to_i : nil
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
desc "migrate deck cards"
|
120
|
+
task :deck_cards => :environment do
|
121
|
+
Wagn::Cache.reset_global
|
122
|
+
ENV['SCHEMA'] = "#{Rails.root}/db/schema.rb"
|
123
|
+
Wagn.config.action_mailer.perform_deliveries = false
|
99
124
|
Card # this is needed in production mode to insure core db structures are loaded before schema_mode is set
|
100
125
|
|
101
|
-
paths = ActiveRecord::Migrator.migrations_paths = Wagn::
|
126
|
+
paths = ActiveRecord::Migrator.migrations_paths = Wagn::Migration.deck_card_migration_paths
|
102
127
|
|
103
|
-
Wagn::
|
128
|
+
Wagn::Migration.schema_mode :deck do
|
104
129
|
ActiveRecord::Migration.verbose = ENV["VERBOSE"] ? ENV["VERBOSE"] == "true" : true
|
105
130
|
ActiveRecord::Migrator.migrate paths, ENV["VERSION"] ? ENV["VERSION"].to_i : nil
|
106
131
|
end
|
@@ -112,7 +137,7 @@ namespace :wagn do
|
|
112
137
|
Wagn.config.action_mailer.perform_deliveries = false
|
113
138
|
|
114
139
|
stamp_file = Wagn::Version.schema_stamp_path( args[:suffix] )
|
115
|
-
Wagn::
|
140
|
+
Wagn::Migration.schema_mode args[:suffix ] do
|
116
141
|
version = ActiveRecord::Migrator.current_version
|
117
142
|
puts ">> writing version: #{version} to #{stamp_file}"
|
118
143
|
if file = open(stamp_file, 'w')
|
@@ -122,31 +147,59 @@ namespace :wagn do
|
|
122
147
|
end
|
123
148
|
end
|
124
149
|
|
150
|
+
|
151
|
+
namespace :emergency do
|
152
|
+
task :rescue_watchers => :environment do
|
153
|
+
follower_hash = Hash.new { |h, v| h[v] = [] }
|
154
|
+
|
155
|
+
Card.where("right_id" => 219).each do |watcher_list|
|
156
|
+
watcher_list.include_set_modules
|
157
|
+
if watcher_list.left
|
158
|
+
watching = watcher_list.left.name
|
159
|
+
watcher_list.item_names.each do |user|
|
160
|
+
follower_hash[user] << watching
|
161
|
+
end
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
165
|
+
Card.search(:right=>{:codename=>"following"}).each do |following|
|
166
|
+
Card::Auth.as_bot do
|
167
|
+
following.update_attributes! :content=>''
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
171
|
+
follower_hash.each do |user, items|
|
172
|
+
if card=Card.fetch(user) and card.account
|
173
|
+
Card::Auth.as(user) do
|
174
|
+
following = card.fetch :trait=>"following", :new=>{}
|
175
|
+
following.items = items
|
176
|
+
end
|
177
|
+
end
|
178
|
+
end
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
125
182
|
namespace :bootstrap do
|
126
|
-
desc "rid template of unneeded cards,
|
183
|
+
desc "rid template of unneeded cards, acts, actions, changes, and references"
|
127
184
|
task :clean => :environment do
|
128
185
|
Wagn::Cache.reset_global
|
129
|
-
|
186
|
+
conn = ActiveRecord::Base.connection
|
130
187
|
# Correct time and user stamps
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
188
|
+
card_sql = "update cards set created_at=now(), creator_id=#{ Card::WagnBotID }"
|
189
|
+
card_sql += ",updated_at=now(), updater_id=#{ Card::WagnBotID }"
|
190
|
+
conn.update card_sql
|
191
|
+
act_sql = "update card_acts set acted_at=now(), actor_id=#{ Card::WagnBotID }"
|
192
|
+
conn.update act_sql
|
136
193
|
|
137
194
|
Card::Auth.as_bot do
|
138
195
|
# delete ignored cards
|
139
196
|
|
140
197
|
if ignoramus = Card['*ignore']
|
141
198
|
ignoramus.item_cards.each do |card|
|
142
|
-
if card.account #have to get rid of revisions to delete account
|
143
|
-
#(could also directly delete cards "manually", but would need to delete all descendants manually, too)
|
144
|
-
ActiveRecord::Base.connection.delete( "delete from card_revisions where card_id = #{card.id}" )
|
145
|
-
end
|
146
199
|
card.delete!
|
147
200
|
end
|
148
201
|
end
|
149
|
-
|
202
|
+
Wagn::Cache.reset_global
|
150
203
|
%w{ machine_input machine_output }.each do |codename|
|
151
204
|
Card.search(:right=>{:codename=>codename }).each do |card|
|
152
205
|
FileUtils.rm_rf File.join('files', card.id.to_s ), :secure=>true
|
@@ -155,18 +208,25 @@ namespace :wagn do
|
|
155
208
|
end
|
156
209
|
end
|
157
210
|
|
158
|
-
|
211
|
+
conn.delete( "delete from cards where trash is true" )
|
159
212
|
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
213
|
+
Card::Action.delete_cardless
|
214
|
+
Card::Action.delete_old
|
215
|
+
Card::Change.delete_actionless
|
216
|
+
|
217
|
+
|
218
|
+
act = Card::Act.create!(:actor_id=>Card::WagnBotID,
|
219
|
+
:card_id=>Card::WagnBotID)
|
220
|
+
Card::Action.find_each do |action|
|
221
|
+
action.update_attributes!(:card_act_id=>act.id)
|
222
|
+
end
|
223
|
+
Card::Act.where('id != ?',act.id).delete_all
|
224
|
+
conn.delete( "delete from card_references where" +
|
165
225
|
" (referee_id is not null and not exists (select * from cards where cards.id = card_references.referee_id)) or " +
|
166
226
|
" ( referer_id is not null and not exists (select * from cards where cards.id = card_references.referer_id));"
|
167
227
|
)
|
168
228
|
|
169
|
-
|
229
|
+
conn.delete( "delete from sessions" )
|
170
230
|
|
171
231
|
Wagn::Cache.reset_global
|
172
232
|
|
@@ -202,18 +262,24 @@ namespace :wagn do
|
|
202
262
|
|
203
263
|
desc "copy files from template database to standard mod and update cards"
|
204
264
|
task :copy_mod_files => :environment do
|
205
|
-
template_files_dir = "#{Wagn.root}/files"
|
206
|
-
standard_files_dir = "#{Wagn.gem_root}/mod/standard/file"
|
207
265
|
|
208
|
-
|
266
|
+
mod_name = '05_standard'
|
267
|
+
template_files_dir = "#{Wagn.root}/files"
|
268
|
+
standard_files_dir = "#{Wagn.gem_root}/mod/#{mod_name}/file"
|
209
269
|
|
210
270
|
FileUtils.remove_dir standard_files_dir, force=true
|
211
271
|
FileUtils.cp_r template_files_dir, standard_files_dir
|
212
|
-
|
213
|
-
# add a fourth line to the raw content of each image (or file) to identify it as a mod file
|
214
|
-
Card.
|
215
|
-
|
216
|
-
|
272
|
+
|
273
|
+
# add a fourth line to the raw content of each image (or file) to identify it as a mod file
|
274
|
+
Card::Auth.as_bot do
|
275
|
+
Card.search( :type=>['in', 'Image', 'File'], :ne=>'' ).each do |card|
|
276
|
+
unless card.db_content.split(/\n/).last == mod_name
|
277
|
+
new_content = card.db_content + "\n#{mod_name}"
|
278
|
+
card.update_column :db_content, new_content
|
279
|
+
card.last_action.change_for(2).first.update_column :value, new_content
|
280
|
+
#FIXME - should technically update the change as well...
|
281
|
+
end
|
282
|
+
end
|
217
283
|
end
|
218
284
|
end
|
219
285
|
|