nimbleshop_core 0.0.1.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (359) hide show
  1. data/README.md +13 -0
  2. data/Rakefile +15 -0
  3. data/app/assets/images/engines/nimbleshop_authorizedotnet/american_express.png +0 -0
  4. data/app/assets/images/engines/nimbleshop_authorizedotnet/authorize_net_big.png +0 -0
  5. data/app/assets/images/engines/nimbleshop_authorizedotnet/authorizedotnet_big.png +0 -0
  6. data/app/assets/images/engines/nimbleshop_authorizedotnet/discover.png +0 -0
  7. data/app/assets/images/engines/nimbleshop_authorizedotnet/mastercard.png +0 -0
  8. data/app/assets/images/engines/nimbleshop_authorizedotnet/visa.png +0 -0
  9. data/app/assets/images/engines/nimbleshop_cod/cod_small.png +0 -0
  10. data/app/assets/images/engines/nimbleshop_paypalwp/paypal_big.png +0 -0
  11. data/app/assets/images/engines/nimbleshop_paypalwp/paypal_small.png +0 -0
  12. data/app/assets/images/engines/nimbleshop_splitable/splitable.png +0 -0
  13. data/app/assets/images/engines/nimbleshop_splitable/splitable_big.png +0 -0
  14. data/app/assets/images/engines/nimbleshop_splitable/splitable_small.png +0 -0
  15. data/app/assets/javascripts/admin/products/edit.js.coffee +19 -0
  16. data/app/assets/javascripts/admin/shipping_methods/edit.js.coffee +6 -0
  17. data/app/assets/javascripts/admin.js +25 -0
  18. data/app/assets/javascripts/fadeout_success.js.coffee +2 -0
  19. data/app/assets/javascripts/payment_method.js.coffee +19 -0
  20. data/app/assets/javascripts/product-group-condition.js.coffee +33 -0
  21. data/app/assets/javascripts/remove_deletion_of_product_pictures.js.coffee +5 -0
  22. data/app/assets/javascripts/shipit.js.coffee +10 -0
  23. data/app/assets/javascripts/twitter_bootstrap.js.coffee +4 -0
  24. data/app/assets/stylesheets/admin.css +9 -0
  25. data/app/assets/stylesheets/admin_bootstrap_and_overrides.css.less +38 -0
  26. data/app/assets/stylesheets/admin_custom.css +104 -0
  27. data/app/assets/twitter/bootstrap/glyphicons-halflings-white.png +0 -0
  28. data/app/assets/twitter/bootstrap/glyphicons-halflings.png +0 -0
  29. data/app/controllers/admin/custom_fields_controller.rb +56 -0
  30. data/app/controllers/admin/link_groups_controller.rb +76 -0
  31. data/app/controllers/admin/main_controller.rb +9 -0
  32. data/app/controllers/admin/navigations_controller.rb +49 -0
  33. data/app/controllers/admin/orders_controller.rb +47 -0
  34. data/app/controllers/admin/payment_methods_controller.rb +26 -0
  35. data/app/controllers/admin/product_groups_controller.rb +70 -0
  36. data/app/controllers/admin/products_controller.rb +71 -0
  37. data/app/controllers/admin/shipments_controller.rb +19 -0
  38. data/app/controllers/admin/shipping_methods_controller.rb +93 -0
  39. data/app/controllers/admin/shipping_zones_controller.rb +62 -0
  40. data/app/controllers/admin/shops_controller.rb +33 -0
  41. data/app/controllers/admin_controller.rb +38 -0
  42. data/app/helpers/admin_helper.rb +83 -0
  43. data/app/helpers/nimbleshop_helper.rb +43 -0
  44. data/app/helpers/payment_method_helper.rb +52 -0
  45. data/app/mailers/admin_mailer.rb +22 -0
  46. data/app/mailers/mailer.rb +31 -0
  47. data/app/models/address.rb +69 -0
  48. data/app/models/country_shipping_zone.rb +36 -0
  49. data/app/models/creditcard.rb +95 -0
  50. data/app/models/custom_field.rb +8 -0
  51. data/app/models/custom_field_answer/field.rb +101 -0
  52. data/app/models/custom_field_answer.rb +17 -0
  53. data/app/models/line_item.rb +48 -0
  54. data/app/models/link.rb +3 -0
  55. data/app/models/link_group.rb +8 -0
  56. data/app/models/navigation.rb +7 -0
  57. data/app/models/order.rb +158 -0
  58. data/app/models/payment_method.rb +20 -0
  59. data/app/models/payment_transaction.rb +11 -0
  60. data/app/models/picture.rb +30 -0
  61. data/app/models/product.rb +76 -0
  62. data/app/models/product_group.rb +65 -0
  63. data/app/models/product_group_condition.rb +8 -0
  64. data/app/models/regional_shipping_zone.rb +25 -0
  65. data/app/models/shipment.rb +19 -0
  66. data/app/models/shipment_carrier.rb +3 -0
  67. data/app/models/shipping_cost_calculator.rb +9 -0
  68. data/app/models/shipping_method.rb +103 -0
  69. data/app/models/shipping_zone.rb +9 -0
  70. data/app/models/shop.rb +26 -0
  71. data/app/models/tax_calculator.rb +18 -0
  72. data/app/observers/order_observer.rb +53 -0
  73. data/app/uploaders/picture_uploader.rb +65 -0
  74. data/app/views/admin/custom_fields/_form.html.erb +45 -0
  75. data/app/views/admin/custom_fields/edit.html.erb +7 -0
  76. data/app/views/admin/custom_fields/index.html.erb +31 -0
  77. data/app/views/admin/custom_fields/new.html.erb +7 -0
  78. data/app/views/admin/link_groups/_form.html.erb +31 -0
  79. data/app/views/admin/link_groups/_link_group.html.erb +50 -0
  80. data/app/views/admin/link_groups/_link_group_title.html.erb +5 -0
  81. data/app/views/admin/link_groups/edit.html.erb +8 -0
  82. data/app/views/admin/link_groups/index.html.erb +29 -0
  83. data/app/views/admin/link_groups/new.html.erb +9 -0
  84. data/app/views/admin/mailer/new_order_notification.text.erb +31 -0
  85. data/app/views/admin/main/index.html.erb +5 -0
  86. data/app/views/admin/navigations/new.html.erb +29 -0
  87. data/app/views/admin/orders/_line_item.html.erb +11 -0
  88. data/app/views/admin/orders/_line_items.html.erb +39 -0
  89. data/app/views/admin/orders/_payment_info.html.erb +20 -0
  90. data/app/views/admin/orders/_shipping_info.html.erb +40 -0
  91. data/app/views/admin/orders/index.html.erb +33 -0
  92. data/app/views/admin/orders/show.html.erb +40 -0
  93. data/app/views/admin/payment_methods/index.html.erb +6 -0
  94. data/app/views/admin/product_groups/_condition.html.mustache +20 -0
  95. data/app/views/admin/product_groups/_form.html.erb +72 -0
  96. data/app/views/admin/product_groups/edit.html.erb +7 -0
  97. data/app/views/admin/product_groups/index.html.erb +30 -0
  98. data/app/views/admin/product_groups/new.html.erb +7 -0
  99. data/app/views/admin/product_groups/show.html.erb +9 -0
  100. data/app/views/admin/products/_custom_field_answer.html.erb +9 -0
  101. data/app/views/admin/products/_form.html.erb +69 -0
  102. data/app/views/admin/products/_handle_pictures.html.erb +32 -0
  103. data/app/views/admin/products/_pictures.html.erb +33 -0
  104. data/app/views/admin/products/edit.html.erb +26 -0
  105. data/app/views/admin/products/index.html.erb +34 -0
  106. data/app/views/admin/products/new.html.erb +9 -0
  107. data/app/views/admin/shipping_methods/_form.html.erb +58 -0
  108. data/app/views/admin/shipping_methods/_shipping_method.html.erb +31 -0
  109. data/app/views/admin/shipping_methods/edit.html.erb +18 -0
  110. data/app/views/admin/shipping_methods/new.html.erb +7 -0
  111. data/app/views/admin/shipping_zones/_form.html.erb +31 -0
  112. data/app/views/admin/shipping_zones/_shipping_method.html.erb +13 -0
  113. data/app/views/admin/shipping_zones/_shipping_zone.html.erb +47 -0
  114. data/app/views/admin/shipping_zones/edit.html.erb +8 -0
  115. data/app/views/admin/shipping_zones/index.html.erb +16 -0
  116. data/app/views/admin/shipping_zones/new.html.erb +8 -0
  117. data/app/views/admin/shops/edit.html.erb +119 -0
  118. data/app/views/layouts/_admin_footer.html.erb +23 -0
  119. data/app/views/layouts/_admin_sidebar.html.erb +0 -0
  120. data/app/views/layouts/_container.html.erb +33 -0
  121. data/app/views/layouts/_top_nav_bar.html.erb +30 -0
  122. data/app/views/layouts/admin.html.erb +35 -0
  123. data/app/views/layouts/payment_method.html.erb +12 -0
  124. data/app/views/mailer/order_notification_to_buyer.text.erb +31 -0
  125. data/app/views/mailer/shipment_notification_to_buyer.text.erb +34 -0
  126. data/config/initializers/001_settings_application.rb +10 -0
  127. data/config/initializers/002_load_core_extensions.rb +8 -0
  128. data/config/initializers/field_with_error.rb +2 -0
  129. data/config/initializers/strip_and_nullify.rb +13 -0
  130. data/config/initializers/time_formats.rb +1 -0
  131. data/config/locales/en.yml +61 -0
  132. data/config/routes.rb +56 -0
  133. data/db/development.sqlite3 +0 -0
  134. data/db/migrate/20111022144421_create_product_groups.rb +12 -0
  135. data/db/migrate/20111022144426_create_products.rb +16 -0
  136. data/db/migrate/20111022144653_create_orders.rb +21 -0
  137. data/db/migrate/20111022144725_create_line_items.rb +15 -0
  138. data/db/migrate/20111022234951_create_shops.rb +20 -0
  139. data/db/migrate/20111026193227_create_link_groups.rb +12 -0
  140. data/db/migrate/20111026193435_create_navigations.rb +10 -0
  141. data/db/migrate/20111031135810_create_links.rb +10 -0
  142. data/db/migrate/20111106193938_create_custom_fields.rb +10 -0
  143. data/db/migrate/20111106195112_create_custom_field_answers.rb +14 -0
  144. data/db/migrate/20111106201548_create_product_group_conditions.rb +12 -0
  145. data/db/migrate/20111107035350_create_creditcard_transactions.rb +15 -0
  146. data/db/migrate/20111109190754_create_addresses.rb +24 -0
  147. data/db/migrate/20111125173344_create_pictures.rb +16 -0
  148. data/db/migrate/20111201024408_create_shipping_methods.rb +16 -0
  149. data/db/migrate/20111202143154_create_shipping_zones.rb +17 -0
  150. data/db/migrate/20111203034020_create_payment_methods.rb +14 -0
  151. data/db/migrate/20111221190000_create_preferences.rb +14 -0
  152. data/db/migrate/20120105234047_create_shipments.rb +11 -0
  153. data/db/migrate/20120105234553_create_shipment_carriers.rb +11 -0
  154. data/db/migrate/20120606165355_create_delayed_jobs.rb +22 -0
  155. data/db/production.sqlite3 +0 -0
  156. data/db/schema.rb +265 -0
  157. data/db/seeds.rb +1 -0
  158. data/db/test.sqlite3 +0 -0
  159. data/lib/assets/javascripts/loading_state_for_buttons.js.coffee +3 -0
  160. data/lib/assets/javascripts/show_help_on_hover.js.coffee +2 -0
  161. data/lib/assets/javascripts/utils/autoresize.js.coffee +3 -0
  162. data/lib/assets/javascripts/utils/focus.js.coffee +3 -0
  163. data/lib/assets/javascripts/utils/formatNumber.js.coffee +25 -0
  164. data/lib/assets/javascripts/utils/formatPrice.js.coffee +24 -0
  165. data/lib/generators/nimbleshop/app/app_generator.rb +84 -0
  166. data/lib/generators/nimbleshop/app/templates/config/application.yml +61 -0
  167. data/lib/generators/nimbleshop/app/templates/config/initializers/airbrake.rb +3 -0
  168. data/lib/generators/nimbleshop/app/templates/config/initializers/cache_images.rb +4 -0
  169. data/lib/generators/nimbleshop/app/templates/config/initializers/carrierwave.rb +36 -0
  170. data/lib/generators/nimbleshop/app/templates/config/initializers/delayed_job.rb +15 -0
  171. data/lib/generators/nimbleshop/app/templates/config/initializers/setup_email.rb +24 -0
  172. data/lib/nimbleshop/core_ext/activerecord_base.rb +18 -0
  173. data/lib/nimbleshop/core_ext/filelessio.rb +4 -0
  174. data/lib/nimbleshop/core_ext/force_ssl.rb +26 -0
  175. data/lib/nimbleshop/core_ext/mustache_templater_handler.rb +10 -0
  176. data/lib/nimbleshop/engine.rb +23 -0
  177. data/lib/nimbleshop/permalink/builder.rb +46 -0
  178. data/lib/nimbleshop/processor/base.rb +51 -0
  179. data/lib/nimbleshop/processor.rb +3 -0
  180. data/lib/nimbleshop/product_group_search/base_field.rb +19 -0
  181. data/lib/nimbleshop/product_group_search/core_field_strategy.rb +31 -0
  182. data/lib/nimbleshop/product_group_search/custom_field_strategy.rb +39 -0
  183. data/lib/nimbleshop/product_group_search/date_field.rb +16 -0
  184. data/lib/nimbleshop/product_group_search/extension.rb +46 -0
  185. data/lib/nimbleshop/product_group_search/number_field.rb +17 -0
  186. data/lib/nimbleshop/product_group_search/text_field.rb +33 -0
  187. data/lib/nimbleshop/product_group_search.rb +74 -0
  188. data/lib/nimbleshop/sampledata/data.rb +246 -0
  189. data/lib/nimbleshop/sampledata/pictures/product1/pic1.jpg +0 -0
  190. data/lib/nimbleshop/sampledata/pictures/product2/pic1.jpg +0 -0
  191. data/lib/nimbleshop/sampledata/pictures/product2/pic2.jpg +0 -0
  192. data/lib/nimbleshop/sampledata/pictures/product3/pic1.jpg +0 -0
  193. data/lib/nimbleshop/sampledata/pictures/product3/pic2.jpg +0 -0
  194. data/lib/nimbleshop/sampledata/pictures/product3/pic3.jpg +0 -0
  195. data/lib/nimbleshop/sampledata/pictures/product3/pic4.jpg +0 -0
  196. data/lib/nimbleshop/sampledata/pictures/product3/pic5.jpg +0 -0
  197. data/lib/nimbleshop/sampledata/pictures/product4/pic1.jpg +0 -0
  198. data/lib/nimbleshop/sampledata/pictures/product4/pic2.jpg +0 -0
  199. data/lib/nimbleshop/sampledata/pictures/product5/pic1.jpg +0 -0
  200. data/lib/nimbleshop/sampledata/pictures/product5/pic2.jpg +0 -0
  201. data/lib/nimbleshop/sampledata/pictures/product6/pic1.jpg +0 -0
  202. data/lib/nimbleshop/sampledata/pictures/product6/pic10.jpg +0 -0
  203. data/lib/nimbleshop/sampledata/pictures/product6/pic11.jpg +0 -0
  204. data/lib/nimbleshop/sampledata/pictures/product6/pic12.jpg +0 -0
  205. data/lib/nimbleshop/sampledata/pictures/product6/pic13.jpg +0 -0
  206. data/lib/nimbleshop/sampledata/pictures/product6/pic14.jpg +0 -0
  207. data/lib/nimbleshop/sampledata/pictures/product6/pic15.jpg +0 -0
  208. data/lib/nimbleshop/sampledata/pictures/product6/pic16.jpg +0 -0
  209. data/lib/nimbleshop/sampledata/pictures/product6/pic17.jpg +0 -0
  210. data/lib/nimbleshop/sampledata/pictures/product6/pic2.jpg +0 -0
  211. data/lib/nimbleshop/sampledata/pictures/product6/pic3.jpg +0 -0
  212. data/lib/nimbleshop/sampledata/pictures/product6/pic4.jpg +0 -0
  213. data/lib/nimbleshop/sampledata/pictures/product6/pic5.jpg +0 -0
  214. data/lib/nimbleshop/sampledata/pictures/product6/pic6.jpg +0 -0
  215. data/lib/nimbleshop/sampledata/pictures/product6/pic7.jpg +0 -0
  216. data/lib/nimbleshop/sampledata/pictures/product6/pic8.jpg +0 -0
  217. data/lib/nimbleshop/sampledata/pictures/product6/pic9.jpg +0 -0
  218. data/lib/nimbleshop/sampledata/pictures/product7/pic1.jpg +0 -0
  219. data/lib/nimbleshop/sampledata/pictures/product7/pic2.jpg +0 -0
  220. data/lib/nimbleshop/sampledata/pictures/product7/pic3.jpg +0 -0
  221. data/lib/nimbleshop/sampledata/pictures/product8/pic1.jpg +0 -0
  222. data/lib/nimbleshop/sampledata/pictures/product8/pic2.jpg +0 -0
  223. data/lib/nimbleshop/sampledata/pictures/product8/pic3.jpg +0 -0
  224. data/lib/nimbleshop/sampledata/pictures/product8/pic4.jpg +0 -0
  225. data/lib/nimbleshop/sampledata/pictures/product8/pic5.jpg +0 -0
  226. data/lib/nimbleshop/sampledata/pictures/product8/pic6.jpg +0 -0
  227. data/lib/nimbleshop/sampledata/pictures/product8/pic7.jpg +0 -0
  228. data/lib/nimbleshop/sampledata/pictures/product8/pic8.jpg +0 -0
  229. data/lib/nimbleshop/sampledata/pictures/product9/pic1.jpg +0 -0
  230. data/lib/nimbleshop/sampledata/pictures/product9/pic2.jpg +0 -0
  231. data/lib/nimbleshop/util.rb +60 -0
  232. data/lib/nimbleshop/version.rb +18 -0
  233. data/lib/nimbleshop_core.rb +23 -0
  234. data/lib/tasks/localhost2public.rake +8 -0
  235. data/lib/tasks/setup.rake +26 -0
  236. data/test/factories/address_factory.rb +31 -0
  237. data/test/factories/creditcard_factory.rb +30 -0
  238. data/test/factories/custom_field_answer_factory.rb +6 -0
  239. data/test/factories/custom_field_factory.rb +21 -0
  240. data/test/factories/line_item_factory.rb +7 -0
  241. data/test/factories/link_factory.rb +6 -0
  242. data/test/factories/link_group_factory.rb +5 -0
  243. data/test/factories/navigation_factory.rb +6 -0
  244. data/test/factories/order_factory.rb +49 -0
  245. data/test/factories/payment_method_factory.rb +6 -0
  246. data/test/factories/payment_transaction_factory.rb +42 -0
  247. data/test/factories/picture_factory.rb +11 -0
  248. data/test/factories/product_group_condition_factory.rb +40 -0
  249. data/test/factories/product_group_factory.rb +5 -0
  250. data/test/factories/products_factory.rb +11 -0
  251. data/test/factories/shipment_carrier_factory.rb +6 -0
  252. data/test/factories/shipment_factory.rb +6 -0
  253. data/test/factories/shipping_method_factory.rb +15 -0
  254. data/test/factories/shipping_zone_factory.rb +5 -0
  255. data/test/factories/shop_factory.rb +8 -0
  256. data/test/fixtures/files/avatar.png +0 -0
  257. data/test/fixtures/link_groups.yml +13 -0
  258. data/test/fixtures/payment_methods.yml +39 -0
  259. data/test/fixtures/shops.yml +15 -0
  260. data/test/helpers/admin_helper_test.rb +37 -0
  261. data/test/helpers/nimbleshop_helper_test.rb +17 -0
  262. data/test/integration/admin/link_groups_acceptance_test.rb +39 -0
  263. data/test/integration/admin/orders_acceptance_test.rb +63 -0
  264. data/test/integration/admin/payment_methods_acceptance_test.rb +13 -0
  265. data/test/integration/admin/product_groups_acceptance_test.rb +89 -0
  266. data/test/integration/admin/products_acceptance_test.rb +105 -0
  267. data/test/integration/admin/shipping_methods_acceptance_test.rb +63 -0
  268. data/test/integration/admin/shipping_zones_acceptance_test.rb +16 -0
  269. data/test/integration/admin/shops_acceptance_test.rb +44 -0
  270. data/test/integration/checkout/cart_acceptance_test.rb +113 -0
  271. data/test/integration/checkout/payment_confirmation_acceptance_test.rb +24 -0
  272. data/test/integration/checkout/paypal_acceptance_test.rb +34 -0
  273. data/test/integration/checkout/shipping_address_acceptance_test.rb +91 -0
  274. data/test/integration/checkout/shipping_method_acceptance_test.rb +51 -0
  275. data/test/integration/homepage_acceptance_test.rb +24 -0
  276. data/test/integration/products_acceptance_test.rb +12 -0
  277. data/test/integration/static_pages_acceptance_test.rb +13 -0
  278. data/test/mailers/mailer_test.rb +25 -0
  279. data/test/rails_app/Gemfile +27 -0
  280. data/test/rails_app/Gemfile.lock +218 -0
  281. data/test/rails_app/Rakefile +10 -0
  282. data/test/rails_app/app/controllers/application_controller.rb +6 -0
  283. data/test/rails_app/app/helpers/application_helper.rb +3 -0
  284. data/test/rails_app/app/views/layouts/application.html.erb +10 -0
  285. data/test/rails_app/config/application.rb +25 -0
  286. data/test/rails_app/config/application.yml +61 -0
  287. data/test/rails_app/config/boot.rb +5 -0
  288. data/test/rails_app/config/database.yml +18 -0
  289. data/test/rails_app/config/environment.rb +5 -0
  290. data/test/rails_app/config/environments/development.rb +18 -0
  291. data/test/rails_app/config/environments/production.rb +33 -0
  292. data/test/rails_app/config/environments/test.rb +33 -0
  293. data/test/rails_app/config/initializers/backtrace_silencers.rb +7 -0
  294. data/test/rails_app/config/initializers/inflections.rb +2 -0
  295. data/test/rails_app/config/initializers/secret_token.rb +2 -0
  296. data/test/rails_app/config/routes.rb +10 -0
  297. data/test/rails_app/config.ru +4 -0
  298. data/test/rails_app/db/development.sqlite3 +0 -0
  299. data/test/rails_app/db/migrate/20100401102949_create_tables.rb +74 -0
  300. data/test/rails_app/db/schema.rb +52 -0
  301. data/test/rails_app/log/development.log +94 -0
  302. data/test/rails_app/log/test.log +0 -0
  303. data/test/rails_app/public/404.html +26 -0
  304. data/test/rails_app/public/422.html +26 -0
  305. data/test/rails_app/public/500.html +26 -0
  306. data/test/rails_app/public/favicon.ico +0 -0
  307. data/test/rails_app/script/rails +10 -0
  308. data/test/support/address_test_helper.rb +24 -0
  309. data/test/support/checkout_test_helper.rb +40 -0
  310. data/test/support/dbify_sql_helper.rb +12 -0
  311. data/test/support/images/cookware.jpg +0 -0
  312. data/test/support/must_be_like.rb +24 -0
  313. data/test/support/shipping_method_test_helper.rb +5 -0
  314. data/test/support/wait_for_ajax.rb +4 -0
  315. data/test/test_helper.rb +65 -0
  316. data/test/unit/address_test.rb +33 -0
  317. data/test/unit/country_shipping_zone_test.rb +17 -0
  318. data/test/unit/creditcard_test.rb +33 -0
  319. data/test/unit/custom_field_answer/field_test.rb +93 -0
  320. data/test/unit/order_test.rb +70 -0
  321. data/test/unit/payment_method/authorizedotnet_test.rb +21 -0
  322. data/test/unit/payment_method/paypalwp_test.rb +17 -0
  323. data/test/unit/payment_method/splitable_test.rb +18 -0
  324. data/test/unit/picture_test.rb +24 -0
  325. data/test/unit/processor/authorize_net_test.rb +236 -0
  326. data/test/unit/processor/paypal_test.rb +40 -0
  327. data/test/unit/processor/splitable_test.rb +123 -0
  328. data/test/unit/product_group_condition_test.rb +188 -0
  329. data/test/unit/product_group_test.rb +109 -0
  330. data/test/unit/product_test.rb +60 -0
  331. data/test/unit/shipping_cost_calculator_test.rb +19 -0
  332. data/test/unit/shipping_method_test.rb +197 -0
  333. data/test/unit/shop_test.rb +11 -0
  334. data/test/unit/tax_calculator_test.rb +13 -0
  335. data/test/vcr_cassettes/authorize_net/authorize-failure.yml +38 -0
  336. data/test/vcr_cassettes/authorize_net/authorize-success.yml +38 -0
  337. data/test/vcr_cassettes/authorize_net/capture-failure.yml +38 -0
  338. data/test/vcr_cassettes/authorize_net/capture-success.yml +38 -0
  339. data/test/vcr_cassettes/authorize_net/purchase-failure.yml +38 -0
  340. data/test/vcr_cassettes/authorize_net/purchase-success.yml +38 -0
  341. data/test/vcr_cassettes/authorize_net/refund-failure.yml +38 -0
  342. data/test/vcr_cassettes/authorize_net/refund-success.yml +38 -0
  343. data/test/vcr_cassettes/authorize_net/void-authorize.yml +38 -0
  344. data/test/vcr_cassettes/authorize_net/void-failure.yml +38 -0
  345. data/test/vcr_cassettes/authorize_net/void-success.yml +38 -0
  346. data/test/vcr_cassettes/splitable/split-create-failure.yml +48 -0
  347. data/test/vcr_cassettes/splitable/split-create-success.yml +50 -0
  348. data/test/vcr_cassettes/splitable/split-draft-create-failure.yml +50 -0
  349. data/test/vcr_cassettes/splitable/split-draft-create-success.yml +50 -0
  350. data/vendor/assets/javascripts/accounting.js +406 -0
  351. data/vendor/assets/javascripts/autoresize.js +275 -0
  352. data/vendor/assets/javascripts/jquery-1.7.1.js +9267 -0
  353. data/vendor/assets/javascripts/jquery-form.js +980 -0
  354. data/vendor/assets/javascripts/jquery-json.js +193 -0
  355. data/vendor/assets/javascripts/jquery-ui-1.8.16.js +11768 -0
  356. data/vendor/assets/javascripts/jquery-ujs.js +374 -0
  357. data/vendor/assets/javascripts/mustache.js +436 -0
  358. data/vendor/assets/javascripts/nested_form.js +51 -0
  359. metadata +740 -0
