spree_core 0.30.0.beta1 → 0.30.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +3 -12
- data/app/controllers/admin/adjustments_controller.rb +1 -17
- data/app/controllers/admin/base_controller.rb +12 -6
- data/app/controllers/admin/line_items_controller.rb +6 -29
- data/app/controllers/admin/mail_methods_controller.rb +13 -0
- data/app/controllers/admin/orders_controller.rb +32 -10
- data/app/controllers/admin/payments_controller.rb +15 -31
- data/app/controllers/admin/products_controller.rb +40 -41
- data/app/controllers/admin/reports_controller.rb +15 -14
- data/app/controllers/admin/return_authorizations_controller.rb +3 -16
- data/app/controllers/admin/shipments_controller.rb +8 -18
- data/app/controllers/admin/taxons_controller.rb +3 -3
- data/app/controllers/admin/users_controller.rb +5 -4
- data/app/controllers/checkout_controller.rb +26 -8
- data/app/controllers/orders_controller.rb +22 -10
- data/app/controllers/password_resets_controller.rb +0 -1
- data/app/controllers/products_controller.rb +2 -3
- data/app/controllers/spree/base_controller.rb +8 -0
- data/app/controllers/taxons_controller.rb +4 -4
- data/app/helpers/admin/navigation_helper.rb +4 -3
- data/app/helpers/checkout_helper.rb +1 -6
- data/app/helpers/spree/base_helper.rb +2 -0
- data/app/mailers/order_mailer.rb +19 -0
- data/app/mailers/shipment_mailer.rb +11 -0
- data/app/models/address.rb +3 -9
- data/app/models/adjustment.rb +3 -2
- data/app/models/app_configuration.rb +3 -16
- data/app/models/creditcard.rb +51 -45
- data/app/models/inventory_unit.rb +77 -80
- data/app/models/line_item.rb +33 -4
- data/app/models/log_entry.rb +3 -0
- data/app/models/mail_method.rb +23 -0
- data/app/models/order.rb +79 -177
- data/app/models/payment.rb +21 -18
- data/app/models/payment_method.rb +3 -3
- data/app/models/return_authorization.rb +11 -7
- data/app/models/shipment.rb +64 -40
- data/app/models/user.rb +1 -1
- data/app/models/variant.rb +6 -6
- data/app/views/admin/adjustments/index.html.erb +2 -32
- data/app/views/admin/configurations/index.html.erb +3 -3
- data/app/views/admin/mail_methods/_form.html.erb +96 -0
- data/app/views/admin/mail_methods/edit.html.erb +9 -0
- data/app/views/admin/mail_methods/index.html.erb +41 -0
- data/app/views/admin/mail_methods/new.html.erb +9 -0
- data/app/views/admin/orders/_form.html.erb +3 -4
- data/app/views/admin/{checkouts/_form.html.erb → orders/_user_form.html.erb} +10 -10
- data/app/views/admin/orders/edit.html.erb +1 -0
- data/app/views/admin/orders/index.html.erb +10 -6
- data/app/views/admin/orders/new.html.erb +1 -0
- data/app/views/admin/orders/show.html.erb +3 -2
- data/app/views/admin/{checkouts/edit.html.erb → orders/user.html.erb} +8 -5
- data/app/views/admin/payments/_list.html.erb +5 -7
- data/app/views/admin/payments/index.html.erb +3 -8
- data/app/views/admin/payments/new.html.erb +1 -1
- data/app/views/admin/payments/source_views/_gateway.html.erb +0 -1
- data/app/views/admin/reports/sales_total.html.erb +2 -6
- data/app/views/admin/return_authorizations/_form.html.erb +24 -12
- data/app/views/admin/return_authorizations/edit.html.erb +1 -1
- data/app/views/admin/return_authorizations/index.html.erb +6 -4
- data/app/views/admin/shared/_address_form.html.erb +20 -17
- data/app/views/admin/shared/_adjustments_table.html.erb +21 -0
- data/app/views/admin/shared/_configuration_menu.html.erb +1 -1
- data/app/views/admin/shared/_destroy.js.erb +3 -0
- data/app/views/admin/shared/_new_adjustment_button.html.erb +8 -0
- data/app/views/admin/shared/_order_tabs.html.erb +26 -22
- data/app/views/admin/shared/_report_criteria.html.erb +2 -2
- data/app/views/admin/shared/_update_order_state.js +6 -0
- data/app/views/admin/shipments/_form.html.erb +5 -11
- data/app/views/admin/shipments/edit.html.erb +4 -4
- data/app/views/admin/taxons/_form.html.erb +2 -2
- data/app/views/admin/taxons/_taxon_table.html.erb +3 -8
- data/app/views/admin/taxons/available.js.erb +4 -7
- data/app/views/admin/taxons/select.js.erb +2 -0
- data/app/views/admin/variants/index.html.erb +1 -1
- data/app/views/checkout/_address.html.erb +2 -0
- data/app/views/checkout/_delivery.html.erb +3 -3
- data/app/views/checkout/_payment.html.erb +23 -18
- data/app/views/checkout/_summary.html.erb +0 -10
- data/app/views/checkout/payment/_gateway.html.erb +1 -1
- data/app/views/checkout/registration.html.erb +20 -0
- data/app/views/layouts/admin.html.erb +2 -2
- data/app/views/order_mailer/{cancel.html.erb → cancel_email.text.erb} +4 -4
- data/app/views/order_mailer/{confirm.html.erb → confirm_email.text.erb} +3 -3
- data/app/views/orders/_line_item.html.erb +1 -3
- data/app/views/orders/edit.html.erb +1 -1
- data/app/views/shared/_basic_layout.html.erb +44 -0
- data/app/views/shared/_google_analytics.html.erb +23 -22
- data/app/views/shared/_head.html.erb +1 -1
- data/app/views/shared/_products.html.erb +1 -1
- data/app/views/shipment_mailer/shipped_email.text.erb +15 -0
- data/app/views/taxons/_taxon.html.erb +2 -2
- data/config/initializers/spree.rb +6 -2
- data/config/locales/{en_spree.yml → en.yml} +47 -17
- data/config/routes.rb +15 -8
- data/{lib/generators/templates/db → db}/default/countries.yml +0 -0
- data/{lib/generators/templates/db → db}/default/roles.yml +0 -0
- data/{lib/generators/templates/db → db}/default/states.yml +0 -0
- data/{lib/generators/templates/db → db}/default/zone_members.yml +0 -0
- data/{lib/generators/templates/db → db}/default/zones.yml +0 -0
- data/{lib/generators/templates/db → db}/migrate/20090823005402_spree_zero_nine_zero.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20090904192342_create_indexes_for_inventory_units.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20090923100315_add_count_on_hand_to_variants_and_products.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20091007134354_change_taxons_to_nested_set.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20091008091614_move_to_configurable_gateways.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20091012120519_product_groups_and_scopes.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20091015110842_add_open_id_authentication_tables.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20091015153048_add_openid_field_to_users.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20091016174634_change_preference_value_type.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20091017175558_create_billing_integrations.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20091021133257_charge_refactoring.rb +7 -4
- data/{lib/generators/templates/db → db}/migrate/20091104151730_add_some_indexes.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20091126190904_checkout_state_machine.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20091209153045_state_for_shipments.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20091209202200_make_state_events_polymorphic.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20091211203813_ship_address_id_for_checkouts.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20091212161118_shipping_method_id_for_checkouts.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20091213222815_creditcard_last_four_digits.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20091214183826_populate_legacy_shipment_state.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100105090147_add_cost_price.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100105132138_shipment_id_for_inventory_units.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100111205525_cim_fields_for_creditcards.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100112151511_create_return_authorizations.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100113090919_add_return_authorization_to_inventory_units.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100113203104_create_trackers.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100121160010_creditcard_id_for_creditcard_txns.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100121183934_original_creditcard_txn_id_for_creditcard_txns.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100125145351_add_test_mode_to_billing_integration.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100126103714_create_products_product_groups.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100209025806_create_payment_methods.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100209144531_polymorphic_payments.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100213103131_change_payments_payment_method_to_belongs_to.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100214212536_assign_creditcard_txns_to_payment.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100223170312_sti_for_transactions.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100223183812_drop_billing_integrations.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100224153127_deleted_at_for_payment_methods.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100301163454_add_adjustments_index.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100306153445_fix_by_popularity.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100317120946_add_alt_text_to_images.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100427121301_add_display_to_payment_methods.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100504142133_add_addresses_checkouts_indexes.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100506180619_add_icon_to_taxons.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100506185838_add_description_to_taxons.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100528155333_index_for_shipments_number.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100528185820_add_index_on_users_persistence_token.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100605152042_add_default_to_tax_categories.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100624110730_add_display_to_shipping_methods.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100624123336_rename_payment_method_display.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100624175547_rename_preferences_field.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100811163637_add_guest_flag.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100811205836_drop_order_token.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100812162326_payments_state_and_assigned_to_order_only.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100813023502_create_address_keys_for_order.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100813185745_payment_total_for_orders.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100816212146_shipping_method_id_for_orders.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100817152723_add_shipment_and_payment_state.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100819170125_refactor_adjustments.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100820135707_response_code_and_avs_response_for_payments.rb +0 -0
- data/{lib/generators/templates/db → db}/migrate/20100901171814_change_guest_flag_to_anonymous.rb +0 -0
- data/db/migrate/20100903203949_email_for_orders.rb +9 -0
- data/db/migrate/20100908170204_remove_unique_index_on_users_email.rb +9 -0
- data/db/migrate/20100923162011_create_mail_methods.rb +12 -0
- data/db/migrate/20100929151905_rename_frozen_to_locked.rb +8 -0
- data/db/migrate/20101008190536_move_special_instructions_to_orders.rb +11 -0
- data/db/migrate/20101026184700_create_log_entries.rb +15 -0
- data/db/migrate/20101026184714_migrate_transactions_to_payment_state.rb +94 -0
- data/db/migrate/20101026184746_delete_in_progress_orders.rb +18 -0
- data/db/migrate/20101026184808_migrate_checkout_to_orders.rb +27 -0
- data/db/migrate/20101026184833_migrate_adjustments.rb +9 -0
- data/db/migrate/20101026184855_remove_shipped_state.rb +14 -0
- data/db/migrate/20101026184916_prevent_nil_payment_total.rb +8 -0
- data/db/migrate/20101026184932_prevent_nil_email.rb +9 -0
- data/db/migrate/20101026184959_generate_anonymous_users.rb +14 -0
- data/db/migrate/20101026185022_update_order_state.rb +8 -0
- data/db/migrate/20101026192225_cleanup_legacy_tables.rb +11 -0
- data/db/migrate/20101028151745_remove_number_and_cvv_from_credicard.rb +9 -0
- data/db/migrate/20101103212716_drop_anonymous_field_for_user.rb +8 -0
- data/{lib/generators/templates/db → db}/sample/users.rb +0 -0
- data/db/seeds.rb +3 -0
- data/lib/generators/spree_core/upgrade_generator.rb +23 -0
- data/lib/scopes/product.rb +0 -5
- data/lib/spree/config.rb +4 -4
- data/lib/spree/current_order.rb +11 -3
- data/lib/spree/i18n_utils.rb +47 -0
- data/lib/spree/mail_interceptor.rb +23 -0
- data/lib/spree/mail_settings.rb +34 -0
- data/lib/spree/search/base.rb +50 -6
- data/lib/spree_core.rb +9 -8
- data/lib/{active_merchant/billing/authorize_net_cim.rb → spree_core/authorize_net_cim_hack.rb} +0 -0
- data/lib/spree_core/ext/active_record.rb +2 -0
- data/lib/spree_core/ssl_requirement.rb +9 -15
- data/lib/tasks/core.rake +1 -8
- data/lib/tasks/install.rake +27 -0
- data/{lib/generators/templates/public → public}/images/add-to-cart.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/active-tab.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/admin_tab_back.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/admin_tab_selected_back.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/content-back-blue.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/content-back-green.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/content-back.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/flash-error.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/flash-notice.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/green-stripes.gif +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/green-stripes.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/grid_header_back.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/grid_header_back_green.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/header-bg.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/header.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/header_bg.jpg +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/menu-current.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/red-stripes.gif +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/red-stripes.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/spree_50.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/subnav-divider.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/subnav.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/bg/tab-back.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/buttons/blue/left_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/buttons/blue/right_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/buttons/drag-handle-green.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/buttons/green/left_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/buttons/green/right_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/buttons/left_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/buttons/left_01_small.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/buttons/orange/left_03.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/buttons/orange/right_03.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/buttons/right_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/buttons/right_01_small.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/16x16/1.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/16x16/10.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/16x16/2.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/16x16/3.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/16x16/4.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/16x16/5.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/16x16/6.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/16x16/7.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/16x16/8.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/16x16/9.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/32x32/1.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/32x32/10.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/32x32/11.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/32x32/2.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/32x32/3.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/32x32/4.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/32x32/5.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/32x32/6.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/32x32/7.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/32x32/8.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/32x32/9.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/accept.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/add.gif +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/add.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/arrow-down.gif +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/cross.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/delete.gif +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/delete.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/drag.gif +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/edit.gif +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/edit.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/email.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/error.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/exclamation.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/feed.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/pdf.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/reorder.gif +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/search.gif +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/send-email.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/stop.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/tick.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/up.gif +0 -0
- data/{lib/generators/templates/public → public}/images/admin/icons/xls.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/tabs/off-left.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/tabs/off-right.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/tabs/on-left.png +0 -0
- data/{lib/generators/templates/public → public}/images/admin/tabs/on-right.png +0 -0
- data/{lib/generators/templates/public → public}/images/ajax_loader.gif +0 -0
- data/{lib/generators/templates/public → public}/images/amex_cid.gif +0 -0
- data/{lib/generators/templates/public → public}/images/bg-button-hover.png +0 -0
- data/{lib/generators/templates/public → public}/images/bg-button-pressed.png +0 -0
- data/{lib/generators/templates/public → public}/images/bg-button.gif +0 -0
- data/{lib/generators/templates/public → public}/images/bg-button.png +0 -0
- data/{lib/generators/templates/public → public}/images/blue/left_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/blue/right_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/body-back.png +0 -0
- data/{lib/generators/templates/public → public}/images/bottom_shine.png +0 -0
- data/{lib/generators/templates/public → public}/images/breadcrumb.gif +0 -0
- data/{lib/generators/templates/public → public}/images/button-dark-hover.png +0 -0
- data/{lib/generators/templates/public → public}/images/button-dark.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/bg-button-hover.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/bg-button-pressed.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/bg-button.gif +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/bg-button.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/blue/left_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/blue/right_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/button-dark-hover.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/button-dark.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/drag-handle-green.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/green/left_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/green/right_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/left_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/left_01_small.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/orange/left_03.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/orange/right_03.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/right_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/right_01_small.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/sxsw-ribbon-v1.png +0 -0
- data/{lib/generators/templates/public → public}/images/buttons/top-shine.png +0 -0
- data/{lib/generators/templates/public → public}/images/calendar_date_select/calendar.gif +0 -0
- data/{lib/generators/templates/public → public}/images/cart-empty.png +0 -0
- data/{lib/generators/templates/public → public}/images/cart-empty_x32.png +0 -0
- data/{lib/generators/templates/public → public}/images/cart-full.png +0 -0
- data/{lib/generators/templates/public → public}/images/cart-full_x32.png +0 -0
- data/{lib/generators/templates/public → public}/images/checkout.png +0 -0
- data/{lib/generators/templates/public → public}/images/creditcard.gif +0 -0
- data/{lib/generators/templates/public → public}/images/datepicker/backstripes.gif +0 -0
- data/{lib/generators/templates/public → public}/images/datepicker/bg_header.jpg +0 -0
- data/{lib/generators/templates/public → public}/images/datepicker/bullet1.gif +0 -0
- data/{lib/generators/templates/public → public}/images/datepicker/bullet2.gif +0 -0
- data/{lib/generators/templates/public → public}/images/datepicker/cal.gif +0 -0
- data/{lib/generators/templates/public → public}/images/datepicker/gradient-e5e5e5-ffffff.gif +0 -0
- data/{lib/generators/templates/public → public}/images/discover_cid.gif +0 -0
- data/{lib/generators/templates/public → public}/images/drag-handle-green.png +0 -0
- data/{lib/generators/templates/public → public}/images/favicon.ico +0 -0
- data/{lib/generators/templates/public → public}/images/green/left_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/green/right_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/grid.png +0 -0
- data/{lib/generators/templates/public → public}/images/left_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/left_01_small.png +0 -0
- data/{lib/generators/templates/public → public}/images/master_cid.jpg +0 -0
- data/{lib/generators/templates/public → public}/images/menu-current.png +0 -0
- data/{lib/generators/templates/public → public}/images/menu-hover.png +0 -0
- data/{lib/generators/templates/public → public}/images/noimage/mini.jpg +0 -0
- data/{lib/generators/templates/public → public}/images/noimage/product.jpg +0 -0
- data/{lib/generators/templates/public → public}/images/noimage/small.jpg +0 -0
- data/{lib/generators/templates/public → public}/images/openid-inputicon.gif +0 -0
- data/{lib/generators/templates/public → public}/images/orange/left_03.png +0 -0
- data/{lib/generators/templates/public → public}/images/orange/right_03.png +0 -0
- data/{lib/generators/templates/public → public}/images/progress.gif +0 -0
- data/{lib/generators/templates/public → public}/images/right_01.png +0 -0
- data/{lib/generators/templates/public → public}/images/right_01_small.png +0 -0
- data/{lib/generators/templates/public → public}/images/separator.png +0 -0
- data/{lib/generators/templates/public → public}/images/shadow-top.png +0 -0
- data/{lib/generators/templates/public → public}/images/shadow_top.png +0 -0
- data/{lib/generators/templates/public → public}/images/spinner.gif +0 -0
- data/{lib/generators/templates/public → public}/images/spree.jpg +0 -0
- data/{lib/generators/templates/public → public}/images/spree/progress.gif +0 -0
- data/{lib/generators/templates/public → public}/images/spree/spinner.gif +0 -0
- data/{lib/generators/templates/public → public}/images/spree/spree.jpg +0 -0
- data/{lib/generators/templates/public → public}/images/step-progress/completed-completed.gif +0 -0
- data/{lib/generators/templates/public → public}/images/step-progress/completed-current.gif +0 -0
- data/{lib/generators/templates/public → public}/images/step-progress/completed-first.gif +0 -0
- data/{lib/generators/templates/public → public}/images/step-progress/current-first.gif +0 -0
- data/{lib/generators/templates/public → public}/images/step-progress/current-incomplete.gif +0 -0
- data/{lib/generators/templates/public → public}/images/step-progress/current-right.gif +0 -0
- data/{lib/generators/templates/public → public}/images/step-progress/incomplete-incomplete.gif +0 -0
- data/{lib/generators/templates/public → public}/images/step-progress/incomplete-right.gif +0 -0
- data/{lib/generators/templates/public → public}/images/steps/1.png +0 -0
- data/{lib/generators/templates/public → public}/images/steps/1_small.png +0 -0
- data/{lib/generators/templates/public → public}/images/steps/2.png +0 -0
- data/{lib/generators/templates/public → public}/images/steps/2_small.png +0 -0
- data/{lib/generators/templates/public → public}/images/steps/3.png +0 -0
- data/{lib/generators/templates/public → public}/images/steps/3_small.png +0 -0
- data/{lib/generators/templates/public → public}/images/steps/4.png +0 -0
- data/{lib/generators/templates/public → public}/images/steps/4_small.png +0 -0
- data/{lib/generators/templates/public → public}/images/steps/5.png +0 -0
- data/{lib/generators/templates/public → public}/images/steps/5_small.png +0 -0
- data/{lib/generators/templates/public → public}/images/steps/6.png +0 -0
- data/{lib/generators/templates/public → public}/images/steps/6_small.png +0 -0
- data/{lib/generators/templates/public → public}/images/sxsw-ribbon-v1.png +0 -0
- data/{lib/generators/templates/public → public}/images/tab_bottom.gif +0 -0
- data/{lib/generators/templates/public → public}/images/tile-header.png +0 -0
- data/{lib/generators/templates/public → public}/images/tile-slider.png +0 -0
- data/{lib/generators/templates/public → public}/images/top-shine.png +0 -0
- data/{lib/generators/templates/public → public}/images/tree-nav-icons/bullet.gif +0 -0
- data/{lib/generators/templates/public → public}/images/tree-nav-icons/minus.gif +0 -0
- data/{lib/generators/templates/public → public}/images/tree-nav-icons/plus.gif +0 -0
- data/{lib/generators/templates/public → public}/images/tree-nav-icons/treeview-loading.gif +0 -0
- data/{lib/generators/templates/public → public}/images/tree-nav-icons/treeview-sprite.gif +0 -0
- data/{lib/generators/templates/public → public}/images/update.png +0 -0
- data/{lib/generators/templates/public → public}/images/visa_cid.gif +0 -0
- data/{lib/generators/templates/public → public}/images/wrapper-back-2.png +0 -0
- data/{lib/generators/templates/public → public}/images/wrapper-back.png +0 -0
- data/{lib/generators/templates/public → public}/images/yui-menubaritem_submenuindicator.png +0 -0
- data/{lib/generators/templates/public → public}/images/yui-menubaritem_submenuindicator_disabled.png +0 -0
- data/{lib/generators/templates/public → public}/images/yui-menuitem_checkbox.png +0 -0
- data/{lib/generators/templates/public → public}/images/yui-menuitem_checkbox_disabled.png +0 -0
- data/{lib/generators/templates/public → public}/images/yui-menuitem_submenuindicator.png +0 -0
- data/{lib/generators/templates/public → public}/images/yui-menuitem_submenuindicator_disabled.png +0 -0
- data/{lib/generators/templates/public → public}/images/yui-sprite.png +0 -0
- data/{lib/generators/templates/public → public}/javascripts/additional-methods.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/admin.js +11 -11
- data/{lib/generators/templates/public → public}/javascripts/admin/address_states.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/admin/checkouts/edit.js +1 -1
- data/{lib/generators/templates/public → public}/javascripts/admin/orders/edit.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/admin/orders/edit_form.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/admin/payments/new.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/admin/unobtrusive_handlers.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/application.js +3 -3
- data/{lib/generators/templates/public → public}/javascripts/calculator.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/checkout.js +26 -15
- data/{lib/generators/templates/public → public}/javascripts/datepicker.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/gateway.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jquery-1.4.2.min.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jquery-ui.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jquery.alerts/images/help.gif +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jquery.alerts/images/important.gif +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jquery.alerts/images/info.gif +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jquery.alerts/images/title.gif +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jquery.alerts/jquery.alerts.css +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jquery.alerts/jquery.alerts.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jquery.alerts/jquery.alerts.spree.css +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jquery.autocomplete.min.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jquery.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jquery.suggest.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jquery.template.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jquery.tokeninput.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jquery.validate.min.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jrails.autocomplete.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jrails.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jsTree/jquery.tree.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jsTree/plugins/jquery.tree.contextmenu.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jsTree/themes/apple/bg.jpg +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jsTree/themes/apple/dot_for_ie.gif +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jsTree/themes/apple/icons.png +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jsTree/themes/apple/style.css +0 -0
- data/{lib/generators/templates/public → public}/javascripts/jsTree/themes/apple/throbber.gif +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/af.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/ar.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/de.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/du.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/en.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/es.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/fi.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/fr.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/gr.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/he.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/it.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/nl.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/no.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/pt.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/ro.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/ru.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/sp.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/sv.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/lang/ua.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_cn.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_cs.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_da.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_de.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_es.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_fr.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_hu.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_it.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_kk.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_nl.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_no.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_pl.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_ptbr.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_ro.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_ru.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_se.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_sk.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_tr.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_tw.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/localization/messages_ua.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/nested-attribute.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/open_id.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/product.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/rails.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/taxonomy.js +0 -0
- data/{lib/generators/templates/public → public}/javascripts/zone.js +0 -0
- data/{lib/generators/templates/public → public}/stylesheets/admin/admin-forms.css +0 -0
- data/{lib/generators/templates/public → public}/stylesheets/admin/admin-reset.css +0 -0
- data/{lib/generators/templates/public → public}/stylesheets/admin/admin-tables.css +0 -0
- data/{lib/generators/templates/public → public}/stylesheets/admin/admin-typography.css +0 -0
- data/{lib/generators/templates/public → public}/stylesheets/admin/admin.css +21 -18
- data/{lib/generators/templates/public → public}/stylesheets/admin/autocomplete.css +0 -1
- data/{lib/generators/templates/public → public}/stylesheets/admin/dashboard.css +0 -0
- data/{lib/generators/templates/public → public}/stylesheets/admin/edit_checkouts.css +0 -0
- data/{lib/generators/templates/public → public}/stylesheets/admin/grids.css +0 -0
- data/{lib/generators/templates/public → public}/stylesheets/admin/reset-fonts-grids-2-6-0.css +0 -0
- data/{lib/generators/templates/public → public}/stylesheets/admin/token-input.css +0 -0
- data/{lib/generators/templates/public → public}/stylesheets/admin/yui-includes.css +0 -0
- data/{lib/generators/templates/public → public}/stylesheets/datepicker.css +0 -0
- data/{lib/generators/templates/public → public}/stylesheets/jquery.autocomplete.css +0 -0
- data/{lib/generators/templates/public → public}/stylesheets/scaffold.css +0 -0
- data/{lib/generators/templates/public → public}/stylesheets/screen.css +0 -0
- metadata +475 -402
- data/app/controllers/admin/checkouts_controller.rb +0 -58
- data/app/models/checkout.rb +0 -141
- data/app/models/order_mailer.rb +0 -24
- data/app/views/admin/checkouts/show.html.erb +0 -131
- data/app/views/admin/mail_settings/edit.html.erb +0 -114
- data/app/views/admin/mail_settings/show.html.erb +0 -59
- data/app/views/admin/taxons/select.html.erb +0 -1
- data/app/views/checkout/_complete.html.erb +0 -1
- data/app/views/password_resets/edit.html.erb +0 -12
- data/app/views/password_resets/new.html.erb +0 -12
- data/config/initializers/touch.rb +0 -14
- data/lib/generators/spree_core/extension_generator.rb +0 -57
- data/lib/generators/spree_core/install_generator.rb +0 -59
- data/lib/generators/templates/LICENSE +0 -23
- data/lib/generators/templates/README.md +0 -13
- data/lib/generators/templates/Rakefile +0 -1
- data/lib/generators/templates/application_controller.rb +0 -4
- data/lib/generators/templates/extension.gemspec.tt +0 -21
- data/lib/generators/templates/extension/engine.rb.tt +0 -14
- data/lib/generators/templates/extension/extension.rb.tt +0 -1
- data/lib/generators/templates/lib/tasks/%file_name%.rake.tt +0 -1
- data/lib/generators/templates/public/javascripts/jquery-1.3.2.min.js +0 -19
- data/lib/generators/templates/public/javascripts/jquery-and-plugins.js +0 -36
- data/lib/generators/templates/spree_site.rb +0 -8
- data/lib/spree/search.rb +0 -47
- data/lib/spree_core/preferences/mail_settings.rb +0 -57
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -35,8 +35,8 @@ p.help-text {
|
|
35
35
|
|
36
36
|
body {
|
37
37
|
margin-top: 0px;
|
38
|
-
color: #
|
39
|
-
|
38
|
+
background-color: #162F54;
|
39
|
+
color: #476D9B;
|
40
40
|
}
|
41
41
|
|
42
42
|
a {
|
@@ -44,11 +44,11 @@ body {
|
|
44
44
|
a:active,
|
45
45
|
a:visited {
|
46
46
|
color: #4884BD; }
|
47
|
-
|
47
|
+
|
48
48
|
#header {
|
49
|
-
|
50
|
-
|
51
|
-
|
49
|
+
height:95px;
|
50
|
+
position: relative;
|
51
|
+
margin-bottom: 13px;
|
52
52
|
}
|
53
53
|
#header,
|
54
54
|
#footer {
|
@@ -86,7 +86,8 @@ body {
|
|
86
86
|
text-decoration: none; }
|
87
87
|
#sidebar h5 {
|
88
88
|
margin: 0 10px;
|
89
|
-
|
89
|
+
width: 130px;
|
90
|
+
float: left;}
|
90
91
|
#sidebar span.sku {
|
91
92
|
display: block;
|
92
93
|
font-weight: normal; }
|
@@ -141,23 +142,23 @@ body {
|
|
141
142
|
color: #fff; }
|
142
143
|
|
143
144
|
#header #logo {
|
144
|
-
|
145
|
-
|
146
|
-
|
145
|
+
position: absolute;
|
146
|
+
top: 0;
|
147
|
+
left: 10px;
|
147
148
|
}
|
148
149
|
#header h1 {
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
margin: 10px 10px 10px 10px;
|
150
|
+
position: absolute;
|
151
|
+
left: 200px;
|
152
|
+
bottom: 19px;
|
153
|
+
margin: 10px 10px 10px 10px;
|
153
154
|
display: block;
|
154
155
|
text-decoration: none;
|
155
156
|
line-height: 100%;
|
156
|
-
|
157
|
+
|
157
158
|
}
|
158
159
|
#header h1 a {
|
159
|
-
|
160
|
-
|
160
|
+
color: #8CB952;
|
161
|
+
}
|
161
162
|
#admin-menu { clear: both; }
|
162
163
|
#admin-menu,
|
163
164
|
#sub-menu {
|
@@ -573,4 +574,6 @@ table#product_scopes tr td table tr td {
|
|
573
574
|
#new_product_group_form p {
|
574
575
|
text-align: right;
|
575
576
|
margin: 0;
|
576
|
-
}
|
577
|
+
}
|
578
|
+
|
579
|
+
|
File without changes
|
File without changes
|
File without changes
|
data/{lib/generators/templates/public → public}/stylesheets/admin/reset-fonts-grids-2-6-0.css
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spree_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 103
|
5
|
+
prerelease: false
|
5
6
|
segments:
|
6
7
|
- 0
|
7
8
|
- 30
|
8
9
|
- 0
|
9
|
-
|
10
|
-
version: 0.30.0.beta1
|
10
|
+
version: 0.30.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Sean Schofield
|
@@ -15,16 +15,18 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-09
|
18
|
+
date: 2010-11-09 00:00:00 -05:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
22
|
name: acts_as_list
|
23
23
|
prerelease: false
|
24
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
25
26
|
requirements:
|
26
27
|
- - ">="
|
27
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 31
|
28
30
|
segments:
|
29
31
|
- 0
|
30
32
|
- 1
|
@@ -36,9 +38,11 @@ dependencies:
|
|
36
38
|
name: rd_awesome_nested_set
|
37
39
|
prerelease: false
|
38
40
|
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
39
42
|
requirements:
|
40
43
|
- - ">="
|
41
44
|
- !ruby/object:Gem::Version
|
45
|
+
hash: 15
|
42
46
|
segments:
|
43
47
|
- 1
|
44
48
|
- 4
|
@@ -50,9 +54,11 @@ dependencies:
|
|
50
54
|
name: rd_unobtrusive_date_picker
|
51
55
|
prerelease: false
|
52
56
|
requirement: &id003 !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
53
58
|
requirements:
|
54
59
|
- - ">="
|
55
60
|
- !ruby/object:Gem::Version
|
61
|
+
hash: 27
|
56
62
|
segments:
|
57
63
|
- 0
|
58
64
|
- 1
|
@@ -64,9 +70,11 @@ dependencies:
|
|
64
70
|
name: highline
|
65
71
|
prerelease: false
|
66
72
|
requirement: &id004 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
67
74
|
requirements:
|
68
75
|
- - ">="
|
69
76
|
- !ruby/object:Gem::Version
|
77
|
+
hash: 1
|
70
78
|
segments:
|
71
79
|
- 1
|
72
80
|
- 5
|
@@ -78,9 +86,11 @@ dependencies:
|
|
78
86
|
name: stringex
|
79
87
|
prerelease: false
|
80
88
|
requirement: &id005 !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
81
90
|
requirements:
|
82
91
|
- - ">="
|
83
92
|
- !ruby/object:Gem::Version
|
93
|
+
hash: 17
|
84
94
|
segments:
|
85
95
|
- 1
|
86
96
|
- 0
|
@@ -92,9 +102,11 @@ dependencies:
|
|
92
102
|
name: state_machine
|
93
103
|
prerelease: false
|
94
104
|
requirement: &id006 !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
95
106
|
requirements:
|
96
107
|
- - ">="
|
97
108
|
- !ruby/object:Gem::Version
|
109
|
+
hash: 51
|
98
110
|
segments:
|
99
111
|
- 0
|
100
112
|
- 9
|
@@ -106,9 +118,11 @@ dependencies:
|
|
106
118
|
name: faker
|
107
119
|
prerelease: false
|
108
120
|
requirement: &id007 !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
109
122
|
requirements:
|
110
123
|
- - ">="
|
111
124
|
- !ruby/object:Gem::Version
|
125
|
+
hash: 17
|
112
126
|
segments:
|
113
127
|
- 0
|
114
128
|
- 3
|
@@ -120,9 +134,11 @@ dependencies:
|
|
120
134
|
name: paperclip
|
121
135
|
prerelease: false
|
122
136
|
requirement: &id008 !ruby/object:Gem::Requirement
|
137
|
+
none: false
|
123
138
|
requirements:
|
124
139
|
- - ">="
|
125
140
|
- !ruby/object:Gem::Version
|
141
|
+
hash: 113
|
126
142
|
segments:
|
127
143
|
- 2
|
128
144
|
- 3
|
@@ -135,9 +151,11 @@ dependencies:
|
|
135
151
|
name: rd_resource_controller
|
136
152
|
prerelease: false
|
137
153
|
requirement: &id009 !ruby/object:Gem::Requirement
|
154
|
+
none: false
|
138
155
|
requirements:
|
139
156
|
- - ">="
|
140
157
|
- !ruby/object:Gem::Version
|
158
|
+
hash: 3
|
141
159
|
segments:
|
142
160
|
- 0
|
143
161
|
version: "0"
|
@@ -147,24 +165,28 @@ dependencies:
|
|
147
165
|
name: rd_searchlogic
|
148
166
|
prerelease: false
|
149
167
|
requirement: &id010 !ruby/object:Gem::Requirement
|
168
|
+
none: false
|
150
169
|
requirements:
|
151
170
|
- - ">="
|
152
171
|
- !ruby/object:Gem::Version
|
172
|
+
hash: 977940604
|
153
173
|
segments:
|
154
174
|
- 3
|
155
175
|
- 0
|
156
176
|
- 0
|
157
|
-
-
|
158
|
-
version: 3.0.0.
|
177
|
+
- rc3
|
178
|
+
version: 3.0.0.rc3
|
159
179
|
type: :runtime
|
160
180
|
version_requirements: *id010
|
161
181
|
- !ruby/object:Gem::Dependency
|
162
182
|
name: activemerchant
|
163
183
|
prerelease: false
|
164
184
|
requirement: &id011 !ruby/object:Gem::Requirement
|
185
|
+
none: false
|
165
186
|
requirements:
|
166
187
|
- - ">="
|
167
188
|
- !ruby/object:Gem::Version
|
189
|
+
hash: 9
|
168
190
|
segments:
|
169
191
|
- 1
|
170
192
|
- 7
|
@@ -176,9 +198,11 @@ dependencies:
|
|
176
198
|
name: will_paginate
|
177
199
|
prerelease: false
|
178
200
|
requirement: &id012 !ruby/object:Gem::Requirement
|
201
|
+
none: false
|
179
202
|
requirements:
|
180
203
|
- - ">="
|
181
204
|
- !ruby/object:Gem::Version
|
205
|
+
hash: 961915916
|
182
206
|
segments:
|
183
207
|
- 3
|
184
208
|
- 0
|
@@ -186,6 +210,38 @@ dependencies:
|
|
186
210
|
version: 3.0.pre
|
187
211
|
type: :runtime
|
188
212
|
version_requirements: *id012
|
213
|
+
- !ruby/object:Gem::Dependency
|
214
|
+
name: rails
|
215
|
+
prerelease: false
|
216
|
+
requirement: &id013 !ruby/object:Gem::Requirement
|
217
|
+
none: false
|
218
|
+
requirements:
|
219
|
+
- - ">="
|
220
|
+
- !ruby/object:Gem::Version
|
221
|
+
hash: 5
|
222
|
+
segments:
|
223
|
+
- 3
|
224
|
+
- 0
|
225
|
+
- 1
|
226
|
+
version: 3.0.1
|
227
|
+
type: :runtime
|
228
|
+
version_requirements: *id013
|
229
|
+
- !ruby/object:Gem::Dependency
|
230
|
+
name: jquery-rails
|
231
|
+
prerelease: false
|
232
|
+
requirement: &id014 !ruby/object:Gem::Requirement
|
233
|
+
none: false
|
234
|
+
requirements:
|
235
|
+
- - ">="
|
236
|
+
- !ruby/object:Gem::Version
|
237
|
+
hash: 19
|
238
|
+
segments:
|
239
|
+
- 0
|
240
|
+
- 2
|
241
|
+
- 2
|
242
|
+
version: 0.2.2
|
243
|
+
type: :runtime
|
244
|
+
version_requirements: *id014
|
189
245
|
description: Required dependancy for Spree
|
190
246
|
email: sean@railsdog.com
|
191
247
|
executables: []
|
@@ -199,13 +255,13 @@ files:
|
|
199
255
|
- README.md
|
200
256
|
- app/controllers/admin/adjustments_controller.rb
|
201
257
|
- app/controllers/admin/base_controller.rb
|
202
|
-
- app/controllers/admin/checkouts_controller.rb
|
203
258
|
- app/controllers/admin/configurations_controller.rb
|
204
259
|
- app/controllers/admin/general_settings_controller.rb
|
205
260
|
- app/controllers/admin/images_controller.rb
|
206
261
|
- app/controllers/admin/inventory_settings_controller.rb
|
207
262
|
- app/controllers/admin/inventory_units_controller.rb
|
208
263
|
- app/controllers/admin/line_items_controller.rb
|
264
|
+
- app/controllers/admin/mail_methods_controller.rb
|
209
265
|
- app/controllers/admin/mail_settings_controller.rb
|
210
266
|
- app/controllers/admin/option_types_controller.rb
|
211
267
|
- app/controllers/admin/orders_controller.rb
|
@@ -265,6 +321,8 @@ files:
|
|
265
321
|
- app/helpers/taxons_helper.rb
|
266
322
|
- app/helpers/trackers_helper.rb
|
267
323
|
- app/helpers/users_helper.rb
|
324
|
+
- app/mailers/order_mailer.rb
|
325
|
+
- app/mailers/shipment_mailer.rb
|
268
326
|
- app/models/address.rb
|
269
327
|
- app/models/adjustment.rb
|
270
328
|
- app/models/app_configuration.rb
|
@@ -278,7 +336,6 @@ files:
|
|
278
336
|
- app/models/calculator/sales_tax.rb
|
279
337
|
- app/models/calculator/vat.rb
|
280
338
|
- app/models/calculator.rb
|
281
|
-
- app/models/checkout.rb
|
282
339
|
- app/models/configuration.rb
|
283
340
|
- app/models/country.rb
|
284
341
|
- app/models/creditcard.rb
|
@@ -294,10 +351,11 @@ files:
|
|
294
351
|
- app/models/image.rb
|
295
352
|
- app/models/inventory_unit.rb
|
296
353
|
- app/models/line_item.rb
|
354
|
+
- app/models/log_entry.rb
|
355
|
+
- app/models/mail_method.rb
|
297
356
|
- app/models/option_type.rb
|
298
357
|
- app/models/option_value.rb
|
299
358
|
- app/models/order.rb
|
300
|
-
- app/models/order_mailer.rb
|
301
359
|
- app/models/payment.rb
|
302
360
|
- app/models/payment_method/check.rb
|
303
361
|
- app/models/payment_method.rb
|
@@ -348,9 +406,6 @@ files:
|
|
348
406
|
- app/views/admin/adjustments/edit.html.erb
|
349
407
|
- app/views/admin/adjustments/index.html.erb
|
350
408
|
- app/views/admin/adjustments/new.html.erb
|
351
|
-
- app/views/admin/checkouts/_form.html.erb
|
352
|
-
- app/views/admin/checkouts/edit.html.erb
|
353
|
-
- app/views/admin/checkouts/show.html.erb
|
354
409
|
- app/views/admin/configurations/index.html.erb
|
355
410
|
- app/views/admin/configurations/new.html.erb
|
356
411
|
- app/views/admin/extensions/index.html.erb
|
@@ -363,8 +418,10 @@ files:
|
|
363
418
|
- app/views/admin/inventory_settings/edit.html.erb
|
364
419
|
- app/views/admin/inventory_settings/show.html.erb
|
365
420
|
- app/views/admin/inventory_units/adjust.html.erb
|
366
|
-
- app/views/admin/
|
367
|
-
- app/views/admin/
|
421
|
+
- app/views/admin/mail_methods/_form.html.erb
|
422
|
+
- app/views/admin/mail_methods/edit.html.erb
|
423
|
+
- app/views/admin/mail_methods/index.html.erb
|
424
|
+
- app/views/admin/mail_methods/new.html.erb
|
368
425
|
- app/views/admin/option_types/_available.html.erb
|
369
426
|
- app/views/admin/option_types/_form.html.erb
|
370
427
|
- app/views/admin/option_types/_option_value_fields.html.erb
|
@@ -378,11 +435,13 @@ files:
|
|
378
435
|
- app/views/admin/orders/_add_product.html.erb
|
379
436
|
- app/views/admin/orders/_form.html.erb
|
380
437
|
- app/views/admin/orders/_line_item.html.erb
|
438
|
+
- app/views/admin/orders/_user_form.html.erb
|
381
439
|
- app/views/admin/orders/edit.html.erb
|
382
440
|
- app/views/admin/orders/history.html.erb
|
383
441
|
- app/views/admin/orders/index.html.erb
|
384
442
|
- app/views/admin/orders/new.html.erb
|
385
443
|
- app/views/admin/orders/show.html.erb
|
444
|
+
- app/views/admin/orders/user.html.erb
|
386
445
|
- app/views/admin/payment_methods/_form.html.erb
|
387
446
|
- app/views/admin/payment_methods/edit.html.erb
|
388
447
|
- app/views/admin/payment_methods/index.html.erb
|
@@ -440,10 +499,13 @@ files:
|
|
440
499
|
- app/views/admin/shared/_additional_field.html.erb
|
441
500
|
- app/views/admin/shared/_address.html.erb
|
442
501
|
- app/views/admin/shared/_address_form.html.erb
|
502
|
+
- app/views/admin/shared/_adjustments_table.html.erb
|
443
503
|
- app/views/admin/shared/_calculator_fields.html.erb
|
444
504
|
- app/views/admin/shared/_configuration_menu.html.erb
|
505
|
+
- app/views/admin/shared/_destroy.js.erb
|
445
506
|
- app/views/admin/shared/_edit_resource_links.html.erb
|
446
507
|
- app/views/admin/shared/_group_from_products_form.html.erb
|
508
|
+
- app/views/admin/shared/_new_adjustment_button.html.erb
|
447
509
|
- app/views/admin/shared/_new_resource_links.html.erb
|
448
510
|
- app/views/admin/shared/_order_details.html.erb
|
449
511
|
- app/views/admin/shared/_order_sub_menu.html.erb
|
@@ -453,6 +515,7 @@ files:
|
|
453
515
|
- app/views/admin/shared/_report_criteria.html.erb
|
454
516
|
- app/views/admin/shared/_show_resource_links.html.erb
|
455
517
|
- app/views/admin/shared/_tabs.html.erb
|
518
|
+
- app/views/admin/shared/_update_order_state.js
|
456
519
|
- app/views/admin/shipments/_form.html.erb
|
457
520
|
- app/views/admin/shipments/edit.html.erb
|
458
521
|
- app/views/admin/shipments/index.html.erb
|
@@ -494,7 +557,7 @@ files:
|
|
494
557
|
- app/views/admin/taxons/available.js.erb
|
495
558
|
- app/views/admin/taxons/edit.html.erb
|
496
559
|
- app/views/admin/taxons/remove.html.erb
|
497
|
-
- app/views/admin/taxons/select.
|
560
|
+
- app/views/admin/taxons/select.js.erb
|
498
561
|
- app/views/admin/taxons/selected.html.erb
|
499
562
|
- app/views/admin/trackers/_form.html.erb
|
500
563
|
- app/views/admin/trackers/edit.html.erb
|
@@ -518,7 +581,6 @@ files:
|
|
518
581
|
- app/views/admin/zones/index.html.erb
|
519
582
|
- app/views/admin/zones/new.html.erb
|
520
583
|
- app/views/checkout/_address.html.erb
|
521
|
-
- app/views/checkout/_complete.html.erb
|
522
584
|
- app/views/checkout/_confirm.html.erb
|
523
585
|
- app/views/checkout/_delivery.html.erb
|
524
586
|
- app/views/checkout/_payment.html.erb
|
@@ -526,19 +588,18 @@ files:
|
|
526
588
|
- app/views/checkout/edit.html.erb
|
527
589
|
- app/views/checkout/payment/_check.html.erb
|
528
590
|
- app/views/checkout/payment/_gateway.html.erb
|
591
|
+
- app/views/checkout/registration.html.erb
|
529
592
|
- app/views/content/cvv.html.erb
|
530
593
|
- app/views/countries/index.js.erb
|
531
594
|
- app/views/layouts/admin.html.erb
|
532
595
|
- app/views/layouts/spree_application.html.erb
|
533
|
-
- app/views/order_mailer/
|
534
|
-
- app/views/order_mailer/
|
596
|
+
- app/views/order_mailer/cancel_email.text.erb
|
597
|
+
- app/views/order_mailer/confirm_email.text.erb
|
535
598
|
- app/views/orders/_form.html.erb
|
536
599
|
- app/views/orders/_line_item.html.erb
|
537
600
|
- app/views/orders/edit.html.erb
|
538
601
|
- app/views/orders/new.html.erb
|
539
602
|
- app/views/orders/show.html.erb
|
540
|
-
- app/views/password_resets/edit.html.erb
|
541
|
-
- app/views/password_resets/new.html.erb
|
542
603
|
- app/views/products/_cart_form.html.erb
|
543
604
|
- app/views/products/_image.html.erb
|
544
605
|
- app/views/products/_properties.html.erb
|
@@ -548,6 +609,7 @@ files:
|
|
548
609
|
- app/views/products/show.html.erb
|
549
610
|
- app/views/shared/_additional_field.html.erb
|
550
611
|
- app/views/shared/_admin_head.html.erb
|
612
|
+
- app/views/shared/_basic_layout.html.erb
|
551
613
|
- app/views/shared/_edit_resource_links.html.erb
|
552
614
|
- app/views/shared/_error_messages.html.erb
|
553
615
|
- app/views/shared/_filters.html.erb
|
@@ -566,6 +628,7 @@ files:
|
|
566
628
|
- app/views/shared/_taxonomies.html.erb
|
567
629
|
- app/views/shared/_test_hook.html.erb
|
568
630
|
- app/views/shared/_user_form.html.erb
|
631
|
+
- app/views/shipment_mailer/shipped_email.text.erb
|
569
632
|
- app/views/states/index.js.erb
|
570
633
|
- app/views/taxons/_taxon.html.erb
|
571
634
|
- app/views/taxons/show.html.erb
|
@@ -574,386 +637,14 @@ files:
|
|
574
637
|
- config/initializers/form_builder.rb
|
575
638
|
- config/initializers/load_unobtrusive_date_picker.rb
|
576
639
|
- config/initializers/spree.rb
|
577
|
-
- config/initializers/touch.rb
|
578
640
|
- config/initializers/workarounds_for_ruby19.rb
|
579
|
-
- config/locales/
|
641
|
+
- config/locales/en.yml
|
580
642
|
- config/routes.rb
|
581
|
-
- lib/active_merchant/billing/authorize_net_cim.rb
|
582
643
|
- lib/custom_fixtures.rb
|
583
|
-
- lib/generators/spree_core/
|
584
|
-
- lib/generators/spree_core/install_generator.rb
|
585
|
-
- lib/generators/templates/application_controller.rb
|
644
|
+
- lib/generators/spree_core/upgrade_generator.rb
|
586
645
|
- lib/generators/templates/config/initializers/%file_name%.rb.tt
|
587
646
|
- lib/generators/templates/config/locales/%current_locale%.yml.tt
|
588
647
|
- lib/generators/templates/config/routes.rb
|
589
|
-
- lib/generators/templates/db/default/countries.yml
|
590
|
-
- lib/generators/templates/db/default/roles.yml
|
591
|
-
- lib/generators/templates/db/default/states.yml
|
592
|
-
- lib/generators/templates/db/default/zone_members.yml
|
593
|
-
- lib/generators/templates/db/default/zones.yml
|
594
|
-
- lib/generators/templates/db/migrate/20090823005402_spree_zero_nine_zero.rb
|
595
|
-
- lib/generators/templates/db/migrate/20090904192342_create_indexes_for_inventory_units.rb
|
596
|
-
- lib/generators/templates/db/migrate/20090923100315_add_count_on_hand_to_variants_and_products.rb
|
597
|
-
- lib/generators/templates/db/migrate/20091007134354_change_taxons_to_nested_set.rb
|
598
|
-
- lib/generators/templates/db/migrate/20091008091614_move_to_configurable_gateways.rb
|
599
|
-
- lib/generators/templates/db/migrate/20091012120519_product_groups_and_scopes.rb
|
600
|
-
- lib/generators/templates/db/migrate/20091015110842_add_open_id_authentication_tables.rb
|
601
|
-
- lib/generators/templates/db/migrate/20091015153048_add_openid_field_to_users.rb
|
602
|
-
- lib/generators/templates/db/migrate/20091016174634_change_preference_value_type.rb
|
603
|
-
- lib/generators/templates/db/migrate/20091017175558_create_billing_integrations.rb
|
604
|
-
- lib/generators/templates/db/migrate/20091021133257_charge_refactoring.rb
|
605
|
-
- lib/generators/templates/db/migrate/20091104151730_add_some_indexes.rb
|
606
|
-
- lib/generators/templates/db/migrate/20091126190904_checkout_state_machine.rb
|
607
|
-
- lib/generators/templates/db/migrate/20091209153045_state_for_shipments.rb
|
608
|
-
- lib/generators/templates/db/migrate/20091209202200_make_state_events_polymorphic.rb
|
609
|
-
- lib/generators/templates/db/migrate/20091211203813_ship_address_id_for_checkouts.rb
|
610
|
-
- lib/generators/templates/db/migrate/20091212161118_shipping_method_id_for_checkouts.rb
|
611
|
-
- lib/generators/templates/db/migrate/20091213222815_creditcard_last_four_digits.rb
|
612
|
-
- lib/generators/templates/db/migrate/20091214183826_populate_legacy_shipment_state.rb
|
613
|
-
- lib/generators/templates/db/migrate/20100105090147_add_cost_price.rb
|
614
|
-
- lib/generators/templates/db/migrate/20100105132138_shipment_id_for_inventory_units.rb
|
615
|
-
- lib/generators/templates/db/migrate/20100111205525_cim_fields_for_creditcards.rb
|
616
|
-
- lib/generators/templates/db/migrate/20100112151511_create_return_authorizations.rb
|
617
|
-
- lib/generators/templates/db/migrate/20100113090919_add_return_authorization_to_inventory_units.rb
|
618
|
-
- lib/generators/templates/db/migrate/20100113203104_create_trackers.rb
|
619
|
-
- lib/generators/templates/db/migrate/20100121160010_creditcard_id_for_creditcard_txns.rb
|
620
|
-
- lib/generators/templates/db/migrate/20100121183934_original_creditcard_txn_id_for_creditcard_txns.rb
|
621
|
-
- lib/generators/templates/db/migrate/20100125145351_add_test_mode_to_billing_integration.rb
|
622
|
-
- lib/generators/templates/db/migrate/20100126103714_create_products_product_groups.rb
|
623
|
-
- lib/generators/templates/db/migrate/20100209025806_create_payment_methods.rb
|
624
|
-
- lib/generators/templates/db/migrate/20100209144531_polymorphic_payments.rb
|
625
|
-
- lib/generators/templates/db/migrate/20100213103131_change_payments_payment_method_to_belongs_to.rb
|
626
|
-
- lib/generators/templates/db/migrate/20100214212536_assign_creditcard_txns_to_payment.rb
|
627
|
-
- lib/generators/templates/db/migrate/20100223170312_sti_for_transactions.rb
|
628
|
-
- lib/generators/templates/db/migrate/20100223183812_drop_billing_integrations.rb
|
629
|
-
- lib/generators/templates/db/migrate/20100224153127_deleted_at_for_payment_methods.rb
|
630
|
-
- lib/generators/templates/db/migrate/20100301163454_add_adjustments_index.rb
|
631
|
-
- lib/generators/templates/db/migrate/20100306153445_fix_by_popularity.rb
|
632
|
-
- lib/generators/templates/db/migrate/20100317120946_add_alt_text_to_images.rb
|
633
|
-
- lib/generators/templates/db/migrate/20100427121301_add_display_to_payment_methods.rb
|
634
|
-
- lib/generators/templates/db/migrate/20100504142133_add_addresses_checkouts_indexes.rb
|
635
|
-
- lib/generators/templates/db/migrate/20100506180619_add_icon_to_taxons.rb
|
636
|
-
- lib/generators/templates/db/migrate/20100506185838_add_description_to_taxons.rb
|
637
|
-
- lib/generators/templates/db/migrate/20100528155333_index_for_shipments_number.rb
|
638
|
-
- lib/generators/templates/db/migrate/20100528185820_add_index_on_users_persistence_token.rb
|
639
|
-
- lib/generators/templates/db/migrate/20100605152042_add_default_to_tax_categories.rb
|
640
|
-
- lib/generators/templates/db/migrate/20100624110730_add_display_to_shipping_methods.rb
|
641
|
-
- lib/generators/templates/db/migrate/20100624123336_rename_payment_method_display.rb
|
642
|
-
- lib/generators/templates/db/migrate/20100624175547_rename_preferences_field.rb
|
643
|
-
- lib/generators/templates/db/migrate/20100811163637_add_guest_flag.rb
|
644
|
-
- lib/generators/templates/db/migrate/20100811205836_drop_order_token.rb
|
645
|
-
- lib/generators/templates/db/migrate/20100812162326_payments_state_and_assigned_to_order_only.rb
|
646
|
-
- lib/generators/templates/db/migrate/20100813023502_create_address_keys_for_order.rb
|
647
|
-
- lib/generators/templates/db/migrate/20100813185745_payment_total_for_orders.rb
|
648
|
-
- lib/generators/templates/db/migrate/20100816212146_shipping_method_id_for_orders.rb
|
649
|
-
- lib/generators/templates/db/migrate/20100817152723_add_shipment_and_payment_state.rb
|
650
|
-
- lib/generators/templates/db/migrate/20100819170125_refactor_adjustments.rb
|
651
|
-
- lib/generators/templates/db/migrate/20100820135707_response_code_and_avs_response_for_payments.rb
|
652
|
-
- lib/generators/templates/db/migrate/20100901171814_change_guest_flag_to_anonymous.rb
|
653
|
-
- lib/generators/templates/db/sample/users.rb
|
654
|
-
- lib/generators/templates/extension/engine.rb.tt
|
655
|
-
- lib/generators/templates/extension/extension.rb.tt
|
656
|
-
- lib/generators/templates/extension.gemspec.tt
|
657
|
-
- lib/generators/templates/lib/tasks/%file_name%.rake.tt
|
658
|
-
- lib/generators/templates/LICENSE
|
659
|
-
- lib/generators/templates/public/images/add-to-cart.png
|
660
|
-
- lib/generators/templates/public/images/admin/bg/active-tab.png
|
661
|
-
- lib/generators/templates/public/images/admin/bg/admin_tab_back.png
|
662
|
-
- lib/generators/templates/public/images/admin/bg/admin_tab_selected_back.png
|
663
|
-
- lib/generators/templates/public/images/admin/bg/content-back-blue.png
|
664
|
-
- lib/generators/templates/public/images/admin/bg/content-back-green.png
|
665
|
-
- lib/generators/templates/public/images/admin/bg/content-back.png
|
666
|
-
- lib/generators/templates/public/images/admin/bg/flash-error.png
|
667
|
-
- lib/generators/templates/public/images/admin/bg/flash-notice.png
|
668
|
-
- lib/generators/templates/public/images/admin/bg/green-stripes.gif
|
669
|
-
- lib/generators/templates/public/images/admin/bg/green-stripes.png
|
670
|
-
- lib/generators/templates/public/images/admin/bg/grid_header_back.png
|
671
|
-
- lib/generators/templates/public/images/admin/bg/grid_header_back_green.png
|
672
|
-
- lib/generators/templates/public/images/admin/bg/header-bg.png
|
673
|
-
- lib/generators/templates/public/images/admin/bg/header.png
|
674
|
-
- lib/generators/templates/public/images/admin/bg/header_bg.jpg
|
675
|
-
- lib/generators/templates/public/images/admin/bg/menu-current.png
|
676
|
-
- lib/generators/templates/public/images/admin/bg/red-stripes.gif
|
677
|
-
- lib/generators/templates/public/images/admin/bg/red-stripes.png
|
678
|
-
- lib/generators/templates/public/images/admin/bg/spree_50.png
|
679
|
-
- lib/generators/templates/public/images/admin/bg/subnav-divider.png
|
680
|
-
- lib/generators/templates/public/images/admin/bg/subnav.png
|
681
|
-
- lib/generators/templates/public/images/admin/bg/tab-back.png
|
682
|
-
- lib/generators/templates/public/images/admin/buttons/blue/left_01.png
|
683
|
-
- lib/generators/templates/public/images/admin/buttons/blue/right_01.png
|
684
|
-
- lib/generators/templates/public/images/admin/buttons/drag-handle-green.png
|
685
|
-
- lib/generators/templates/public/images/admin/buttons/green/left_01.png
|
686
|
-
- lib/generators/templates/public/images/admin/buttons/green/right_01.png
|
687
|
-
- lib/generators/templates/public/images/admin/buttons/left_01.png
|
688
|
-
- lib/generators/templates/public/images/admin/buttons/left_01_small.png
|
689
|
-
- lib/generators/templates/public/images/admin/buttons/orange/left_03.png
|
690
|
-
- lib/generators/templates/public/images/admin/buttons/orange/right_03.png
|
691
|
-
- lib/generators/templates/public/images/admin/buttons/right_01.png
|
692
|
-
- lib/generators/templates/public/images/admin/buttons/right_01_small.png
|
693
|
-
- lib/generators/templates/public/images/admin/icons/16x16/1.png
|
694
|
-
- lib/generators/templates/public/images/admin/icons/16x16/10.png
|
695
|
-
- lib/generators/templates/public/images/admin/icons/16x16/2.png
|
696
|
-
- lib/generators/templates/public/images/admin/icons/16x16/3.png
|
697
|
-
- lib/generators/templates/public/images/admin/icons/16x16/4.png
|
698
|
-
- lib/generators/templates/public/images/admin/icons/16x16/5.png
|
699
|
-
- lib/generators/templates/public/images/admin/icons/16x16/6.png
|
700
|
-
- lib/generators/templates/public/images/admin/icons/16x16/7.png
|
701
|
-
- lib/generators/templates/public/images/admin/icons/16x16/8.png
|
702
|
-
- lib/generators/templates/public/images/admin/icons/16x16/9.png
|
703
|
-
- lib/generators/templates/public/images/admin/icons/32x32/1.png
|
704
|
-
- lib/generators/templates/public/images/admin/icons/32x32/10.png
|
705
|
-
- lib/generators/templates/public/images/admin/icons/32x32/11.png
|
706
|
-
- lib/generators/templates/public/images/admin/icons/32x32/2.png
|
707
|
-
- lib/generators/templates/public/images/admin/icons/32x32/3.png
|
708
|
-
- lib/generators/templates/public/images/admin/icons/32x32/4.png
|
709
|
-
- lib/generators/templates/public/images/admin/icons/32x32/5.png
|
710
|
-
- lib/generators/templates/public/images/admin/icons/32x32/6.png
|
711
|
-
- lib/generators/templates/public/images/admin/icons/32x32/7.png
|
712
|
-
- lib/generators/templates/public/images/admin/icons/32x32/8.png
|
713
|
-
- lib/generators/templates/public/images/admin/icons/32x32/9.png
|
714
|
-
- lib/generators/templates/public/images/admin/icons/accept.png
|
715
|
-
- lib/generators/templates/public/images/admin/icons/add.gif
|
716
|
-
- lib/generators/templates/public/images/admin/icons/add.png
|
717
|
-
- lib/generators/templates/public/images/admin/icons/arrow-down.gif
|
718
|
-
- lib/generators/templates/public/images/admin/icons/cross.png
|
719
|
-
- lib/generators/templates/public/images/admin/icons/delete.gif
|
720
|
-
- lib/generators/templates/public/images/admin/icons/delete.png
|
721
|
-
- lib/generators/templates/public/images/admin/icons/drag.gif
|
722
|
-
- lib/generators/templates/public/images/admin/icons/edit.gif
|
723
|
-
- lib/generators/templates/public/images/admin/icons/edit.png
|
724
|
-
- lib/generators/templates/public/images/admin/icons/email.png
|
725
|
-
- lib/generators/templates/public/images/admin/icons/error.png
|
726
|
-
- lib/generators/templates/public/images/admin/icons/exclamation.png
|
727
|
-
- lib/generators/templates/public/images/admin/icons/feed.png
|
728
|
-
- lib/generators/templates/public/images/admin/icons/pdf.png
|
729
|
-
- lib/generators/templates/public/images/admin/icons/reorder.gif
|
730
|
-
- lib/generators/templates/public/images/admin/icons/search.gif
|
731
|
-
- lib/generators/templates/public/images/admin/icons/send-email.png
|
732
|
-
- lib/generators/templates/public/images/admin/icons/stop.png
|
733
|
-
- lib/generators/templates/public/images/admin/icons/tick.png
|
734
|
-
- lib/generators/templates/public/images/admin/icons/up.gif
|
735
|
-
- lib/generators/templates/public/images/admin/icons/xls.png
|
736
|
-
- lib/generators/templates/public/images/admin/tabs/off-left.png
|
737
|
-
- lib/generators/templates/public/images/admin/tabs/off-right.png
|
738
|
-
- lib/generators/templates/public/images/admin/tabs/on-left.png
|
739
|
-
- lib/generators/templates/public/images/admin/tabs/on-right.png
|
740
|
-
- lib/generators/templates/public/images/ajax_loader.gif
|
741
|
-
- lib/generators/templates/public/images/amex_cid.gif
|
742
|
-
- lib/generators/templates/public/images/bg-button-hover.png
|
743
|
-
- lib/generators/templates/public/images/bg-button-pressed.png
|
744
|
-
- lib/generators/templates/public/images/bg-button.gif
|
745
|
-
- lib/generators/templates/public/images/bg-button.png
|
746
|
-
- lib/generators/templates/public/images/blue/left_01.png
|
747
|
-
- lib/generators/templates/public/images/blue/right_01.png
|
748
|
-
- lib/generators/templates/public/images/body-back.png
|
749
|
-
- lib/generators/templates/public/images/bottom_shine.png
|
750
|
-
- lib/generators/templates/public/images/breadcrumb.gif
|
751
|
-
- lib/generators/templates/public/images/button-dark-hover.png
|
752
|
-
- lib/generators/templates/public/images/button-dark.png
|
753
|
-
- lib/generators/templates/public/images/buttons/bg-button-hover.png
|
754
|
-
- lib/generators/templates/public/images/buttons/bg-button-pressed.png
|
755
|
-
- lib/generators/templates/public/images/buttons/bg-button.gif
|
756
|
-
- lib/generators/templates/public/images/buttons/bg-button.png
|
757
|
-
- lib/generators/templates/public/images/buttons/blue/left_01.png
|
758
|
-
- lib/generators/templates/public/images/buttons/blue/right_01.png
|
759
|
-
- lib/generators/templates/public/images/buttons/button-dark-hover.png
|
760
|
-
- lib/generators/templates/public/images/buttons/button-dark.png
|
761
|
-
- lib/generators/templates/public/images/buttons/drag-handle-green.png
|
762
|
-
- lib/generators/templates/public/images/buttons/green/left_01.png
|
763
|
-
- lib/generators/templates/public/images/buttons/green/right_01.png
|
764
|
-
- lib/generators/templates/public/images/buttons/left_01.png
|
765
|
-
- lib/generators/templates/public/images/buttons/left_01_small.png
|
766
|
-
- lib/generators/templates/public/images/buttons/orange/left_03.png
|
767
|
-
- lib/generators/templates/public/images/buttons/orange/right_03.png
|
768
|
-
- lib/generators/templates/public/images/buttons/right_01.png
|
769
|
-
- lib/generators/templates/public/images/buttons/right_01_small.png
|
770
|
-
- lib/generators/templates/public/images/buttons/sxsw-ribbon-v1.png
|
771
|
-
- lib/generators/templates/public/images/buttons/top-shine.png
|
772
|
-
- lib/generators/templates/public/images/calendar_date_select/calendar.gif
|
773
|
-
- lib/generators/templates/public/images/cart-empty.png
|
774
|
-
- lib/generators/templates/public/images/cart-empty_x32.png
|
775
|
-
- lib/generators/templates/public/images/cart-full.png
|
776
|
-
- lib/generators/templates/public/images/cart-full_x32.png
|
777
|
-
- lib/generators/templates/public/images/checkout.png
|
778
|
-
- lib/generators/templates/public/images/creditcard.gif
|
779
|
-
- lib/generators/templates/public/images/datepicker/backstripes.gif
|
780
|
-
- lib/generators/templates/public/images/datepicker/bg_header.jpg
|
781
|
-
- lib/generators/templates/public/images/datepicker/bullet1.gif
|
782
|
-
- lib/generators/templates/public/images/datepicker/bullet2.gif
|
783
|
-
- lib/generators/templates/public/images/datepicker/cal.gif
|
784
|
-
- lib/generators/templates/public/images/datepicker/gradient-e5e5e5-ffffff.gif
|
785
|
-
- lib/generators/templates/public/images/discover_cid.gif
|
786
|
-
- lib/generators/templates/public/images/drag-handle-green.png
|
787
|
-
- lib/generators/templates/public/images/favicon.ico
|
788
|
-
- lib/generators/templates/public/images/green/left_01.png
|
789
|
-
- lib/generators/templates/public/images/green/right_01.png
|
790
|
-
- lib/generators/templates/public/images/grid.png
|
791
|
-
- lib/generators/templates/public/images/left_01.png
|
792
|
-
- lib/generators/templates/public/images/left_01_small.png
|
793
|
-
- lib/generators/templates/public/images/master_cid.jpg
|
794
|
-
- lib/generators/templates/public/images/menu-current.png
|
795
|
-
- lib/generators/templates/public/images/menu-hover.png
|
796
|
-
- lib/generators/templates/public/images/noimage/mini.jpg
|
797
|
-
- lib/generators/templates/public/images/noimage/product.jpg
|
798
|
-
- lib/generators/templates/public/images/noimage/small.jpg
|
799
|
-
- lib/generators/templates/public/images/openid-inputicon.gif
|
800
|
-
- lib/generators/templates/public/images/orange/left_03.png
|
801
|
-
- lib/generators/templates/public/images/orange/right_03.png
|
802
|
-
- lib/generators/templates/public/images/progress.gif
|
803
|
-
- lib/generators/templates/public/images/right_01.png
|
804
|
-
- lib/generators/templates/public/images/right_01_small.png
|
805
|
-
- lib/generators/templates/public/images/separator.png
|
806
|
-
- lib/generators/templates/public/images/shadow-top.png
|
807
|
-
- lib/generators/templates/public/images/shadow_top.png
|
808
|
-
- lib/generators/templates/public/images/spinner.gif
|
809
|
-
- lib/generators/templates/public/images/spree/progress.gif
|
810
|
-
- lib/generators/templates/public/images/spree/spinner.gif
|
811
|
-
- lib/generators/templates/public/images/spree/spree.jpg
|
812
|
-
- lib/generators/templates/public/images/spree.jpg
|
813
|
-
- lib/generators/templates/public/images/step-progress/completed-completed.gif
|
814
|
-
- lib/generators/templates/public/images/step-progress/completed-current.gif
|
815
|
-
- lib/generators/templates/public/images/step-progress/completed-first.gif
|
816
|
-
- lib/generators/templates/public/images/step-progress/current-first.gif
|
817
|
-
- lib/generators/templates/public/images/step-progress/current-incomplete.gif
|
818
|
-
- lib/generators/templates/public/images/step-progress/current-right.gif
|
819
|
-
- lib/generators/templates/public/images/step-progress/incomplete-incomplete.gif
|
820
|
-
- lib/generators/templates/public/images/step-progress/incomplete-right.gif
|
821
|
-
- lib/generators/templates/public/images/steps/1.png
|
822
|
-
- lib/generators/templates/public/images/steps/1_small.png
|
823
|
-
- lib/generators/templates/public/images/steps/2.png
|
824
|
-
- lib/generators/templates/public/images/steps/2_small.png
|
825
|
-
- lib/generators/templates/public/images/steps/3.png
|
826
|
-
- lib/generators/templates/public/images/steps/3_small.png
|
827
|
-
- lib/generators/templates/public/images/steps/4.png
|
828
|
-
- lib/generators/templates/public/images/steps/4_small.png
|
829
|
-
- lib/generators/templates/public/images/steps/5.png
|
830
|
-
- lib/generators/templates/public/images/steps/5_small.png
|
831
|
-
- lib/generators/templates/public/images/steps/6.png
|
832
|
-
- lib/generators/templates/public/images/steps/6_small.png
|
833
|
-
- lib/generators/templates/public/images/sxsw-ribbon-v1.png
|
834
|
-
- lib/generators/templates/public/images/tab_bottom.gif
|
835
|
-
- lib/generators/templates/public/images/tile-header.png
|
836
|
-
- lib/generators/templates/public/images/tile-slider.png
|
837
|
-
- lib/generators/templates/public/images/top-shine.png
|
838
|
-
- lib/generators/templates/public/images/tree-nav-icons/bullet.gif
|
839
|
-
- lib/generators/templates/public/images/tree-nav-icons/minus.gif
|
840
|
-
- lib/generators/templates/public/images/tree-nav-icons/plus.gif
|
841
|
-
- lib/generators/templates/public/images/tree-nav-icons/treeview-loading.gif
|
842
|
-
- lib/generators/templates/public/images/tree-nav-icons/treeview-sprite.gif
|
843
|
-
- lib/generators/templates/public/images/update.png
|
844
|
-
- lib/generators/templates/public/images/visa_cid.gif
|
845
|
-
- lib/generators/templates/public/images/wrapper-back-2.png
|
846
|
-
- lib/generators/templates/public/images/wrapper-back.png
|
847
|
-
- lib/generators/templates/public/images/yui-menubaritem_submenuindicator.png
|
848
|
-
- lib/generators/templates/public/images/yui-menubaritem_submenuindicator_disabled.png
|
849
|
-
- lib/generators/templates/public/images/yui-menuitem_checkbox.png
|
850
|
-
- lib/generators/templates/public/images/yui-menuitem_checkbox_disabled.png
|
851
|
-
- lib/generators/templates/public/images/yui-menuitem_submenuindicator.png
|
852
|
-
- lib/generators/templates/public/images/yui-menuitem_submenuindicator_disabled.png
|
853
|
-
- lib/generators/templates/public/images/yui-sprite.png
|
854
|
-
- lib/generators/templates/public/javascripts/additional-methods.js
|
855
|
-
- lib/generators/templates/public/javascripts/admin/address_states.js
|
856
|
-
- lib/generators/templates/public/javascripts/admin/checkouts/edit.js
|
857
|
-
- lib/generators/templates/public/javascripts/admin/orders/edit.js
|
858
|
-
- lib/generators/templates/public/javascripts/admin/orders/edit_form.js
|
859
|
-
- lib/generators/templates/public/javascripts/admin/payments/new.js
|
860
|
-
- lib/generators/templates/public/javascripts/admin/unobtrusive_handlers.js
|
861
|
-
- lib/generators/templates/public/javascripts/admin.js
|
862
|
-
- lib/generators/templates/public/javascripts/application.js
|
863
|
-
- lib/generators/templates/public/javascripts/calculator.js
|
864
|
-
- lib/generators/templates/public/javascripts/checkout.js
|
865
|
-
- lib/generators/templates/public/javascripts/datepicker.js
|
866
|
-
- lib/generators/templates/public/javascripts/gateway.js
|
867
|
-
- lib/generators/templates/public/javascripts/jquery-1.3.2.min.js
|
868
|
-
- lib/generators/templates/public/javascripts/jquery-1.4.2.min.js
|
869
|
-
- lib/generators/templates/public/javascripts/jquery-and-plugins.js
|
870
|
-
- lib/generators/templates/public/javascripts/jquery-ui.js
|
871
|
-
- lib/generators/templates/public/javascripts/jquery.alerts/images/help.gif
|
872
|
-
- lib/generators/templates/public/javascripts/jquery.alerts/images/important.gif
|
873
|
-
- lib/generators/templates/public/javascripts/jquery.alerts/images/info.gif
|
874
|
-
- lib/generators/templates/public/javascripts/jquery.alerts/images/title.gif
|
875
|
-
- lib/generators/templates/public/javascripts/jquery.alerts/jquery.alerts.css
|
876
|
-
- lib/generators/templates/public/javascripts/jquery.alerts/jquery.alerts.js
|
877
|
-
- lib/generators/templates/public/javascripts/jquery.alerts/jquery.alerts.spree.css
|
878
|
-
- lib/generators/templates/public/javascripts/jquery.autocomplete.min.js
|
879
|
-
- lib/generators/templates/public/javascripts/jquery.js
|
880
|
-
- lib/generators/templates/public/javascripts/jquery.suggest.js
|
881
|
-
- lib/generators/templates/public/javascripts/jquery.template.js
|
882
|
-
- lib/generators/templates/public/javascripts/jquery.tokeninput.js
|
883
|
-
- lib/generators/templates/public/javascripts/jquery.validate.min.js
|
884
|
-
- lib/generators/templates/public/javascripts/jrails.autocomplete.js
|
885
|
-
- lib/generators/templates/public/javascripts/jrails.js
|
886
|
-
- lib/generators/templates/public/javascripts/jsTree/jquery.tree.js
|
887
|
-
- lib/generators/templates/public/javascripts/jsTree/plugins/jquery.tree.contextmenu.js
|
888
|
-
- lib/generators/templates/public/javascripts/jsTree/themes/apple/bg.jpg
|
889
|
-
- lib/generators/templates/public/javascripts/jsTree/themes/apple/dot_for_ie.gif
|
890
|
-
- lib/generators/templates/public/javascripts/jsTree/themes/apple/icons.png
|
891
|
-
- lib/generators/templates/public/javascripts/jsTree/themes/apple/style.css
|
892
|
-
- lib/generators/templates/public/javascripts/jsTree/themes/apple/throbber.gif
|
893
|
-
- lib/generators/templates/public/javascripts/lang/af.js
|
894
|
-
- lib/generators/templates/public/javascripts/lang/ar.js
|
895
|
-
- lib/generators/templates/public/javascripts/lang/de.js
|
896
|
-
- lib/generators/templates/public/javascripts/lang/du.js
|
897
|
-
- lib/generators/templates/public/javascripts/lang/en.js
|
898
|
-
- lib/generators/templates/public/javascripts/lang/es.js
|
899
|
-
- lib/generators/templates/public/javascripts/lang/fi.js
|
900
|
-
- lib/generators/templates/public/javascripts/lang/fr.js
|
901
|
-
- lib/generators/templates/public/javascripts/lang/gr.js
|
902
|
-
- lib/generators/templates/public/javascripts/lang/he.js
|
903
|
-
- lib/generators/templates/public/javascripts/lang/it.js
|
904
|
-
- lib/generators/templates/public/javascripts/lang/nl.js
|
905
|
-
- lib/generators/templates/public/javascripts/lang/no.js
|
906
|
-
- lib/generators/templates/public/javascripts/lang/pt.js
|
907
|
-
- lib/generators/templates/public/javascripts/lang/ro.js
|
908
|
-
- lib/generators/templates/public/javascripts/lang/ru.js
|
909
|
-
- lib/generators/templates/public/javascripts/lang/sp.js
|
910
|
-
- lib/generators/templates/public/javascripts/lang/sv.js
|
911
|
-
- lib/generators/templates/public/javascripts/lang/ua.js
|
912
|
-
- lib/generators/templates/public/javascripts/localization/messages_cn.js
|
913
|
-
- lib/generators/templates/public/javascripts/localization/messages_cs.js
|
914
|
-
- lib/generators/templates/public/javascripts/localization/messages_da.js
|
915
|
-
- lib/generators/templates/public/javascripts/localization/messages_de.js
|
916
|
-
- lib/generators/templates/public/javascripts/localization/messages_es.js
|
917
|
-
- lib/generators/templates/public/javascripts/localization/messages_fr.js
|
918
|
-
- lib/generators/templates/public/javascripts/localization/messages_hu.js
|
919
|
-
- lib/generators/templates/public/javascripts/localization/messages_it.js
|
920
|
-
- lib/generators/templates/public/javascripts/localization/messages_kk.js
|
921
|
-
- lib/generators/templates/public/javascripts/localization/messages_nl.js
|
922
|
-
- lib/generators/templates/public/javascripts/localization/messages_no.js
|
923
|
-
- lib/generators/templates/public/javascripts/localization/messages_pl.js
|
924
|
-
- lib/generators/templates/public/javascripts/localization/messages_ptbr.js
|
925
|
-
- lib/generators/templates/public/javascripts/localization/messages_ro.js
|
926
|
-
- lib/generators/templates/public/javascripts/localization/messages_ru.js
|
927
|
-
- lib/generators/templates/public/javascripts/localization/messages_se.js
|
928
|
-
- lib/generators/templates/public/javascripts/localization/messages_sk.js
|
929
|
-
- lib/generators/templates/public/javascripts/localization/messages_tr.js
|
930
|
-
- lib/generators/templates/public/javascripts/localization/messages_tw.js
|
931
|
-
- lib/generators/templates/public/javascripts/localization/messages_ua.js
|
932
|
-
- lib/generators/templates/public/javascripts/nested-attribute.js
|
933
|
-
- lib/generators/templates/public/javascripts/open_id.js
|
934
|
-
- lib/generators/templates/public/javascripts/product.js
|
935
|
-
- lib/generators/templates/public/javascripts/rails.js
|
936
|
-
- lib/generators/templates/public/javascripts/taxonomy.js
|
937
|
-
- lib/generators/templates/public/javascripts/zone.js
|
938
|
-
- lib/generators/templates/public/stylesheets/admin/admin-forms.css
|
939
|
-
- lib/generators/templates/public/stylesheets/admin/admin-reset.css
|
940
|
-
- lib/generators/templates/public/stylesheets/admin/admin-tables.css
|
941
|
-
- lib/generators/templates/public/stylesheets/admin/admin-typography.css
|
942
|
-
- lib/generators/templates/public/stylesheets/admin/admin.css
|
943
|
-
- lib/generators/templates/public/stylesheets/admin/autocomplete.css
|
944
|
-
- lib/generators/templates/public/stylesheets/admin/dashboard.css
|
945
|
-
- lib/generators/templates/public/stylesheets/admin/edit_checkouts.css
|
946
|
-
- lib/generators/templates/public/stylesheets/admin/grids.css
|
947
|
-
- lib/generators/templates/public/stylesheets/admin/reset-fonts-grids-2-6-0.css
|
948
|
-
- lib/generators/templates/public/stylesheets/admin/token-input.css
|
949
|
-
- lib/generators/templates/public/stylesheets/admin/yui-includes.css
|
950
|
-
- lib/generators/templates/public/stylesheets/datepicker.css
|
951
|
-
- lib/generators/templates/public/stylesheets/jquery.autocomplete.css
|
952
|
-
- lib/generators/templates/public/stylesheets/scaffold.css
|
953
|
-
- lib/generators/templates/public/stylesheets/screen.css
|
954
|
-
- lib/generators/templates/Rakefile
|
955
|
-
- lib/generators/templates/README.md
|
956
|
-
- lib/generators/templates/spree_site.rb
|
957
648
|
- lib/product_filters.rb
|
958
649
|
- lib/redirect_legacy_product_url.rb
|
959
650
|
- lib/scopes/dynamic.rb
|
@@ -966,16 +657,18 @@ files:
|
|
966
657
|
- lib/spree/current_order.rb
|
967
658
|
- lib/spree/file_utilz.rb
|
968
659
|
- lib/spree/gateway_error.rb
|
660
|
+
- lib/spree/i18n_utils.rb
|
661
|
+
- lib/spree/mail_interceptor.rb
|
662
|
+
- lib/spree/mail_settings.rb
|
969
663
|
- lib/spree/preference_access.rb
|
970
664
|
- lib/spree/search/base.rb
|
971
|
-
- lib/
|
665
|
+
- lib/spree_core/authorize_net_cim_hack.rb
|
972
666
|
- lib/spree_core/delegate_belongs_to.rb
|
973
667
|
- lib/spree_core/enumerable_constants.rb
|
974
668
|
- lib/spree_core/ext/active_record.rb
|
975
669
|
- lib/spree_core/ext/array.rb
|
976
670
|
- lib/spree_core/ext/string.rb
|
977
671
|
- lib/spree_core/find_by_param.rb
|
978
|
-
- lib/spree_core/preferences/mail_settings.rb
|
979
672
|
- lib/spree_core/preferences/model_hooks.rb
|
980
673
|
- lib/spree_core/preferences/preference_definition.rb
|
981
674
|
- lib/spree_core/ssl_requirement.rb
|
@@ -988,7 +681,385 @@ files:
|
|
988
681
|
- lib/spree_core.rb
|
989
682
|
- lib/store_helpers.rb
|
990
683
|
- lib/tasks/core.rake
|
684
|
+
- lib/tasks/install.rake
|
991
685
|
- lib/tasks/themes.rake
|
686
|
+
- db/default/countries.yml
|
687
|
+
- db/default/roles.yml
|
688
|
+
- db/default/states.yml
|
689
|
+
- db/default/zone_members.yml
|
690
|
+
- db/default/zones.yml
|
691
|
+
- db/migrate/20090823005402_spree_zero_nine_zero.rb
|
692
|
+
- db/migrate/20090904192342_create_indexes_for_inventory_units.rb
|
693
|
+
- db/migrate/20090923100315_add_count_on_hand_to_variants_and_products.rb
|
694
|
+
- db/migrate/20091007134354_change_taxons_to_nested_set.rb
|
695
|
+
- db/migrate/20091008091614_move_to_configurable_gateways.rb
|
696
|
+
- db/migrate/20091012120519_product_groups_and_scopes.rb
|
697
|
+
- db/migrate/20091015110842_add_open_id_authentication_tables.rb
|
698
|
+
- db/migrate/20091015153048_add_openid_field_to_users.rb
|
699
|
+
- db/migrate/20091016174634_change_preference_value_type.rb
|
700
|
+
- db/migrate/20091017175558_create_billing_integrations.rb
|
701
|
+
- db/migrate/20091021133257_charge_refactoring.rb
|
702
|
+
- db/migrate/20091104151730_add_some_indexes.rb
|
703
|
+
- db/migrate/20091126190904_checkout_state_machine.rb
|
704
|
+
- db/migrate/20091209153045_state_for_shipments.rb
|
705
|
+
- db/migrate/20091209202200_make_state_events_polymorphic.rb
|
706
|
+
- db/migrate/20091211203813_ship_address_id_for_checkouts.rb
|
707
|
+
- db/migrate/20091212161118_shipping_method_id_for_checkouts.rb
|
708
|
+
- db/migrate/20091213222815_creditcard_last_four_digits.rb
|
709
|
+
- db/migrate/20091214183826_populate_legacy_shipment_state.rb
|
710
|
+
- db/migrate/20100105090147_add_cost_price.rb
|
711
|
+
- db/migrate/20100105132138_shipment_id_for_inventory_units.rb
|
712
|
+
- db/migrate/20100111205525_cim_fields_for_creditcards.rb
|
713
|
+
- db/migrate/20100112151511_create_return_authorizations.rb
|
714
|
+
- db/migrate/20100113090919_add_return_authorization_to_inventory_units.rb
|
715
|
+
- db/migrate/20100113203104_create_trackers.rb
|
716
|
+
- db/migrate/20100121160010_creditcard_id_for_creditcard_txns.rb
|
717
|
+
- db/migrate/20100121183934_original_creditcard_txn_id_for_creditcard_txns.rb
|
718
|
+
- db/migrate/20100125145351_add_test_mode_to_billing_integration.rb
|
719
|
+
- db/migrate/20100126103714_create_products_product_groups.rb
|
720
|
+
- db/migrate/20100209025806_create_payment_methods.rb
|
721
|
+
- db/migrate/20100209144531_polymorphic_payments.rb
|
722
|
+
- db/migrate/20100213103131_change_payments_payment_method_to_belongs_to.rb
|
723
|
+
- db/migrate/20100214212536_assign_creditcard_txns_to_payment.rb
|
724
|
+
- db/migrate/20100223170312_sti_for_transactions.rb
|
725
|
+
- db/migrate/20100223183812_drop_billing_integrations.rb
|
726
|
+
- db/migrate/20100224153127_deleted_at_for_payment_methods.rb
|
727
|
+
- db/migrate/20100301163454_add_adjustments_index.rb
|
728
|
+
- db/migrate/20100306153445_fix_by_popularity.rb
|
729
|
+
- db/migrate/20100317120946_add_alt_text_to_images.rb
|
730
|
+
- db/migrate/20100427121301_add_display_to_payment_methods.rb
|
731
|
+
- db/migrate/20100504142133_add_addresses_checkouts_indexes.rb
|
732
|
+
- db/migrate/20100506180619_add_icon_to_taxons.rb
|
733
|
+
- db/migrate/20100506185838_add_description_to_taxons.rb
|
734
|
+
- db/migrate/20100528155333_index_for_shipments_number.rb
|
735
|
+
- db/migrate/20100528185820_add_index_on_users_persistence_token.rb
|
736
|
+
- db/migrate/20100605152042_add_default_to_tax_categories.rb
|
737
|
+
- db/migrate/20100624110730_add_display_to_shipping_methods.rb
|
738
|
+
- db/migrate/20100624123336_rename_payment_method_display.rb
|
739
|
+
- db/migrate/20100624175547_rename_preferences_field.rb
|
740
|
+
- db/migrate/20100811163637_add_guest_flag.rb
|
741
|
+
- db/migrate/20100811205836_drop_order_token.rb
|
742
|
+
- db/migrate/20100812162326_payments_state_and_assigned_to_order_only.rb
|
743
|
+
- db/migrate/20100813023502_create_address_keys_for_order.rb
|
744
|
+
- db/migrate/20100813185745_payment_total_for_orders.rb
|
745
|
+
- db/migrate/20100816212146_shipping_method_id_for_orders.rb
|
746
|
+
- db/migrate/20100817152723_add_shipment_and_payment_state.rb
|
747
|
+
- db/migrate/20100819170125_refactor_adjustments.rb
|
748
|
+
- db/migrate/20100820135707_response_code_and_avs_response_for_payments.rb
|
749
|
+
- db/migrate/20100901171814_change_guest_flag_to_anonymous.rb
|
750
|
+
- db/migrate/20100903203949_email_for_orders.rb
|
751
|
+
- db/migrate/20100908170204_remove_unique_index_on_users_email.rb
|
752
|
+
- db/migrate/20100923162011_create_mail_methods.rb
|
753
|
+
- db/migrate/20100929151905_rename_frozen_to_locked.rb
|
754
|
+
- db/migrate/20101008190536_move_special_instructions_to_orders.rb
|
755
|
+
- db/migrate/20101026184700_create_log_entries.rb
|
756
|
+
- db/migrate/20101026184714_migrate_transactions_to_payment_state.rb
|
757
|
+
- db/migrate/20101026184746_delete_in_progress_orders.rb
|
758
|
+
- db/migrate/20101026184808_migrate_checkout_to_orders.rb
|
759
|
+
- db/migrate/20101026184833_migrate_adjustments.rb
|
760
|
+
- db/migrate/20101026184855_remove_shipped_state.rb
|
761
|
+
- db/migrate/20101026184916_prevent_nil_payment_total.rb
|
762
|
+
- db/migrate/20101026184932_prevent_nil_email.rb
|
763
|
+
- db/migrate/20101026184959_generate_anonymous_users.rb
|
764
|
+
- db/migrate/20101026185022_update_order_state.rb
|
765
|
+
- db/migrate/20101026192225_cleanup_legacy_tables.rb
|
766
|
+
- db/migrate/20101028151745_remove_number_and_cvv_from_credicard.rb
|
767
|
+
- db/migrate/20101103212716_drop_anonymous_field_for_user.rb
|
768
|
+
- db/sample/users.rb
|
769
|
+
- db/seeds.rb
|
770
|
+
- public/images/add-to-cart.png
|
771
|
+
- public/images/admin/bg/active-tab.png
|
772
|
+
- public/images/admin/bg/admin_tab_back.png
|
773
|
+
- public/images/admin/bg/admin_tab_selected_back.png
|
774
|
+
- public/images/admin/bg/content-back-blue.png
|
775
|
+
- public/images/admin/bg/content-back-green.png
|
776
|
+
- public/images/admin/bg/content-back.png
|
777
|
+
- public/images/admin/bg/flash-error.png
|
778
|
+
- public/images/admin/bg/flash-notice.png
|
779
|
+
- public/images/admin/bg/green-stripes.gif
|
780
|
+
- public/images/admin/bg/green-stripes.png
|
781
|
+
- public/images/admin/bg/grid_header_back.png
|
782
|
+
- public/images/admin/bg/grid_header_back_green.png
|
783
|
+
- public/images/admin/bg/header-bg.png
|
784
|
+
- public/images/admin/bg/header.png
|
785
|
+
- public/images/admin/bg/header_bg.jpg
|
786
|
+
- public/images/admin/bg/menu-current.png
|
787
|
+
- public/images/admin/bg/red-stripes.gif
|
788
|
+
- public/images/admin/bg/red-stripes.png
|
789
|
+
- public/images/admin/bg/spree_50.png
|
790
|
+
- public/images/admin/bg/subnav-divider.png
|
791
|
+
- public/images/admin/bg/subnav.png
|
792
|
+
- public/images/admin/bg/tab-back.png
|
793
|
+
- public/images/admin/buttons/blue/left_01.png
|
794
|
+
- public/images/admin/buttons/blue/right_01.png
|
795
|
+
- public/images/admin/buttons/drag-handle-green.png
|
796
|
+
- public/images/admin/buttons/green/left_01.png
|
797
|
+
- public/images/admin/buttons/green/right_01.png
|
798
|
+
- public/images/admin/buttons/left_01.png
|
799
|
+
- public/images/admin/buttons/left_01_small.png
|
800
|
+
- public/images/admin/buttons/orange/left_03.png
|
801
|
+
- public/images/admin/buttons/orange/right_03.png
|
802
|
+
- public/images/admin/buttons/right_01.png
|
803
|
+
- public/images/admin/buttons/right_01_small.png
|
804
|
+
- public/images/admin/icons/16x16/1.png
|
805
|
+
- public/images/admin/icons/16x16/10.png
|
806
|
+
- public/images/admin/icons/16x16/2.png
|
807
|
+
- public/images/admin/icons/16x16/3.png
|
808
|
+
- public/images/admin/icons/16x16/4.png
|
809
|
+
- public/images/admin/icons/16x16/5.png
|
810
|
+
- public/images/admin/icons/16x16/6.png
|
811
|
+
- public/images/admin/icons/16x16/7.png
|
812
|
+
- public/images/admin/icons/16x16/8.png
|
813
|
+
- public/images/admin/icons/16x16/9.png
|
814
|
+
- public/images/admin/icons/32x32/1.png
|
815
|
+
- public/images/admin/icons/32x32/10.png
|
816
|
+
- public/images/admin/icons/32x32/11.png
|
817
|
+
- public/images/admin/icons/32x32/2.png
|
818
|
+
- public/images/admin/icons/32x32/3.png
|
819
|
+
- public/images/admin/icons/32x32/4.png
|
820
|
+
- public/images/admin/icons/32x32/5.png
|
821
|
+
- public/images/admin/icons/32x32/6.png
|
822
|
+
- public/images/admin/icons/32x32/7.png
|
823
|
+
- public/images/admin/icons/32x32/8.png
|
824
|
+
- public/images/admin/icons/32x32/9.png
|
825
|
+
- public/images/admin/icons/accept.png
|
826
|
+
- public/images/admin/icons/add.gif
|
827
|
+
- public/images/admin/icons/add.png
|
828
|
+
- public/images/admin/icons/arrow-down.gif
|
829
|
+
- public/images/admin/icons/cross.png
|
830
|
+
- public/images/admin/icons/delete.gif
|
831
|
+
- public/images/admin/icons/delete.png
|
832
|
+
- public/images/admin/icons/drag.gif
|
833
|
+
- public/images/admin/icons/edit.gif
|
834
|
+
- public/images/admin/icons/edit.png
|
835
|
+
- public/images/admin/icons/email.png
|
836
|
+
- public/images/admin/icons/error.png
|
837
|
+
- public/images/admin/icons/exclamation.png
|
838
|
+
- public/images/admin/icons/feed.png
|
839
|
+
- public/images/admin/icons/pdf.png
|
840
|
+
- public/images/admin/icons/reorder.gif
|
841
|
+
- public/images/admin/icons/search.gif
|
842
|
+
- public/images/admin/icons/send-email.png
|
843
|
+
- public/images/admin/icons/stop.png
|
844
|
+
- public/images/admin/icons/tick.png
|
845
|
+
- public/images/admin/icons/up.gif
|
846
|
+
- public/images/admin/icons/xls.png
|
847
|
+
- public/images/admin/tabs/off-left.png
|
848
|
+
- public/images/admin/tabs/off-right.png
|
849
|
+
- public/images/admin/tabs/on-left.png
|
850
|
+
- public/images/admin/tabs/on-right.png
|
851
|
+
- public/images/ajax_loader.gif
|
852
|
+
- public/images/amex_cid.gif
|
853
|
+
- public/images/bg-button-hover.png
|
854
|
+
- public/images/bg-button-pressed.png
|
855
|
+
- public/images/bg-button.gif
|
856
|
+
- public/images/bg-button.png
|
857
|
+
- public/images/blue/left_01.png
|
858
|
+
- public/images/blue/right_01.png
|
859
|
+
- public/images/body-back.png
|
860
|
+
- public/images/bottom_shine.png
|
861
|
+
- public/images/breadcrumb.gif
|
862
|
+
- public/images/button-dark-hover.png
|
863
|
+
- public/images/button-dark.png
|
864
|
+
- public/images/buttons/bg-button-hover.png
|
865
|
+
- public/images/buttons/bg-button-pressed.png
|
866
|
+
- public/images/buttons/bg-button.gif
|
867
|
+
- public/images/buttons/bg-button.png
|
868
|
+
- public/images/buttons/blue/left_01.png
|
869
|
+
- public/images/buttons/blue/right_01.png
|
870
|
+
- public/images/buttons/button-dark-hover.png
|
871
|
+
- public/images/buttons/button-dark.png
|
872
|
+
- public/images/buttons/drag-handle-green.png
|
873
|
+
- public/images/buttons/green/left_01.png
|
874
|
+
- public/images/buttons/green/right_01.png
|
875
|
+
- public/images/buttons/left_01.png
|
876
|
+
- public/images/buttons/left_01_small.png
|
877
|
+
- public/images/buttons/orange/left_03.png
|
878
|
+
- public/images/buttons/orange/right_03.png
|
879
|
+
- public/images/buttons/right_01.png
|
880
|
+
- public/images/buttons/right_01_small.png
|
881
|
+
- public/images/buttons/sxsw-ribbon-v1.png
|
882
|
+
- public/images/buttons/top-shine.png
|
883
|
+
- public/images/calendar_date_select/calendar.gif
|
884
|
+
- public/images/cart-empty.png
|
885
|
+
- public/images/cart-empty_x32.png
|
886
|
+
- public/images/cart-full.png
|
887
|
+
- public/images/cart-full_x32.png
|
888
|
+
- public/images/checkout.png
|
889
|
+
- public/images/creditcard.gif
|
890
|
+
- public/images/datepicker/backstripes.gif
|
891
|
+
- public/images/datepicker/bg_header.jpg
|
892
|
+
- public/images/datepicker/bullet1.gif
|
893
|
+
- public/images/datepicker/bullet2.gif
|
894
|
+
- public/images/datepicker/cal.gif
|
895
|
+
- public/images/datepicker/gradient-e5e5e5-ffffff.gif
|
896
|
+
- public/images/discover_cid.gif
|
897
|
+
- public/images/drag-handle-green.png
|
898
|
+
- public/images/favicon.ico
|
899
|
+
- public/images/green/left_01.png
|
900
|
+
- public/images/green/right_01.png
|
901
|
+
- public/images/grid.png
|
902
|
+
- public/images/left_01.png
|
903
|
+
- public/images/left_01_small.png
|
904
|
+
- public/images/master_cid.jpg
|
905
|
+
- public/images/menu-current.png
|
906
|
+
- public/images/menu-hover.png
|
907
|
+
- public/images/noimage/mini.jpg
|
908
|
+
- public/images/noimage/product.jpg
|
909
|
+
- public/images/noimage/small.jpg
|
910
|
+
- public/images/openid-inputicon.gif
|
911
|
+
- public/images/orange/left_03.png
|
912
|
+
- public/images/orange/right_03.png
|
913
|
+
- public/images/progress.gif
|
914
|
+
- public/images/right_01.png
|
915
|
+
- public/images/right_01_small.png
|
916
|
+
- public/images/separator.png
|
917
|
+
- public/images/shadow-top.png
|
918
|
+
- public/images/shadow_top.png
|
919
|
+
- public/images/spinner.gif
|
920
|
+
- public/images/spree/progress.gif
|
921
|
+
- public/images/spree/spinner.gif
|
922
|
+
- public/images/spree/spree.jpg
|
923
|
+
- public/images/spree.jpg
|
924
|
+
- public/images/step-progress/completed-completed.gif
|
925
|
+
- public/images/step-progress/completed-current.gif
|
926
|
+
- public/images/step-progress/completed-first.gif
|
927
|
+
- public/images/step-progress/current-first.gif
|
928
|
+
- public/images/step-progress/current-incomplete.gif
|
929
|
+
- public/images/step-progress/current-right.gif
|
930
|
+
- public/images/step-progress/incomplete-incomplete.gif
|
931
|
+
- public/images/step-progress/incomplete-right.gif
|
932
|
+
- public/images/steps/1.png
|
933
|
+
- public/images/steps/1_small.png
|
934
|
+
- public/images/steps/2.png
|
935
|
+
- public/images/steps/2_small.png
|
936
|
+
- public/images/steps/3.png
|
937
|
+
- public/images/steps/3_small.png
|
938
|
+
- public/images/steps/4.png
|
939
|
+
- public/images/steps/4_small.png
|
940
|
+
- public/images/steps/5.png
|
941
|
+
- public/images/steps/5_small.png
|
942
|
+
- public/images/steps/6.png
|
943
|
+
- public/images/steps/6_small.png
|
944
|
+
- public/images/sxsw-ribbon-v1.png
|
945
|
+
- public/images/tab_bottom.gif
|
946
|
+
- public/images/tile-header.png
|
947
|
+
- public/images/tile-slider.png
|
948
|
+
- public/images/top-shine.png
|
949
|
+
- public/images/tree-nav-icons/bullet.gif
|
950
|
+
- public/images/tree-nav-icons/minus.gif
|
951
|
+
- public/images/tree-nav-icons/plus.gif
|
952
|
+
- public/images/tree-nav-icons/treeview-loading.gif
|
953
|
+
- public/images/tree-nav-icons/treeview-sprite.gif
|
954
|
+
- public/images/update.png
|
955
|
+
- public/images/visa_cid.gif
|
956
|
+
- public/images/wrapper-back-2.png
|
957
|
+
- public/images/wrapper-back.png
|
958
|
+
- public/images/yui-menubaritem_submenuindicator.png
|
959
|
+
- public/images/yui-menubaritem_submenuindicator_disabled.png
|
960
|
+
- public/images/yui-menuitem_checkbox.png
|
961
|
+
- public/images/yui-menuitem_checkbox_disabled.png
|
962
|
+
- public/images/yui-menuitem_submenuindicator.png
|
963
|
+
- public/images/yui-menuitem_submenuindicator_disabled.png
|
964
|
+
- public/images/yui-sprite.png
|
965
|
+
- public/javascripts/additional-methods.js
|
966
|
+
- public/javascripts/admin/address_states.js
|
967
|
+
- public/javascripts/admin/checkouts/edit.js
|
968
|
+
- public/javascripts/admin/orders/edit.js
|
969
|
+
- public/javascripts/admin/orders/edit_form.js
|
970
|
+
- public/javascripts/admin/payments/new.js
|
971
|
+
- public/javascripts/admin/unobtrusive_handlers.js
|
972
|
+
- public/javascripts/admin.js
|
973
|
+
- public/javascripts/application.js
|
974
|
+
- public/javascripts/calculator.js
|
975
|
+
- public/javascripts/checkout.js
|
976
|
+
- public/javascripts/datepicker.js
|
977
|
+
- public/javascripts/gateway.js
|
978
|
+
- public/javascripts/jquery-1.4.2.min.js
|
979
|
+
- public/javascripts/jquery-ui.js
|
980
|
+
- public/javascripts/jquery.alerts/images/help.gif
|
981
|
+
- public/javascripts/jquery.alerts/images/important.gif
|
982
|
+
- public/javascripts/jquery.alerts/images/info.gif
|
983
|
+
- public/javascripts/jquery.alerts/images/title.gif
|
984
|
+
- public/javascripts/jquery.alerts/jquery.alerts.css
|
985
|
+
- public/javascripts/jquery.alerts/jquery.alerts.js
|
986
|
+
- public/javascripts/jquery.alerts/jquery.alerts.spree.css
|
987
|
+
- public/javascripts/jquery.autocomplete.min.js
|
988
|
+
- public/javascripts/jquery.js
|
989
|
+
- public/javascripts/jquery.suggest.js
|
990
|
+
- public/javascripts/jquery.template.js
|
991
|
+
- public/javascripts/jquery.tokeninput.js
|
992
|
+
- public/javascripts/jquery.validate.min.js
|
993
|
+
- public/javascripts/jrails.autocomplete.js
|
994
|
+
- public/javascripts/jrails.js
|
995
|
+
- public/javascripts/jsTree/jquery.tree.js
|
996
|
+
- public/javascripts/jsTree/plugins/jquery.tree.contextmenu.js
|
997
|
+
- public/javascripts/jsTree/themes/apple/bg.jpg
|
998
|
+
- public/javascripts/jsTree/themes/apple/dot_for_ie.gif
|
999
|
+
- public/javascripts/jsTree/themes/apple/icons.png
|
1000
|
+
- public/javascripts/jsTree/themes/apple/style.css
|
1001
|
+
- public/javascripts/jsTree/themes/apple/throbber.gif
|
1002
|
+
- public/javascripts/lang/af.js
|
1003
|
+
- public/javascripts/lang/ar.js
|
1004
|
+
- public/javascripts/lang/de.js
|
1005
|
+
- public/javascripts/lang/du.js
|
1006
|
+
- public/javascripts/lang/en.js
|
1007
|
+
- public/javascripts/lang/es.js
|
1008
|
+
- public/javascripts/lang/fi.js
|
1009
|
+
- public/javascripts/lang/fr.js
|
1010
|
+
- public/javascripts/lang/gr.js
|
1011
|
+
- public/javascripts/lang/he.js
|
1012
|
+
- public/javascripts/lang/it.js
|
1013
|
+
- public/javascripts/lang/nl.js
|
1014
|
+
- public/javascripts/lang/no.js
|
1015
|
+
- public/javascripts/lang/pt.js
|
1016
|
+
- public/javascripts/lang/ro.js
|
1017
|
+
- public/javascripts/lang/ru.js
|
1018
|
+
- public/javascripts/lang/sp.js
|
1019
|
+
- public/javascripts/lang/sv.js
|
1020
|
+
- public/javascripts/lang/ua.js
|
1021
|
+
- public/javascripts/localization/messages_cn.js
|
1022
|
+
- public/javascripts/localization/messages_cs.js
|
1023
|
+
- public/javascripts/localization/messages_da.js
|
1024
|
+
- public/javascripts/localization/messages_de.js
|
1025
|
+
- public/javascripts/localization/messages_es.js
|
1026
|
+
- public/javascripts/localization/messages_fr.js
|
1027
|
+
- public/javascripts/localization/messages_hu.js
|
1028
|
+
- public/javascripts/localization/messages_it.js
|
1029
|
+
- public/javascripts/localization/messages_kk.js
|
1030
|
+
- public/javascripts/localization/messages_nl.js
|
1031
|
+
- public/javascripts/localization/messages_no.js
|
1032
|
+
- public/javascripts/localization/messages_pl.js
|
1033
|
+
- public/javascripts/localization/messages_ptbr.js
|
1034
|
+
- public/javascripts/localization/messages_ro.js
|
1035
|
+
- public/javascripts/localization/messages_ru.js
|
1036
|
+
- public/javascripts/localization/messages_se.js
|
1037
|
+
- public/javascripts/localization/messages_sk.js
|
1038
|
+
- public/javascripts/localization/messages_tr.js
|
1039
|
+
- public/javascripts/localization/messages_tw.js
|
1040
|
+
- public/javascripts/localization/messages_ua.js
|
1041
|
+
- public/javascripts/nested-attribute.js
|
1042
|
+
- public/javascripts/open_id.js
|
1043
|
+
- public/javascripts/product.js
|
1044
|
+
- public/javascripts/rails.js
|
1045
|
+
- public/javascripts/taxonomy.js
|
1046
|
+
- public/javascripts/zone.js
|
1047
|
+
- public/stylesheets/admin/admin-forms.css
|
1048
|
+
- public/stylesheets/admin/admin-reset.css
|
1049
|
+
- public/stylesheets/admin/admin-tables.css
|
1050
|
+
- public/stylesheets/admin/admin-typography.css
|
1051
|
+
- public/stylesheets/admin/admin.css
|
1052
|
+
- public/stylesheets/admin/autocomplete.css
|
1053
|
+
- public/stylesheets/admin/dashboard.css
|
1054
|
+
- public/stylesheets/admin/edit_checkouts.css
|
1055
|
+
- public/stylesheets/admin/grids.css
|
1056
|
+
- public/stylesheets/admin/reset-fonts-grids-2-6-0.css
|
1057
|
+
- public/stylesheets/admin/token-input.css
|
1058
|
+
- public/stylesheets/admin/yui-includes.css
|
1059
|
+
- public/stylesheets/datepicker.css
|
1060
|
+
- public/stylesheets/jquery.autocomplete.css
|
1061
|
+
- public/stylesheets/scaffold.css
|
1062
|
+
- public/stylesheets/screen.css
|
992
1063
|
has_rdoc: true
|
993
1064
|
homepage: http://spreecommerce.com
|
994
1065
|
licenses: []
|
@@ -999,27 +1070,29 @@ rdoc_options: []
|
|
999
1070
|
require_paths:
|
1000
1071
|
- lib
|
1001
1072
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1073
|
+
none: false
|
1002
1074
|
requirements:
|
1003
1075
|
- - ">="
|
1004
1076
|
- !ruby/object:Gem::Version
|
1077
|
+
hash: 57
|
1005
1078
|
segments:
|
1006
1079
|
- 1
|
1007
1080
|
- 8
|
1008
1081
|
- 7
|
1009
1082
|
version: 1.8.7
|
1010
1083
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1084
|
+
none: false
|
1011
1085
|
requirements:
|
1012
|
-
- - "
|
1086
|
+
- - ">="
|
1013
1087
|
- !ruby/object:Gem::Version
|
1088
|
+
hash: 3
|
1014
1089
|
segments:
|
1015
|
-
-
|
1016
|
-
|
1017
|
-
- 1
|
1018
|
-
version: 1.3.1
|
1090
|
+
- 0
|
1091
|
+
version: "0"
|
1019
1092
|
requirements:
|
1020
1093
|
- none
|
1021
1094
|
rubyforge_project: spree_core
|
1022
|
-
rubygems_version: 1.3.
|
1095
|
+
rubygems_version: 1.3.7
|
1023
1096
|
signing_key:
|
1024
1097
|
specification_version: 3
|
1025
1098
|
summary: Core e-commerce functionality for the Spree project.
|