├── .gitignore ├── LICENSE.txt ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ └── admin │ │ │ ├── bg │ │ │ ├── admin_menu_back.png │ │ │ └── admin_sub_menu_back.png │ │ │ ├── icons │ │ │ └── help.png │ │ │ └── logo.png │ ├── javascripts │ │ └── admin │ │ │ ├── inline_help.js │ │ │ └── synergy.js │ └── stylesheets │ │ └── admin │ │ ├── courier_instruction.css │ │ ├── inline_help.css │ │ ├── reset.css │ │ └── synergy.css ├── controllers │ ├── addresses_controller_decorator.rb │ ├── admin │ │ ├── base_controller_decorator.rb │ │ ├── orders_controller_decorator.rb │ │ ├── products_controller_decorator.rb │ │ └── synergy_settings_controller.rb │ ├── checkout_controller_decorator.rb │ ├── orders_controller_decorator.rb │ ├── spree │ │ └── base_controller_decorator.rb │ ├── user_sessions_controller_decorator.rb │ └── users_controller_decorator.rb ├── helpers │ └── checkout_helper.rb ├── models │ ├── calculator │ │ ├── cash_on_delivery.rb │ │ └── juridical.rb │ ├── order_decorator.rb │ ├── payment_method │ │ ├── juridical_invoice.rb │ │ └── sber_bank_invoice.rb │ ├── payment_method_decorator.rb │ └── user_decorator.rb ├── overrides │ └── views_decorator.rb └── views │ ├── admin │ ├── orders │ │ ├── _juridical_tabs.html.erb │ │ ├── courier_instruction.html.erb │ │ └── juridical_info.html.erb │ ├── overview │ │ └── index.html.erb │ ├── payments │ │ ├── source_forms │ │ │ └── _sberbankinvoice.html.erb │ │ └── source_views │ │ │ └── _sberbankinvoice.html.erb │ ├── products │ │ └── _import_from_yandex_market.html.erb │ ├── shared │ │ └── _tabs.html.erb │ ├── shipments │ │ └── _form.html.erb │ └── synergy_settings │ │ ├── _contacts.html.erb │ │ ├── _contacts_fields.html.erb │ │ ├── _juridical.html.erb │ │ ├── _juridical_fields.html.erb │ │ ├── edit.html.erb │ │ └── show.html.erb │ ├── checkout │ └── payment │ │ ├── _juridicalinvoice.html.erb │ │ └── _sberbankinvoice.html.erb │ ├── errors │ └── 404.html.erb │ ├── order_mailer │ ├── cancel_email.text.erb │ └── confirm_email.text.erb │ ├── orders │ ├── juridical_invoice.html.erb │ ├── sberbank_invoice.html.erb │ └── show.html.erb │ ├── shared │ └── _filters.html.erb │ ├── shipment_mailer │ └── shipped_email.text.erb │ ├── user_mailer │ └── reset_password_instructions.text.erb │ └── users │ ├── _status.html.erb │ ├── _status_form.html.erb │ └── edit_status.html.erb ├── config ├── initializers │ └── secoint.rb ├── locales │ ├── affiliate_ru.yml │ ├── devise.ru.yml │ ├── email_to_friend_ru.yml │ ├── reviews_ru.yml │ ├── robokassa_ru.yml │ ├── ru.yml │ ├── sberbank_ru.yml │ └── wishlist_ru.yml └── routes.rb ├── db ├── default │ ├── countries.yml │ ├── roles.yml │ ├── states.yml │ ├── zone_members.yml │ └── zones.yml ├── migrate │ ├── 20090311090247_make_unicode_friendly.rb │ ├── 20090827180351_add_secondname_to_addresses.rb │ ├── 20110803100246_add_fields_to_users.rb │ └── 20110818091541_change_user_juridical_fields.rb └── sample │ ├── calculators.yml │ ├── preferences.yml │ ├── shipping_categories.yml │ └── shipping_methods.yml ├── lib ├── ext │ └── number_helper.rb ├── generators │ └── synergy │ │ └── install_generator.rb ├── spree │ └── synergy │ │ └── config.rb ├── synergy.rb ├── synergy_configuration.rb └── tasks │ ├── install.rake │ └── synergy.rake ├── public ├── 500.html └── stylesheets │ └── store │ └── reset.css ├── spec └── spec_helper.rb ├── synergy.gemspec └── vendor └── assets └── javascripts └── admin └── jquery.simpletip-1.3.1.pack.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/admin/bg/admin_menu_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/assets/images/admin/bg/admin_menu_back.png -------------------------------------------------------------------------------- /app/assets/images/admin/bg/admin_sub_menu_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/assets/images/admin/bg/admin_sub_menu_back.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/assets/images/admin/icons/help.png -------------------------------------------------------------------------------- /app/assets/images/admin/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/assets/images/admin/logo.png -------------------------------------------------------------------------------- /app/assets/javascripts/admin/inline_help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/assets/javascripts/admin/inline_help.js -------------------------------------------------------------------------------- /app/assets/javascripts/admin/synergy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/assets/javascripts/admin/synergy.js -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/courier_instruction.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/assets/stylesheets/admin/courier_instruction.css -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/inline_help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/assets/stylesheets/admin/inline_help.css -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/assets/stylesheets/admin/reset.css -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/synergy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/assets/stylesheets/admin/synergy.css -------------------------------------------------------------------------------- /app/controllers/addresses_controller_decorator.rb: -------------------------------------------------------------------------------- 1 | AddressesController.class_eval do 2 | helper :checkout 3 | end 4 | -------------------------------------------------------------------------------- /app/controllers/admin/base_controller_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/controllers/admin/base_controller_decorator.rb -------------------------------------------------------------------------------- /app/controllers/admin/orders_controller_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/controllers/admin/orders_controller_decorator.rb -------------------------------------------------------------------------------- /app/controllers/admin/products_controller_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/controllers/admin/products_controller_decorator.rb -------------------------------------------------------------------------------- /app/controllers/admin/synergy_settings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/controllers/admin/synergy_settings_controller.rb -------------------------------------------------------------------------------- /app/controllers/checkout_controller_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/controllers/checkout_controller_decorator.rb -------------------------------------------------------------------------------- /app/controllers/orders_controller_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/controllers/orders_controller_decorator.rb -------------------------------------------------------------------------------- /app/controllers/spree/base_controller_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/controllers/spree/base_controller_decorator.rb -------------------------------------------------------------------------------- /app/controllers/user_sessions_controller_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/controllers/user_sessions_controller_decorator.rb -------------------------------------------------------------------------------- /app/controllers/users_controller_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/controllers/users_controller_decorator.rb -------------------------------------------------------------------------------- /app/helpers/checkout_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/helpers/checkout_helper.rb -------------------------------------------------------------------------------- /app/models/calculator/cash_on_delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/models/calculator/cash_on_delivery.rb -------------------------------------------------------------------------------- /app/models/calculator/juridical.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/models/calculator/juridical.rb -------------------------------------------------------------------------------- /app/models/order_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/models/order_decorator.rb -------------------------------------------------------------------------------- /app/models/payment_method/juridical_invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/models/payment_method/juridical_invoice.rb -------------------------------------------------------------------------------- /app/models/payment_method/sber_bank_invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/models/payment_method/sber_bank_invoice.rb -------------------------------------------------------------------------------- /app/models/payment_method_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/models/payment_method_decorator.rb -------------------------------------------------------------------------------- /app/models/user_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/models/user_decorator.rb -------------------------------------------------------------------------------- /app/overrides/views_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/overrides/views_decorator.rb -------------------------------------------------------------------------------- /app/views/admin/orders/_juridical_tabs.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/admin/orders/_juridical_tabs.html.erb -------------------------------------------------------------------------------- /app/views/admin/orders/courier_instruction.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/admin/orders/courier_instruction.html.erb -------------------------------------------------------------------------------- /app/views/admin/orders/juridical_info.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/admin/orders/juridical_info.html.erb -------------------------------------------------------------------------------- /app/views/admin/overview/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/admin/overview/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/payments/source_forms/_sberbankinvoice.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/admin/payments/source_views/_sberbankinvoice.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/admin/products/_import_from_yandex_market.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/admin/products/_import_from_yandex_market.html.erb -------------------------------------------------------------------------------- /app/views/admin/shared/_tabs.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/admin/shared/_tabs.html.erb -------------------------------------------------------------------------------- /app/views/admin/shipments/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/admin/shipments/_form.html.erb -------------------------------------------------------------------------------- /app/views/admin/synergy_settings/_contacts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/admin/synergy_settings/_contacts.html.erb -------------------------------------------------------------------------------- /app/views/admin/synergy_settings/_contacts_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/admin/synergy_settings/_contacts_fields.html.erb -------------------------------------------------------------------------------- /app/views/admin/synergy_settings/_juridical.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/admin/synergy_settings/_juridical.html.erb -------------------------------------------------------------------------------- /app/views/admin/synergy_settings/_juridical_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/admin/synergy_settings/_juridical_fields.html.erb -------------------------------------------------------------------------------- /app/views/admin/synergy_settings/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/admin/synergy_settings/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/synergy_settings/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/admin/synergy_settings/show.html.erb -------------------------------------------------------------------------------- /app/views/checkout/payment/_juridicalinvoice.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/checkout/payment/_sberbankinvoice.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/errors/404.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/errors/404.html.erb -------------------------------------------------------------------------------- /app/views/order_mailer/cancel_email.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/order_mailer/cancel_email.text.erb -------------------------------------------------------------------------------- /app/views/order_mailer/confirm_email.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/order_mailer/confirm_email.text.erb -------------------------------------------------------------------------------- /app/views/orders/juridical_invoice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/orders/juridical_invoice.html.erb -------------------------------------------------------------------------------- /app/views/orders/sberbank_invoice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/orders/sberbank_invoice.html.erb -------------------------------------------------------------------------------- /app/views/orders/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/orders/show.html.erb -------------------------------------------------------------------------------- /app/views/shared/_filters.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/shipment_mailer/shipped_email.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/shipment_mailer/shipped_email.text.erb -------------------------------------------------------------------------------- /app/views/user_mailer/reset_password_instructions.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/user_mailer/reset_password_instructions.text.erb -------------------------------------------------------------------------------- /app/views/users/_status.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/users/_status.html.erb -------------------------------------------------------------------------------- /app/views/users/_status_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/users/_status_form.html.erb -------------------------------------------------------------------------------- /app/views/users/edit_status.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/app/views/users/edit_status.html.erb -------------------------------------------------------------------------------- /config/initializers/secoint.rb: -------------------------------------------------------------------------------- 1 | ADMIN_REDACTOR_EXCLUDES = [] 2 | -------------------------------------------------------------------------------- /config/locales/affiliate_ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/config/locales/affiliate_ru.yml -------------------------------------------------------------------------------- /config/locales/devise.ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/config/locales/devise.ru.yml -------------------------------------------------------------------------------- /config/locales/email_to_friend_ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/config/locales/email_to_friend_ru.yml -------------------------------------------------------------------------------- /config/locales/reviews_ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/config/locales/reviews_ru.yml -------------------------------------------------------------------------------- /config/locales/robokassa_ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/config/locales/robokassa_ru.yml -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /config/locales/sberbank_ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/config/locales/sberbank_ru.yml -------------------------------------------------------------------------------- /config/locales/wishlist_ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/config/locales/wishlist_ru.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/default/countries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/db/default/countries.yml -------------------------------------------------------------------------------- /db/default/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/db/default/roles.yml -------------------------------------------------------------------------------- /db/default/states.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/db/default/states.yml -------------------------------------------------------------------------------- /db/default/zone_members.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/db/default/zone_members.yml -------------------------------------------------------------------------------- /db/default/zones.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/db/default/zones.yml -------------------------------------------------------------------------------- /db/migrate/20090311090247_make_unicode_friendly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/db/migrate/20090311090247_make_unicode_friendly.rb -------------------------------------------------------------------------------- /db/migrate/20090827180351_add_secondname_to_addresses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/db/migrate/20090827180351_add_secondname_to_addresses.rb -------------------------------------------------------------------------------- /db/migrate/20110803100246_add_fields_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/db/migrate/20110803100246_add_fields_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20110818091541_change_user_juridical_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/db/migrate/20110818091541_change_user_juridical_fields.rb -------------------------------------------------------------------------------- /db/sample/calculators.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/db/sample/calculators.yml -------------------------------------------------------------------------------- /db/sample/preferences.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/db/sample/preferences.yml -------------------------------------------------------------------------------- /db/sample/shipping_categories.yml: -------------------------------------------------------------------------------- 1 | default_shipping: 2 | id: 1 3 | name: "По умолчанию" 4 | -------------------------------------------------------------------------------- /db/sample/shipping_methods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/db/sample/shipping_methods.yml -------------------------------------------------------------------------------- /lib/ext/number_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/lib/ext/number_helper.rb -------------------------------------------------------------------------------- /lib/generators/synergy/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/lib/generators/synergy/install_generator.rb -------------------------------------------------------------------------------- /lib/spree/synergy/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/lib/spree/synergy/config.rb -------------------------------------------------------------------------------- /lib/synergy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/lib/synergy.rb -------------------------------------------------------------------------------- /lib/synergy_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/lib/synergy_configuration.rb -------------------------------------------------------------------------------- /lib/tasks/install.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/lib/tasks/install.rake -------------------------------------------------------------------------------- /lib/tasks/synergy.rake: -------------------------------------------------------------------------------- 1 | # add custom rake tasks here -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/public/500.html -------------------------------------------------------------------------------- /public/stylesheets/store/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/public/stylesheets/store/reset.css -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /synergy.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/synergy.gemspec -------------------------------------------------------------------------------- /vendor/assets/javascripts/admin/jquery.simpletip-1.3.1.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohmycto/synergy/HEAD/vendor/assets/javascripts/admin/jquery.simpletip-1.3.1.pack.js --------------------------------------------------------------------------------