metadata ADDED
@@ -0,0 +1,740 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nimbleshop_core
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.rc1
5
+ prerelease: 6
6
+ platform: ruby
7
+ authors:
8
+ - Neeraj Singh
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-07-03 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - '='
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.6
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - '='
28
+ - !ruby/object:Gem::Version
29
+ version: 3.2.6
30
+ - !ruby/object:Gem::Dependency
31
+ name: hashr
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - '='
36
+ - !ruby/object:Gem::Version
37
+ version: 0.0.19
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - '='
44
+ - !ruby/object:Gem::Version
45
+ version: 0.0.19
46
+ - !ruby/object:Gem::Dependency
47
+ name: carrierwave
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - '='
52
+ - !ruby/object:Gem::Version
53
+ version: 0.6.2
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - '='
60
+ - !ruby/object:Gem::Version
61
+ version: 0.6.2
62
+ - !ruby/object:Gem::Dependency
63
+ name: delayed_job_active_record
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - '='
68
+ - !ruby/object:Gem::Version
69
+ version: 0.3.2
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - '='
76
+ - !ruby/object:Gem::Version
77
+ version: 0.3.2
78
+ - !ruby/object:Gem::Dependency
79
+ name: twitter-bootstrap-rails
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: state_machine
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :runtime
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: mini_magick
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ - !ruby/object:Gem::Dependency
127
+ name: activemerchant
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ type: :runtime
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ! '>='
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ - !ruby/object:Gem::Dependency
143
+ name: carmen
144
+ requirement: !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - '='
148
+ - !ruby/object:Gem::Version
149
+ version: 1.0.0.beta2
150
+ type: :runtime
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - '='
156
+ - !ruby/object:Gem::Version
157
+ version: 1.0.0.beta2
158
+ - !ruby/object:Gem::Dependency
159
+ name: nested_form
160
+ requirement: !ruby/object:Gem::Requirement
161
+ none: false
162
+ requirements:
163
+ - - '='
164
+ - !ruby/object:Gem::Version
165
+ version: 0.2.1
166
+ type: :runtime
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ none: false
170
+ requirements:
171
+ - - '='
172
+ - !ruby/object:Gem::Version
173
+ version: 0.2.1
174
+ - !ruby/object:Gem::Dependency
175
+ name: strong_parameters
176
+ requirement: !ruby/object:Gem::Requirement
177
+ none: false
178
+ requirements:
179
+ - - '='
180
+ - !ruby/object:Gem::Version
181
+ version: 0.1.3
182
+ type: :runtime
183
+ prerelease: false
184
+ version_requirements: !ruby/object:Gem::Requirement
185
+ none: false
186
+ requirements:
187
+ - - '='
188
+ - !ruby/object:Gem::Version
189
+ version: 0.1.3
190
+ - !ruby/object:Gem::Dependency
191
+ name: valid_email
192
+ requirement: !ruby/object:Gem::Requirement
193
+ none: false
194
+ requirements:
195
+ - - '='
196
+ - !ruby/object:Gem::Version
197
+ version: 0.0.4
198
+ type: :runtime
199
+ prerelease: false
200
+ version_requirements: !ruby/object:Gem::Requirement
201
+ none: false
202
+ requirements:
203
+ - - '='
204
+ - !ruby/object:Gem::Version
205
+ version: 0.0.4
206
+ - !ruby/object:Gem::Dependency
207
+ name: custom_error_message
208
+ requirement: !ruby/object:Gem::Requirement
209
+ none: false
210
+ requirements:
211
+ - - '='
212
+ - !ruby/object:Gem::Version
213
+ version: 1.1.1
214
+ type: :runtime
215
+ prerelease: false
216
+ version_requirements: !ruby/object:Gem::Requirement
217
+ none: false
218
+ requirements:
219
+ - - '='
220
+ - !ruby/object:Gem::Version
221
+ version: 1.1.1
222
+ - !ruby/object:Gem::Dependency
223
+ name: american_date
224
+ requirement: !ruby/object:Gem::Requirement
225
+ none: false
226
+ requirements:
227
+ - - '='
228
+ - !ruby/object:Gem::Version
229
+ version: 1.0.0
230
+ type: :runtime
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ none: false
234
+ requirements:
235
+ - - '='
236
+ - !ruby/object:Gem::Version
237
+ version: 1.0.0
238
+ description: Provides core e-commerce functionality to nimbleShop
239
+ email: neeraj@BigBinary.com
240
+ executables: []
241
+ extensions: []
242
+ extra_rdoc_files: []
243
+ files:
244
+ - app/assets/images/engines/nimbleshop_authorizedotnet/american_express.png
245
+ - app/assets/images/engines/nimbleshop_authorizedotnet/authorize_net_big.png
246
+ - app/assets/images/engines/nimbleshop_authorizedotnet/authorizedotnet_big.png
247
+ - app/assets/images/engines/nimbleshop_authorizedotnet/discover.png
248
+ - app/assets/images/engines/nimbleshop_authorizedotnet/mastercard.png
249
+ - app/assets/images/engines/nimbleshop_authorizedotnet/visa.png
250
+ - app/assets/images/engines/nimbleshop_cod/cod_small.png
251
+ - app/assets/images/engines/nimbleshop_paypalwp/paypal_big.png
252
+ - app/assets/images/engines/nimbleshop_paypalwp/paypal_small.png
253
+ - app/assets/images/engines/nimbleshop_splitable/splitable.png
254
+ - app/assets/images/engines/nimbleshop_splitable/splitable_big.png
255
+ - app/assets/images/engines/nimbleshop_splitable/splitable_small.png
256
+ - app/assets/javascripts/admin/products/edit.js.coffee
257
+ - app/assets/javascripts/admin/shipping_methods/edit.js.coffee
258
+ - app/assets/javascripts/admin.js
259
+ - app/assets/javascripts/fadeout_success.js.coffee
260
+ - app/assets/javascripts/payment_method.js.coffee
261
+ - app/assets/javascripts/product-group-condition.js.coffee
262
+ - app/assets/javascripts/remove_deletion_of_product_pictures.js.coffee
263
+ - app/assets/javascripts/shipit.js.coffee
264
+ - app/assets/javascripts/twitter_bootstrap.js.coffee
265
+ - app/assets/stylesheets/admin.css
266
+ - app/assets/stylesheets/admin_bootstrap_and_overrides.css.less
267
+ - app/assets/stylesheets/admin_custom.css
268
+ - app/assets/twitter/bootstrap/glyphicons-halflings-white.png
269
+ - app/assets/twitter/bootstrap/glyphicons-halflings.png
270
+ - app/controllers/admin/custom_fields_controller.rb
271
+ - app/controllers/admin/link_groups_controller.rb
272
+ - app/controllers/admin/main_controller.rb
273
+ - app/controllers/admin/navigations_controller.rb
274
+ - app/controllers/admin/orders_controller.rb
275
+ - app/controllers/admin/payment_methods_controller.rb
276
+ - app/controllers/admin/product_groups_controller.rb
277
+ - app/controllers/admin/products_controller.rb
278
+ - app/controllers/admin/shipments_controller.rb
279
+ - app/controllers/admin/shipping_methods_controller.rb
280
+ - app/controllers/admin/shipping_zones_controller.rb
281
+ - app/controllers/admin/shops_controller.rb
282
+ - app/controllers/admin_controller.rb
283
+ - app/helpers/admin_helper.rb
284
+ - app/helpers/nimbleshop_helper.rb
285
+ - app/helpers/payment_method_helper.rb
286
+ - app/mailers/admin_mailer.rb
287
+ - app/mailers/mailer.rb
288
+ - app/models/address.rb
289
+ - app/models/country_shipping_zone.rb
290
+ - app/models/creditcard.rb
291
+ - app/models/custom_field.rb
292
+ - app/models/custom_field_answer/field.rb
293
+ - app/models/custom_field_answer.rb
294
+ - app/models/line_item.rb
295
+ - app/models/link.rb
296
+ - app/models/link_group.rb
297
+ - app/models/navigation.rb
298
+ - app/models/order.rb
299
+ - app/models/payment_method.rb
300
+ - app/models/payment_transaction.rb
301
+ - app/models/picture.rb
302
+ - app/models/product.rb
303
+ - app/models/product_group.rb
304
+ - app/models/product_group_condition.rb
305
+ - app/models/regional_shipping_zone.rb
306
+ - app/models/shipment.rb
307
+ - app/models/shipment_carrier.rb
308
+ - app/models/shipping_cost_calculator.rb
309
+ - app/models/shipping_method.rb
310
+ - app/models/shipping_zone.rb
311
+ - app/models/shop.rb
312
+ - app/models/tax_calculator.rb
313
+ - app/observers/order_observer.rb
314
+ - app/uploaders/picture_uploader.rb
315
+ - app/views/admin/custom_fields/_form.html.erb
316
+ - app/views/admin/custom_fields/edit.html.erb
317
+ - app/views/admin/custom_fields/index.html.erb
318
+ - app/views/admin/custom_fields/new.html.erb
319
+ - app/views/admin/link_groups/_form.html.erb
320
+ - app/views/admin/link_groups/_link_group.html.erb
321
+ - app/views/admin/link_groups/_link_group_title.html.erb
322
+ - app/views/admin/link_groups/edit.html.erb
323
+ - app/views/admin/link_groups/index.html.erb
324
+ - app/views/admin/link_groups/new.html.erb
325
+ - app/views/admin/mailer/new_order_notification.text.erb
326
+ - app/views/admin/main/index.html.erb
327
+ - app/views/admin/navigations/new.html.erb
328
+ - app/views/admin/orders/_line_item.html.erb
329
+ - app/views/admin/orders/_line_items.html.erb
330
+ - app/views/admin/orders/_payment_info.html.erb
331
+ - app/views/admin/orders/_shipping_info.html.erb
332
+ - app/views/admin/orders/index.html.erb
333
+ - app/views/admin/orders/show.html.erb
334
+ - app/views/admin/payment_methods/index.html.erb
335
+ - app/views/admin/product_groups/_condition.html.mustache
336
+ - app/views/admin/product_groups/_form.html.erb
337
+ - app/views/admin/product_groups/edit.html.erb
338
+ - app/views/admin/product_groups/index.html.erb
339
+ - app/views/admin/product_groups/new.html.erb
340
+ - app/views/admin/product_groups/show.html.erb
341
+ - app/views/admin/products/_custom_field_answer.html.erb
342
+ - app/views/admin/products/_form.html.erb
343
+ - app/views/admin/products/_handle_pictures.html.erb
344
+ - app/views/admin/products/_pictures.html.erb
345
+ - app/views/admin/products/edit.html.erb
346
+ - app/views/admin/products/index.html.erb
347
+ - app/views/admin/products/new.html.erb
348
+ - app/views/admin/shipping_methods/_form.html.erb
349
+ - app/views/admin/shipping_methods/_shipping_method.html.erb
350
+ - app/views/admin/shipping_methods/edit.html.erb
351
+ - app/views/admin/shipping_methods/new.html.erb
352
+ - app/views/admin/shipping_zones/_form.html.erb
353
+ - app/views/admin/shipping_zones/_shipping_method.html.erb
354
+ - app/views/admin/shipping_zones/_shipping_zone.html.erb
355
+ - app/views/admin/shipping_zones/edit.html.erb
356
+ - app/views/admin/shipping_zones/index.html.erb
357
+ - app/views/admin/shipping_zones/new.html.erb
358
+ - app/views/admin/shops/edit.html.erb
359
+ - app/views/layouts/_admin_footer.html.erb
360
+ - app/views/layouts/_admin_sidebar.html.erb
361
+ - app/views/layouts/_container.html.erb
362
+ - app/views/layouts/_top_nav_bar.html.erb
363
+ - app/views/layouts/admin.html.erb
364
+ - app/views/layouts/payment_method.html.erb
365
+ - app/views/mailer/order_notification_to_buyer.text.erb
366
+ - app/views/mailer/shipment_notification_to_buyer.text.erb
367
+ - config/initializers/001_settings_application.rb
368
+ - config/initializers/002_load_core_extensions.rb
369
+ - config/initializers/field_with_error.rb
370
+ - config/initializers/strip_and_nullify.rb
371
+ - config/initializers/time_formats.rb
372
+ - config/locales/en.yml
373
+ - config/routes.rb
374
+ - db/development.sqlite3
375
+ - db/migrate/20111022144421_create_product_groups.rb
376
+ - db/migrate/20111022144426_create_products.rb
377
+ - db/migrate/20111022144653_create_orders.rb
378
+ - db/migrate/20111022144725_create_line_items.rb
379
+ - db/migrate/20111022234951_create_shops.rb
380
+ - db/migrate/20111026193227_create_link_groups.rb
381
+ - db/migrate/20111026193435_create_navigations.rb
382
+ - db/migrate/20111031135810_create_links.rb
383
+ - db/migrate/20111106193938_create_custom_fields.rb
384
+ - db/migrate/20111106195112_create_custom_field_answers.rb
385
+ - db/migrate/20111106201548_create_product_group_conditions.rb
386
+ - db/migrate/20111107035350_create_creditcard_transactions.rb
387
+ - db/migrate/20111109190754_create_addresses.rb
388
+ - db/migrate/20111125173344_create_pictures.rb
389
+ - db/migrate/20111201024408_create_shipping_methods.rb
390
+ - db/migrate/20111202143154_create_shipping_zones.rb
391
+ - db/migrate/20111203034020_create_payment_methods.rb
392
+ - db/migrate/20111221190000_create_preferences.rb
393
+ - db/migrate/20120105234047_create_shipments.rb
394
+ - db/migrate/20120105234553_create_shipment_carriers.rb
395
+ - db/migrate/20120606165355_create_delayed_jobs.rb
396
+ - db/production.sqlite3
397
+ - db/schema.rb
398
+ - db/seeds.rb
399
+ - db/test.sqlite3
400
+ - lib/assets/javascripts/loading_state_for_buttons.js.coffee
401
+ - lib/assets/javascripts/show_help_on_hover.js.coffee
402
+ - lib/assets/javascripts/utils/autoresize.js.coffee
403
+ - lib/assets/javascripts/utils/focus.js.coffee
404
+ - lib/assets/javascripts/utils/formatNumber.js.coffee
405
+ - lib/assets/javascripts/utils/formatPrice.js.coffee
406
+ - lib/generators/nimbleshop/app/app_generator.rb
407
+ - lib/generators/nimbleshop/app/templates/config/application.yml
408
+ - lib/generators/nimbleshop/app/templates/config/initializers/airbrake.rb
409
+ - lib/generators/nimbleshop/app/templates/config/initializers/cache_images.rb
410
+ - lib/generators/nimbleshop/app/templates/config/initializers/carrierwave.rb
411
+ - lib/generators/nimbleshop/app/templates/config/initializers/delayed_job.rb
412
+ - lib/generators/nimbleshop/app/templates/config/initializers/setup_email.rb
413
+ - lib/nimbleshop/core_ext/activerecord_base.rb
414
+ - lib/nimbleshop/core_ext/filelessio.rb
415
+ - lib/nimbleshop/core_ext/force_ssl.rb
416
+ - lib/nimbleshop/core_ext/mustache_templater_handler.rb
417
+ - lib/nimbleshop/engine.rb
418
+ - lib/nimbleshop/permalink/builder.rb
419
+ - lib/nimbleshop/processor/base.rb
420
+ - lib/nimbleshop/processor.rb
421
+ - lib/nimbleshop/product_group_search/base_field.rb
422
+ - lib/nimbleshop/product_group_search/core_field_strategy.rb
423
+ - lib/nimbleshop/product_group_search/custom_field_strategy.rb
424
+ - lib/nimbleshop/product_group_search/date_field.rb
425
+ - lib/nimbleshop/product_group_search/extension.rb
426
+ - lib/nimbleshop/product_group_search/number_field.rb
427
+ - lib/nimbleshop/product_group_search/text_field.rb
428
+ - lib/nimbleshop/product_group_search.rb
429
+ - lib/nimbleshop/sampledata/data.rb
430
+ - lib/nimbleshop/sampledata/pictures/product1/pic1.jpg
431
+ - lib/nimbleshop/sampledata/pictures/product2/pic1.jpg
432
+ - lib/nimbleshop/sampledata/pictures/product2/pic2.jpg
433
+ - lib/nimbleshop/sampledata/pictures/product3/pic1.jpg
434
+ - lib/nimbleshop/sampledata/pictures/product3/pic2.jpg
435
+ - lib/nimbleshop/sampledata/pictures/product3/pic3.jpg
436
+ - lib/nimbleshop/sampledata/pictures/product3/pic4.jpg
437
+ - lib/nimbleshop/sampledata/pictures/product3/pic5.jpg
438
+ - lib/nimbleshop/sampledata/pictures/product4/pic1.jpg
439
+ - lib/nimbleshop/sampledata/pictures/product4/pic2.jpg
440
+ - lib/nimbleshop/sampledata/pictures/product5/pic1.jpg
441
+ - lib/nimbleshop/sampledata/pictures/product5/pic2.jpg
442
+ - lib/nimbleshop/sampledata/pictures/product6/pic1.jpg
443
+ - lib/nimbleshop/sampledata/pictures/product6/pic10.jpg
444
+ - lib/nimbleshop/sampledata/pictures/product6/pic11.jpg
445
+ - lib/nimbleshop/sampledata/pictures/product6/pic12.jpg
446
+ - lib/nimbleshop/sampledata/pictures/product6/pic13.jpg
447
+ - lib/nimbleshop/sampledata/pictures/product6/pic14.jpg
448
+ - lib/nimbleshop/sampledata/pictures/product6/pic15.jpg
449
+ - lib/nimbleshop/sampledata/pictures/product6/pic16.jpg
450
+ - lib/nimbleshop/sampledata/pictures/product6/pic17.jpg
451
+ - lib/nimbleshop/sampledata/pictures/product6/pic2.jpg
452
+ - lib/nimbleshop/sampledata/pictures/product6/pic3.jpg
453
+ - lib/nimbleshop/sampledata/pictures/product6/pic4.jpg
454
+ - lib/nimbleshop/sampledata/pictures/product6/pic5.jpg
455
+ - lib/nimbleshop/sampledata/pictures/product6/pic6.jpg
456
+ - lib/nimbleshop/sampledata/pictures/product6/pic7.jpg
457
+ - lib/nimbleshop/sampledata/pictures/product6/pic8.jpg
458
+ - lib/nimbleshop/sampledata/pictures/product6/pic9.jpg
459
+ - lib/nimbleshop/sampledata/pictures/product7/pic1.jpg
460
+ - lib/nimbleshop/sampledata/pictures/product7/pic2.jpg
461
+ - lib/nimbleshop/sampledata/pictures/product7/pic3.jpg
462
+ - lib/nimbleshop/sampledata/pictures/product8/pic1.jpg
463
+ - lib/nimbleshop/sampledata/pictures/product8/pic2.jpg
464
+ - lib/nimbleshop/sampledata/pictures/product8/pic3.jpg
465
+ - lib/nimbleshop/sampledata/pictures/product8/pic4.jpg
466
+ - lib/nimbleshop/sampledata/pictures/product8/pic5.jpg
467
+ - lib/nimbleshop/sampledata/pictures/product8/pic6.jpg
468
+ - lib/nimbleshop/sampledata/pictures/product8/pic7.jpg
469
+ - lib/nimbleshop/sampledata/pictures/product8/pic8.jpg
470
+ - lib/nimbleshop/sampledata/pictures/product9/pic1.jpg
471
+ - lib/nimbleshop/sampledata/pictures/product9/pic2.jpg
472
+ - lib/nimbleshop/util.rb
473
+ - lib/nimbleshop/version.rb
474
+ - lib/nimbleshop_core.rb
475
+ - lib/tasks/localhost2public.rake
476
+ - lib/tasks/setup.rake
477
+ - vendor/assets/javascripts/accounting.js
478
+ - vendor/assets/javascripts/autoresize.js
479
+ - vendor/assets/javascripts/jquery-1.7.1.js
480
+ - vendor/assets/javascripts/jquery-form.js
481
+ - vendor/assets/javascripts/jquery-json.js
482
+ - vendor/assets/javascripts/jquery-ui-1.8.16.js
483
+ - vendor/assets/javascripts/jquery-ujs.js
484
+ - vendor/assets/javascripts/mustache.js
485
+ - vendor/assets/javascripts/nested_form.js
486
+ - Rakefile
487
+ - README.md
488
+ - test/factories/address_factory.rb
489
+ - test/factories/creditcard_factory.rb
490
+ - test/factories/custom_field_answer_factory.rb
491
+ - test/factories/custom_field_factory.rb
492
+ - test/factories/line_item_factory.rb
493
+ - test/factories/link_factory.rb
494
+ - test/factories/link_group_factory.rb
495
+ - test/factories/navigation_factory.rb
496
+ - test/factories/order_factory.rb
497
+ - test/factories/payment_method_factory.rb
498
+ - test/factories/payment_transaction_factory.rb
499
+ - test/factories/picture_factory.rb
500
+ - test/factories/product_group_condition_factory.rb
501
+ - test/factories/product_group_factory.rb
502
+ - test/factories/products_factory.rb
503
+ - test/factories/shipment_carrier_factory.rb
504
+ - test/factories/shipment_factory.rb
505
+ - test/factories/shipping_method_factory.rb
506
+ - test/factories/shipping_zone_factory.rb
507
+ - test/factories/shop_factory.rb
508
+ - test/fixtures/files/avatar.png
509
+ - test/fixtures/link_groups.yml
510
+ - test/fixtures/payment_methods.yml
511
+ - test/fixtures/shops.yml
512
+ - test/helpers/admin_helper_test.rb
513
+ - test/helpers/nimbleshop_helper_test.rb
514
+ - test/integration/admin/link_groups_acceptance_test.rb
515
+ - test/integration/admin/orders_acceptance_test.rb
516
+ - test/integration/admin/payment_methods_acceptance_test.rb
517
+ - test/integration/admin/product_groups_acceptance_test.rb
518
+ - test/integration/admin/products_acceptance_test.rb
519
+ - test/integration/admin/shipping_methods_acceptance_test.rb
520
+ - test/integration/admin/shipping_zones_acceptance_test.rb
521
+ - test/integration/admin/shops_acceptance_test.rb
522
+ - test/integration/checkout/cart_acceptance_test.rb
523
+ - test/integration/checkout/payment_confirmation_acceptance_test.rb
524
+ - test/integration/checkout/paypal_acceptance_test.rb
525
+ - test/integration/checkout/shipping_address_acceptance_test.rb
526
+ - test/integration/checkout/shipping_method_acceptance_test.rb
527
+ - test/integration/homepage_acceptance_test.rb
528
+ - test/integration/products_acceptance_test.rb
529
+ - test/integration/static_pages_acceptance_test.rb
530
+ - test/mailers/mailer_test.rb
531
+ - test/rails_app/app/controllers/application_controller.rb
532
+ - test/rails_app/app/helpers/application_helper.rb
533
+ - test/rails_app/app/views/layouts/application.html.erb
534
+ - test/rails_app/config/application.rb
535
+ - test/rails_app/config/application.yml
536
+ - test/rails_app/config/boot.rb
537
+ - test/rails_app/config/database.yml
538
+ - test/rails_app/config/environment.rb
539
+ - test/rails_app/config/environments/development.rb
540
+ - test/rails_app/config/environments/production.rb
541
+ - test/rails_app/config/environments/test.rb
542
+ - test/rails_app/config/initializers/backtrace_silencers.rb
543
+ - test/rails_app/config/initializers/inflections.rb
544
+ - test/rails_app/config/initializers/secret_token.rb
545
+ - test/rails_app/config/routes.rb
546
+ - test/rails_app/config.ru
547
+ - test/rails_app/db/development.sqlite3
548
+ - test/rails_app/db/migrate/20100401102949_create_tables.rb
549
+ - test/rails_app/db/schema.rb
550
+ - test/rails_app/Gemfile
551
+ - test/rails_app/Gemfile.lock
552
+ - test/rails_app/log/development.log
553
+ - test/rails_app/log/test.log
554
+ - test/rails_app/public/404.html
555
+ - test/rails_app/public/422.html
556
+ - test/rails_app/public/500.html
557
+ - test/rails_app/public/favicon.ico
558
+ - test/rails_app/Rakefile
559
+ - test/rails_app/script/rails
560
+ - test/support/address_test_helper.rb
561
+ - test/support/checkout_test_helper.rb
562
+ - test/support/dbify_sql_helper.rb
563
+ - test/support/images/cookware.jpg
564
+ - test/support/must_be_like.rb
565
+ - test/support/shipping_method_test_helper.rb
566
+ - test/support/wait_for_ajax.rb
567
+ - test/test_helper.rb
568
+ - test/unit/address_test.rb
569
+ - test/unit/country_shipping_zone_test.rb
570
+ - test/unit/creditcard_test.rb
571
+ - test/unit/custom_field_answer/field_test.rb
572
+ - test/unit/order_test.rb
573
+ - test/unit/payment_method/authorizedotnet_test.rb
574
+ - test/unit/payment_method/paypalwp_test.rb
575
+ - test/unit/payment_method/splitable_test.rb
576
+ - test/unit/picture_test.rb
577
+ - test/unit/processor/authorize_net_test.rb
578
+ - test/unit/processor/paypal_test.rb
579
+ - test/unit/processor/splitable_test.rb
580
+ - test/unit/product_group_condition_test.rb
581
+ - test/unit/product_group_test.rb
582
+ - test/unit/product_test.rb
583
+ - test/unit/shipping_cost_calculator_test.rb
584
+ - test/unit/shipping_method_test.rb
585
+ - test/unit/shop_test.rb
586
+ - test/unit/tax_calculator_test.rb
587
+ - test/vcr_cassettes/authorize_net/authorize-failure.yml
588
+ - test/vcr_cassettes/authorize_net/authorize-success.yml
589
+ - test/vcr_cassettes/authorize_net/capture-failure.yml
590
+ - test/vcr_cassettes/authorize_net/capture-success.yml
591
+ - test/vcr_cassettes/authorize_net/purchase-failure.yml
592
+ - test/vcr_cassettes/authorize_net/purchase-success.yml
593
+ - test/vcr_cassettes/authorize_net/refund-failure.yml
594
+ - test/vcr_cassettes/authorize_net/refund-success.yml
595
+ - test/vcr_cassettes/authorize_net/void-authorize.yml
596
+ - test/vcr_cassettes/authorize_net/void-failure.yml
597
+ - test/vcr_cassettes/authorize_net/void-success.yml
598
+ - test/vcr_cassettes/splitable/split-create-failure.yml
599
+ - test/vcr_cassettes/splitable/split-create-success.yml
600
+ - test/vcr_cassettes/splitable/split-draft-create-failure.yml
601
+ - test/vcr_cassettes/splitable/split-draft-create-success.yml
602
+ homepage: http://nimbleShop.org
603
+ licenses:
604
+ - MIT
605
+ post_install_message:
606
+ rdoc_options: []
607
+ require_paths: lib
608
+ required_ruby_version: !ruby/object:Gem::Requirement
609
+ none: false
610
+ requirements:
611
+ - - ! '>='
612
+ - !ruby/object:Gem::Version
613
+ version: '0'
614
+ required_rubygems_version: !ruby/object:Gem::Requirement
615
+ none: false
616
+ requirements:
617
+ - - ! '>'
618
+ - !ruby/object:Gem::Version
619
+ version: 1.3.1
620
+ requirements: []
621
+ rubyforge_project: nimbleshop_core
622
+ rubygems_version: 1.8.23
623
+ signing_key:
624
+ specification_version: 3
625
+ summary: Core extension for nimbleShop
626
+ test_files:
627
+ - test/factories/address_factory.rb
628
+ - test/factories/creditcard_factory.rb
629
+ - test/factories/custom_field_answer_factory.rb
630
+ - test/factories/custom_field_factory.rb
631
+ - test/factories/line_item_factory.rb
632
+ - test/factories/link_factory.rb
633
+ - test/factories/link_group_factory.rb
634
+ - test/factories/navigation_factory.rb
635
+ - test/factories/order_factory.rb
636
+ - test/factories/payment_method_factory.rb
637
+ - test/factories/payment_transaction_factory.rb
638
+ - test/factories/picture_factory.rb
639
+ - test/factories/product_group_condition_factory.rb
640
+ - test/factories/product_group_factory.rb
641
+ - test/factories/products_factory.rb
642
+ - test/factories/shipment_carrier_factory.rb
643
+ - test/factories/shipment_factory.rb
644
+ - test/factories/shipping_method_factory.rb
645
+ - test/factories/shipping_zone_factory.rb
646
+ - test/factories/shop_factory.rb
647
+ - test/fixtures/files/avatar.png
648
+ - test/fixtures/link_groups.yml
649
+ - test/fixtures/payment_methods.yml
650
+ - test/fixtures/shops.yml
651
+ - test/helpers/admin_helper_test.rb
652
+ - test/helpers/nimbleshop_helper_test.rb
653
+ - test/integration/admin/link_groups_acceptance_test.rb
654
+ - test/integration/admin/orders_acceptance_test.rb
655
+ - test/integration/admin/payment_methods_acceptance_test.rb
656
+ - test/integration/admin/product_groups_acceptance_test.rb
657
+ - test/integration/admin/products_acceptance_test.rb
658
+ - test/integration/admin/shipping_methods_acceptance_test.rb
659
+ - test/integration/admin/shipping_zones_acceptance_test.rb
660
+ - test/integration/admin/shops_acceptance_test.rb
661
+ - test/integration/checkout/cart_acceptance_test.rb
662
+ - test/integration/checkout/payment_confirmation_acceptance_test.rb
663
+ - test/integration/checkout/paypal_acceptance_test.rb
664
+ - test/integration/checkout/shipping_address_acceptance_test.rb
665
+ - test/integration/checkout/shipping_method_acceptance_test.rb
666
+ - test/integration/homepage_acceptance_test.rb
667
+ - test/integration/products_acceptance_test.rb
668
+ - test/integration/static_pages_acceptance_test.rb
669
+ - test/mailers/mailer_test.rb
670
+ - test/rails_app/app/controllers/application_controller.rb
671
+ - test/rails_app/app/helpers/application_helper.rb
672
+ - test/rails_app/app/views/layouts/application.html.erb
673
+ - test/rails_app/config/application.rb
674
+ - test/rails_app/config/application.yml
675
+ - test/rails_app/config/boot.rb
676
+ - test/rails_app/config/database.yml
677
+ - test/rails_app/config/environment.rb
678
+ - test/rails_app/config/environments/development.rb
679
+ - test/rails_app/config/environments/production.rb
680
+ - test/rails_app/config/environments/test.rb
681
+ - test/rails_app/config/initializers/backtrace_silencers.rb
682
+ - test/rails_app/config/initializers/inflections.rb
683
+ - test/rails_app/config/initializers/secret_token.rb
684
+ - test/rails_app/config/routes.rb
685
+ - test/rails_app/config.ru
686
+ - test/rails_app/db/development.sqlite3
687
+ - test/rails_app/db/migrate/20100401102949_create_tables.rb
688
+ - test/rails_app/db/schema.rb
689
+ - test/rails_app/Gemfile
690
+ - test/rails_app/Gemfile.lock
691
+ - test/rails_app/log/development.log
692
+ - test/rails_app/log/test.log
693
+ - test/rails_app/public/404.html
694
+ - test/rails_app/public/422.html
695
+ - test/rails_app/public/500.html
696
+ - test/rails_app/public/favicon.ico
697
+ - test/rails_app/Rakefile
698
+ - test/rails_app/script/rails
699
+ - test/support/address_test_helper.rb
700
+ - test/support/checkout_test_helper.rb
701
+ - test/support/dbify_sql_helper.rb
702
+ - test/support/images/cookware.jpg
703
+ - test/support/must_be_like.rb
704
+ - test/support/shipping_method_test_helper.rb
705
+ - test/support/wait_for_ajax.rb
706
+ - test/test_helper.rb
707
+ - test/unit/address_test.rb
708
+ - test/unit/country_shipping_zone_test.rb
709
+ - test/unit/creditcard_test.rb
710
+ - test/unit/custom_field_answer/field_test.rb
711
+ - test/unit/order_test.rb
712
+ - test/unit/payment_method/authorizedotnet_test.rb
713
+ - test/unit/payment_method/paypalwp_test.rb
714
+ - test/unit/payment_method/splitable_test.rb
715
+ - test/unit/picture_test.rb
716
+ - test/unit/processor/authorize_net_test.rb
717
+ - test/unit/processor/paypal_test.rb
718
+ - test/unit/processor/splitable_test.rb
719
+ - test/unit/product_group_condition_test.rb
720
+ - test/unit/product_group_test.rb
721
+ - test/unit/product_test.rb
722
+ - test/unit/shipping_cost_calculator_test.rb
723
+ - test/unit/shipping_method_test.rb
724
+ - test/unit/shop_test.rb
725
+ - test/unit/tax_calculator_test.rb
726
+ - test/vcr_cassettes/authorize_net/authorize-failure.yml
727
+ - test/vcr_cassettes/authorize_net/authorize-success.yml
728
+ - test/vcr_cassettes/authorize_net/capture-failure.yml
729
+ - test/vcr_cassettes/authorize_net/capture-success.yml
730
+ - test/vcr_cassettes/authorize_net/purchase-failure.yml
731
+ - test/vcr_cassettes/authorize_net/purchase-success.yml
732
+ - test/vcr_cassettes/authorize_net/refund-failure.yml
733
+ - test/vcr_cassettes/authorize_net/refund-success.yml
734
+ - test/vcr_cassettes/authorize_net/void-authorize.yml
735
+ - test/vcr_cassettes/authorize_net/void-failure.yml
736
+ - test/vcr_cassettes/authorize_net/void-success.yml
737
+ - test/vcr_cassettes/splitable/split-create-failure.yml
738
+ - test/vcr_cassettes/splitable/split-create-success.yml
739
+ - test/vcr_cassettes/splitable/split-draft-create-failure.yml
740
+ - test/vcr_cassettes/splitable/split-draft-create-success.yml