radiant-shop-extension 0.10.0 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (272) hide show
  1. data/README.md +5 -1
  2. data/VERSION +1 -1
  3. data/app/controllers/admin/shop/categories_controller.rb +32 -65
  4. data/app/controllers/admin/shop/customers_controller.rb +8 -7
  5. data/app/controllers/admin/shop/orders_controller.rb +37 -159
  6. data/app/controllers/admin/shop/packages/packings_controller.rb +90 -0
  7. data/app/controllers/admin/shop/packages_controller.rb +65 -0
  8. data/app/controllers/admin/shop/products/images_controller.rb +5 -8
  9. data/app/controllers/admin/shop/products/variant_templates_controller.rb +27 -0
  10. data/app/controllers/admin/shop/products/variants_controller.rb +60 -0
  11. data/app/controllers/admin/shop/products_controller.rb +67 -64
  12. data/app/controllers/admin/shop/variants_controller.rb +49 -0
  13. data/app/helpers/shop_helper.rb +5 -0
  14. data/app/models/form_address.rb +144 -0
  15. data/app/models/form_checkout.rb +200 -307
  16. data/app/models/form_line_item.rb +60 -0
  17. data/app/models/shop_address.rb +2 -2
  18. data/app/models/shop_category.rb +48 -51
  19. data/app/models/shop_customer.rb +25 -5
  20. data/app/models/shop_group.rb +15 -0
  21. data/app/models/shop_grouping.rb +6 -0
  22. data/app/models/shop_line_item.rb +7 -6
  23. data/app/models/shop_order.rb +44 -16
  24. data/app/models/shop_package.rb +74 -0
  25. data/app/models/shop_packing.rb +22 -0
  26. data/app/models/shop_page.rb +7 -0
  27. data/app/models/shop_payment.rb +5 -1
  28. data/app/models/shop_product.rb +86 -48
  29. data/app/models/shop_product_attachment.rb +5 -2
  30. data/app/models/shop_product_variant.rb +31 -0
  31. data/app/models/shop_variant.rb +25 -0
  32. data/app/views/admin/shop/categories/edit.html.haml +9 -10
  33. data/app/views/admin/shop/categories/edit/_foot.html.haml +9 -0
  34. data/app/views/admin/shop/categories/edit/_form.html.haml +14 -0
  35. data/app/views/admin/shop/categories/edit/_head.html.haml +4 -2
  36. data/app/views/admin/shop/categories/edit/_inputs.html.haml +2 -0
  37. data/app/views/admin/shop/categories/edit/_meta.html.haml +8 -7
  38. data/app/views/admin/shop/categories/edit/_parts.html.haml +9 -0
  39. data/app/views/admin/shop/categories/edit/_popups.html.haml +4 -0
  40. data/app/views/admin/shop/categories/edit/inputs/_name.html.haml +4 -0
  41. data/app/views/admin/shop/categories/edit/meta/_handle.html.haml +6 -5
  42. data/app/views/admin/shop/categories/edit/meta/_layouts.html.haml +6 -5
  43. data/app/views/admin/shop/categories/edit/meta/_page.html.haml +3 -0
  44. data/app/views/admin/shop/categories/edit/parts/_description.html.haml +4 -1
  45. data/app/views/admin/shop/categories/index/_category.html.haml +11 -10
  46. data/app/views/admin/shop/categories/new.html.haml +10 -9
  47. data/app/views/admin/shop/customers/edit.html.haml +8 -10
  48. data/app/views/admin/shop/customers/edit/_foot.html.haml +9 -0
  49. data/app/views/admin/shop/customers/edit/_form.html.haml +13 -0
  50. data/app/views/admin/shop/customers/edit/_head.html.haml +4 -2
  51. data/app/views/admin/shop/customers/edit/_inputs.html.haml +2 -0
  52. data/app/views/admin/shop/customers/edit/_parts.html.haml +9 -4
  53. data/app/views/admin/shop/customers/edit/inputs/_email.html.haml +3 -0
  54. data/app/views/admin/shop/customers/edit/inputs/_name.html.haml +3 -0
  55. data/app/views/admin/shop/customers/edit/parts/_orders.html.haml +10 -6
  56. data/app/views/admin/shop/customers/index.html.haml +4 -1
  57. data/app/views/admin/shop/customers/index/_customer.html.haml +3 -3
  58. data/app/views/admin/shop/customers/index/_foot.html.haml +4 -0
  59. data/app/views/admin/shop/customers/index/_head.html.haml +4 -0
  60. data/app/views/admin/shop/customers/new.html.haml +9 -9
  61. data/app/views/admin/shop/orders/edit.html.haml +11 -0
  62. data/app/views/admin/shop/orders/edit/_foot.html.haml +9 -0
  63. data/app/views/admin/shop/orders/edit/_form.html.haml +13 -0
  64. data/app/views/admin/shop/orders/edit/_head.html.haml +4 -0
  65. data/app/views/admin/shop/orders/edit/_inputs.html.haml +2 -0
  66. data/app/views/admin/shop/orders/edit/_meta.html.haml +8 -0
  67. data/app/views/admin/shop/orders/edit/_parts.html.haml +9 -0
  68. data/app/views/admin/shop/orders/edit/_popups.html.haml +4 -0
  69. data/app/views/admin/shop/orders/edit/parts/_address.html.haml +7 -0
  70. data/app/views/admin/shop/orders/edit/parts/_addresses.html.haml +9 -0
  71. data/app/views/admin/shop/orders/edit/parts/_customer.html.haml +3 -0
  72. data/app/views/admin/shop/orders/edit/parts/_items.html.haml +8 -0
  73. data/app/views/admin/shop/orders/index.html.haml +10 -30
  74. data/app/views/admin/shop/orders/index/_foot.html.haml +3 -0
  75. data/app/views/admin/shop/orders/index/_head.html.haml +4 -0
  76. data/app/views/admin/shop/orders/index/_order.html.haml +13 -0
  77. data/app/views/admin/shop/orders/index/buttons/_all.html.haml +1 -0
  78. data/app/views/admin/shop/orders/index/buttons/_new.html.haml +1 -0
  79. data/app/views/admin/shop/orders/index/buttons/_paid.html.haml +1 -0
  80. data/app/views/admin/shop/orders/index/buttons/_shipped.html.haml +1 -0
  81. data/app/views/admin/shop/packages/edit.html.haml +11 -0
  82. data/app/views/admin/shop/packages/edit/_foot.html.haml +17 -0
  83. data/app/views/admin/shop/packages/edit/_form.html.haml +15 -0
  84. data/app/views/admin/shop/packages/edit/_head.html.haml +4 -0
  85. data/app/views/admin/shop/packages/edit/_inputs.html.haml +2 -0
  86. data/app/views/admin/shop/packages/edit/_meta.html.haml +8 -0
  87. data/app/views/admin/shop/packages/edit/_parts.html.haml +9 -0
  88. data/app/views/admin/shop/packages/edit/_popups.html.haml +4 -0
  89. data/app/views/admin/shop/packages/edit/buttons/_browse_products.html.haml +1 -0
  90. data/app/views/admin/shop/packages/edit/inputs/_name.html.haml +3 -0
  91. data/app/views/admin/shop/packages/edit/inputs/_price.html.haml +3 -0
  92. data/app/views/admin/shop/packages/edit/meta/_sku.html.haml +5 -0
  93. data/app/views/admin/shop/packages/edit/parts/_description.html.haml +1 -0
  94. data/app/views/admin/shop/packages/edit/parts/_products.html.haml +3 -0
  95. data/app/views/admin/shop/packages/edit/popups/_browse_products.html.haml +7 -0
  96. data/app/views/admin/shop/packages/edit/shared/_product.html.haml +8 -0
  97. data/app/views/admin/shop/packages/index.html.haml +13 -0
  98. data/app/views/admin/shop/packages/index/_foot.html.haml +7 -0
  99. data/app/views/admin/shop/packages/index/_head.html.haml +4 -0
  100. data/app/views/admin/shop/packages/index/_package.html.haml +9 -0
  101. data/app/views/admin/shop/packages/new.html.haml +11 -0
  102. data/app/views/admin/shop/packages/remove.html.haml +12 -0
  103. data/app/views/admin/shop/products/edit.html.haml +9 -12
  104. data/app/views/admin/shop/products/edit/_foot.html.haml +19 -0
  105. data/app/views/admin/shop/products/edit/_form.html.haml +15 -0
  106. data/app/views/admin/shop/products/edit/_head.html.haml +4 -2
  107. data/app/views/admin/shop/products/edit/_inputs.html.haml +2 -0
  108. data/app/views/admin/shop/products/edit/_meta.html.haml +8 -8
  109. data/app/views/admin/shop/products/edit/_parts.html.haml +9 -0
  110. data/app/views/admin/shop/products/edit/_popups.html.haml +4 -0
  111. data/app/views/admin/shop/products/edit/buttons/_browse_images.html.haml +1 -1
  112. data/app/views/admin/shop/products/edit/buttons/_browse_templates.html.haml +1 -0
  113. data/app/views/admin/shop/products/edit/buttons/_new_image.html.haml +1 -1
  114. data/app/views/admin/shop/products/edit/buttons/_new_variant.html.haml +1 -0
  115. data/app/views/admin/shop/products/edit/inputs/_name.html.haml +4 -0
  116. data/app/views/admin/shop/products/edit/inputs/_price.html.haml +3 -0
  117. data/app/views/admin/shop/products/edit/meta/_category.html.haml +6 -5
  118. data/app/views/admin/shop/products/edit/meta/_page.html.haml +2 -0
  119. data/app/views/admin/shop/products/edit/meta/_sku.html.haml +6 -5
  120. data/app/views/admin/shop/products/edit/parts/_customers.html.haml +5 -0
  121. data/app/views/admin/shop/products/edit/parts/_description.html.haml +4 -1
  122. data/app/views/admin/shop/products/edit/parts/_images.html.haml +1 -1
  123. data/app/views/admin/shop/products/edit/parts/_variants.html.haml +3 -0
  124. data/app/views/admin/shop/products/edit/popups/_browse_images.html.haml +1 -1
  125. data/app/views/admin/shop/products/edit/popups/_browse_templates.html.haml +6 -0
  126. data/app/views/admin/shop/products/edit/popups/_new_image.html.haml +4 -4
  127. data/app/views/admin/shop/products/edit/popups/_new_variant.html.haml +16 -0
  128. data/app/views/admin/shop/products/edit/{_image.html.haml → shared/_image.html.haml} +0 -0
  129. data/app/views/admin/shop/products/edit/shared/_template.html.haml +6 -0
  130. data/app/views/admin/shop/products/edit/shared/_variant.html.haml +10 -0
  131. data/app/views/admin/shop/products/index.html.haml +6 -3
  132. data/app/views/admin/shop/products/index/_foot.html.haml +10 -0
  133. data/app/views/admin/shop/products/index/_head.html.haml +4 -0
  134. data/app/views/admin/shop/products/index/_product.html.haml +18 -10
  135. data/app/views/admin/shop/products/index/buttons/_discounts.html.haml +1 -0
  136. data/app/views/admin/shop/products/index/buttons/_packages.html.haml +1 -0
  137. data/app/views/admin/shop/products/index/buttons/_variants.html.haml +1 -0
  138. data/app/views/admin/shop/products/new.html.haml +10 -9
  139. data/app/views/admin/shop/variants/edit.html.haml +11 -0
  140. data/app/views/admin/shop/variants/edit/_foot.html.haml +9 -0
  141. data/app/views/admin/shop/variants/edit/_form.html.haml +13 -0
  142. data/app/views/admin/shop/variants/edit/_head.html.haml +4 -0
  143. data/app/views/admin/shop/variants/edit/_inputs.html.haml +2 -0
  144. data/app/views/admin/shop/variants/edit/_meta.html.haml +8 -0
  145. data/app/views/admin/shop/variants/edit/_parts.html.haml +9 -0
  146. data/app/views/admin/shop/variants/edit/_popups.html.haml +4 -0
  147. data/app/views/admin/shop/variants/edit/inputs/_name.html.haml +3 -0
  148. data/app/views/admin/shop/variants/edit/inputs/_options.html.haml +3 -0
  149. data/app/views/admin/shop/variants/index.html.haml +13 -0
  150. data/app/views/admin/shop/variants/index/_foot.html.haml +4 -0
  151. data/app/views/admin/shop/variants/index/_head.html.haml +4 -0
  152. data/app/views/admin/shop/variants/index/_variant.html.haml +9 -0
  153. data/app/views/admin/shop/variants/new.html.haml +11 -0
  154. data/app/views/admin/shop/variants/remove.html.haml +12 -0
  155. data/config/locales/en.yml +8 -1
  156. data/config/routes.rb +11 -22
  157. data/db/migrate/20100929011106_fix_relationship_foreign_keys.rb +101 -0
  158. data/db/migrate/20100929011607_drop_shop_addressables.rb +25 -0
  159. data/db/migrate/20100929030510_create_shop_groups.rb +19 -0
  160. data/db/migrate/20100929080301_shop_groups_change_add_description.rb +11 -0
  161. data/db/migrate/20100929081200_create_variants.rb +20 -0
  162. data/db/migrate/20100929143531_change_variants_add_updated_by.rb +25 -0
  163. data/db/migrate/20100929145641_change_created_by_to_id.rb +75 -0
  164. data/db/migrate/20100929235221_change_category_add_variant_id.rb +9 -0
  165. data/db/migrate/20100930235221_create_packages.rb +31 -0
  166. data/db/migrate/20101005231713_create_page_ids.rb +11 -0
  167. data/db/migrate/20101006051214_create_pages_for_products_and_categories.rb +73 -0
  168. data/db/migrate/20101007111845_add_default_position_to_attachment.rb +9 -0
  169. data/lib/shop/controllers/application_controller.rb +1 -1
  170. data/lib/shop/interface/categories.rb +29 -0
  171. data/lib/shop/interface/customers.rb +15 -15
  172. data/lib/shop/interface/orders.rb +34 -0
  173. data/lib/shop/interface/packages.rb +34 -0
  174. data/lib/shop/interface/products.rb +18 -31
  175. data/lib/shop/interface/variants.rb +34 -0
  176. data/lib/shop/models/form_extension.rb +23 -0
  177. data/lib/shop/models/page.rb +3 -2
  178. data/lib/shop/tags/address.rb +3 -3
  179. data/lib/shop/tags/cart.rb +12 -16
  180. data/lib/shop/tags/category.rb +4 -6
  181. data/lib/shop/tags/helpers.rb +131 -30
  182. data/lib/shop/tags/item.rb +16 -33
  183. data/lib/shop/tags/package.rb +95 -0
  184. data/lib/shop/tags/product.rb +11 -16
  185. data/lib/shop/tags/product_variant.rb +52 -0
  186. data/mockups/discounts/new-edit.bmml +492 -0
  187. data/public/javascripts/admin/extensions/shop/edit.js +20 -0
  188. data/public/javascripts/admin/extensions/shop/packages/edit.js +109 -0
  189. data/public/javascripts/admin/extensions/shop/products/edit.js +64 -65
  190. data/public/javascripts/admin/extensions/shop/products/index.js +31 -36
  191. data/public/stylesheets/sass/admin/extensions/shop/edit.sass +58 -11
  192. data/public/stylesheets/sass/admin/extensions/shop/index.sass +104 -53
  193. data/public/stylesheets/sass/admin/extensions/shop/packages/edit.sass +162 -0
  194. data/public/stylesheets/sass/admin/extensions/shop/products/edit.sass +115 -36
  195. data/public/stylesheets/sass/admin/extensions/shop/products/index.sass +12 -20
  196. data/radiant-shop-extension.gemspec +182 -38
  197. data/shop_extension.rb +29 -25
  198. data/spec/controllers/admin/shop/categories_controller_spec.rb +76 -191
  199. data/spec/controllers/admin/shop/customers_controller_spec.rb +67 -0
  200. data/spec/controllers/admin/shop/orders_controller_spec.rb +85 -0
  201. data/spec/controllers/admin/shop/packages/packings_controller_spec.rb +188 -0
  202. data/spec/controllers/admin/shop/packages_controller_spec.rb +32 -0
  203. data/spec/controllers/admin/shop/products/images_controller_spec.rb +10 -15
  204. data/spec/controllers/admin/shop/products/variant_templates_controller_spec.rb +53 -0
  205. data/spec/controllers/admin/shop/products/variants_controller_spec.rb +116 -0
  206. data/spec/controllers/admin/shop/products_controller_spec.rb +80 -148
  207. data/spec/controllers/admin/shop/variants_controller_spec.rb +67 -0
  208. data/spec/datasets/forms.rb +23 -8
  209. data/spec/datasets/shop_addresses.rb +1 -4
  210. data/spec/datasets/shop_categories.rb +25 -4
  211. data/spec/datasets/shop_groups.rb +15 -0
  212. data/spec/datasets/shop_line_items.rb +4 -3
  213. data/spec/datasets/shop_orders.rb +6 -15
  214. data/spec/datasets/shop_packages.rb +25 -0
  215. data/spec/datasets/shop_payments.rb +12 -0
  216. data/spec/datasets/{images.rb → shop_product_attachments.rb} +9 -1
  217. data/spec/datasets/shop_product_variants.rb +22 -0
  218. data/spec/datasets/shop_products.rb +28 -18
  219. data/spec/datasets/shop_variants.rb +17 -0
  220. data/spec/lib/shop/models/image_spec.rb +4 -4
  221. data/spec/lib/shop/tags/address_spec.rb +3 -3
  222. data/spec/lib/shop/tags/cart_spec.rb +32 -43
  223. data/spec/lib/shop/tags/category_spec.rb +58 -93
  224. data/spec/lib/shop/tags/helpers_spec.rb +162 -69
  225. data/spec/lib/shop/tags/item_spec.rb +116 -158
  226. data/spec/lib/shop/tags/package_spec.rb +342 -0
  227. data/spec/lib/shop/tags/product_spec.rb +29 -26
  228. data/spec/lib/shop/tags/product_variant_spec.rb +175 -0
  229. data/spec/models/form_address_spec.rb +166 -0
  230. data/spec/models/form_checkout_spec.rb +27 -157
  231. data/spec/models/shop_address_spec.rb +81 -0
  232. data/spec/models/shop_category_spec.rb +114 -31
  233. data/spec/models/shop_customer_spec.rb +105 -0
  234. data/spec/models/shop_group_spec.rb +38 -0
  235. data/spec/models/shop_line_item_spec.rb +5 -5
  236. data/spec/models/shop_order_spec.rb +89 -83
  237. data/spec/models/shop_package_spec.rb +117 -0
  238. data/spec/models/shop_packing_spec.rb +67 -0
  239. data/spec/models/shop_payment_spec.rb +19 -0
  240. data/spec/models/shop_product_attachment_spec.rb +4 -3
  241. data/spec/models/shop_product_spec.rb +171 -92
  242. data/spec/models/shop_product_variant_spec.rb +92 -0
  243. data/spec/models/shop_variant_spec.rb +47 -0
  244. metadata +183 -39
  245. data/app/controllers/shop/categories_controller.rb +0 -45
  246. data/app/controllers/shop/line_items_controller.rb +0 -165
  247. data/app/controllers/shop/orders_controller.rb +0 -16
  248. data/app/controllers/shop/products_controller.rb +0 -48
  249. data/app/models/shop_addressable.rb +0 -11
  250. data/app/views/admin/shop/categories/edit/_fields.html.haml +0 -28
  251. data/app/views/admin/shop/categories/edit/_part.html.haml +0 -3
  252. data/app/views/admin/shop/categories/edit/_popup.html.haml +0 -3
  253. data/app/views/admin/shop/customers/edit/_fields.html.haml +0 -33
  254. data/app/views/admin/shop/customers/index/_bottom.html.haml +0 -4
  255. data/app/views/admin/shop/products/edit/_fields.html.haml +0 -38
  256. data/app/views/admin/shop/products/edit/_part.html.haml +0 -3
  257. data/app/views/admin/shop/products/edit/_popup.html.haml +0 -3
  258. data/app/views/admin/shop/products/index/_bottom.html.haml +0 -5
  259. data/spec/controllers/shop/categories_controller_spec.rb +0 -42
  260. data/spec/controllers/shop/line_items_controller_spec.rb +0 -256
  261. data/spec/controllers/shop/orders_controller_specs.rb +0 -37
  262. data/spec/controllers/shop/products_controller_spec.rb +0 -51
  263. data/vendor/plugins/json_fields/.gitignore +0 -3
  264. data/vendor/plugins/json_fields/MIT-LICENSE +0 -20
  265. data/vendor/plugins/json_fields/README.rdoc +0 -65
  266. data/vendor/plugins/json_fields/Rakefile +0 -55
  267. data/vendor/plugins/json_fields/init.rb +0 -2
  268. data/vendor/plugins/json_fields/lib/json_fields.rb +0 -99
  269. data/vendor/plugins/json_fields/spec/lib/json_fields_spec.rb +0 -124
  270. data/vendor/plugins/json_fields/spec/spec.opts +0 -6
  271. data/vendor/plugins/json_fields/spec/spec_helper.rb +0 -29
  272. data/vendor/plugins/json_fields/spec/test_models.rb +0 -12
@@ -1,6 +1,4 @@
1
- #products_map
2
- border:
3
- top: 21px #9e9e9e solid
1
+ .map
4
2
 
5
3
  .category
6
4
  position: relative
@@ -22,7 +20,7 @@
22
20
  background:
23
21
  color: #e0f0ff
24
22
 
25
- .handle
23
+ .move
26
24
  float: left
27
25
  display: block
28
26
  width: 24px
@@ -37,7 +35,7 @@
37
35
 
38
36
  &:hover
39
37
 
40
- .handle
38
+ .move
41
39
  background:
42
40
  image: url(/images/admin/extensions/shop/products/sort.png)
43
41
 
@@ -104,26 +102,20 @@
104
102
  bottom: 2px
105
103
 
106
104
  .attributes
107
- padding:
108
- left: 35px
109
105
  background:
110
106
  color: #ffffff
111
107
 
112
- .handle
108
+ .move
113
109
  margin:
114
110
  top: 10px
115
111
 
116
- .title
117
- padding:
118
- left: 10px
119
-
120
- a
121
- font:
122
- size: 15px
123
- weight: normal
124
-
125
112
  .icon
126
113
  float: left
127
- margin: 5px
128
- left: 0
129
- height: 35px
114
+ margin:
115
+ right: 5px
116
+ display: block
117
+ height: 35px
118
+ width: 35px
119
+
120
+ img
121
+ height: 100%
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{radiant-shop-extension}
8
- s.version = "0.10.0"
8
+ s.version = "0.11.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Dirk Kelly", "John Barker"]
12
- s.date = %q{2010-09-28}
12
+ s.date = %q{2010-10-08}
13
13
  s.description = %q{Radiant Shop is an attempt at a simple but complete store. It includes Products, Categories, Orders and Credit Card Payments}
14
14
  s.email = %q{dk@dirkkelly.com}
15
15
  s.extra_rdoc_files = [
@@ -28,47 +28,65 @@ Gem::Specification.new do |s|
28
28
  "app/controllers/admin/shop/categories_controller.rb",
29
29
  "app/controllers/admin/shop/customers_controller.rb",
30
30
  "app/controllers/admin/shop/orders_controller.rb",
31
+ "app/controllers/admin/shop/packages/packings_controller.rb",
32
+ "app/controllers/admin/shop/packages_controller.rb",
31
33
  "app/controllers/admin/shop/products/images_controller.rb",
34
+ "app/controllers/admin/shop/products/variant_templates_controller.rb",
35
+ "app/controllers/admin/shop/products/variants_controller.rb",
32
36
  "app/controllers/admin/shop/products_controller.rb",
37
+ "app/controllers/admin/shop/variants_controller.rb",
33
38
  "app/controllers/admin/shops_controller.rb",
34
- "app/controllers/shop/categories_controller.rb",
35
- "app/controllers/shop/line_items_controller.rb",
36
- "app/controllers/shop/orders_controller.rb",
37
- "app/controllers/shop/products_controller.rb",
39
+ "app/helpers/shop_helper.rb",
40
+ "app/models/form_address.rb",
38
41
  "app/models/form_checkout.rb",
42
+ "app/models/form_line_item.rb",
39
43
  "app/models/shop_address.rb",
40
- "app/models/shop_addressable.rb",
41
44
  "app/models/shop_category.rb",
42
45
  "app/models/shop_category_page.rb",
43
46
  "app/models/shop_customer.rb",
47
+ "app/models/shop_group.rb",
48
+ "app/models/shop_grouping.rb",
44
49
  "app/models/shop_line_item.rb",
45
50
  "app/models/shop_order.rb",
51
+ "app/models/shop_package.rb",
52
+ "app/models/shop_packing.rb",
53
+ "app/models/shop_page.rb",
46
54
  "app/models/shop_payment.rb",
47
55
  "app/models/shop_product.rb",
48
56
  "app/models/shop_product_attachment.rb",
49
57
  "app/models/shop_product_page.rb",
58
+ "app/models/shop_product_variant.rb",
59
+ "app/models/shop_variant.rb",
50
60
  "app/views/.DS_Store",
51
61
  "app/views/admin/.DS_Store",
52
62
  "app/views/admin/pages/_shop_category.html.haml",
53
63
  "app/views/admin/pages/_shop_product.html.haml",
54
64
  "app/views/admin/shop/categories/edit.html.haml",
55
- "app/views/admin/shop/categories/edit/_fields.html.haml",
65
+ "app/views/admin/shop/categories/edit/_foot.html.haml",
66
+ "app/views/admin/shop/categories/edit/_form.html.haml",
56
67
  "app/views/admin/shop/categories/edit/_head.html.haml",
68
+ "app/views/admin/shop/categories/edit/_inputs.html.haml",
57
69
  "app/views/admin/shop/categories/edit/_meta.html.haml",
58
- "app/views/admin/shop/categories/edit/_part.html.haml",
59
- "app/views/admin/shop/categories/edit/_popup.html.haml",
70
+ "app/views/admin/shop/categories/edit/_parts.html.haml",
71
+ "app/views/admin/shop/categories/edit/_popups.html.haml",
72
+ "app/views/admin/shop/categories/edit/inputs/_name.html.haml",
60
73
  "app/views/admin/shop/categories/edit/meta/_handle.html.haml",
61
74
  "app/views/admin/shop/categories/edit/meta/_layouts.html.haml",
75
+ "app/views/admin/shop/categories/edit/meta/_page.html.haml",
62
76
  "app/views/admin/shop/categories/edit/parts/_description.html.haml",
63
77
  "app/views/admin/shop/categories/index/_category.html.haml",
64
78
  "app/views/admin/shop/categories/new.html.haml",
65
79
  "app/views/admin/shop/categories/remove.html.haml",
66
80
  "app/views/admin/shop/customers/edit.html.haml",
67
- "app/views/admin/shop/customers/edit/_fields.html.haml",
81
+ "app/views/admin/shop/customers/edit/_foot.html.haml",
82
+ "app/views/admin/shop/customers/edit/_form.html.haml",
68
83
  "app/views/admin/shop/customers/edit/_head.html.haml",
84
+ "app/views/admin/shop/customers/edit/_inputs.html.haml",
69
85
  "app/views/admin/shop/customers/edit/_meta.html.haml",
70
86
  "app/views/admin/shop/customers/edit/_parts.html.haml",
71
87
  "app/views/admin/shop/customers/edit/_popups.html.haml",
88
+ "app/views/admin/shop/customers/edit/inputs/_email.html.haml",
89
+ "app/views/admin/shop/customers/edit/inputs/_name.html.haml",
72
90
  "app/views/admin/shop/customers/edit/meta/_login.html.haml",
73
91
  "app/views/admin/shop/customers/edit/meta/_password.html.haml",
74
92
  "app/views/admin/shop/customers/edit/meta/_password_confirmation.html.haml",
@@ -76,31 +94,106 @@ Gem::Specification.new do |s|
76
94
  "app/views/admin/shop/customers/edit/parts/_addresses.html.haml",
77
95
  "app/views/admin/shop/customers/edit/parts/_orders.html.haml",
78
96
  "app/views/admin/shop/customers/index.html.haml",
79
- "app/views/admin/shop/customers/index/_bottom.html.haml",
80
97
  "app/views/admin/shop/customers/index/_customer.html.haml",
98
+ "app/views/admin/shop/customers/index/_foot.html.haml",
99
+ "app/views/admin/shop/customers/index/_head.html.haml",
81
100
  "app/views/admin/shop/customers/new.html.haml",
82
101
  "app/views/admin/shop/customers/remove.html.haml",
102
+ "app/views/admin/shop/orders/edit.html.haml",
103
+ "app/views/admin/shop/orders/edit/_foot.html.haml",
104
+ "app/views/admin/shop/orders/edit/_form.html.haml",
105
+ "app/views/admin/shop/orders/edit/_head.html.haml",
106
+ "app/views/admin/shop/orders/edit/_inputs.html.haml",
107
+ "app/views/admin/shop/orders/edit/_meta.html.haml",
108
+ "app/views/admin/shop/orders/edit/_parts.html.haml",
109
+ "app/views/admin/shop/orders/edit/_popups.html.haml",
110
+ "app/views/admin/shop/orders/edit/parts/_address.html.haml",
111
+ "app/views/admin/shop/orders/edit/parts/_addresses.html.haml",
112
+ "app/views/admin/shop/orders/edit/parts/_customer.html.haml",
113
+ "app/views/admin/shop/orders/edit/parts/_items.html.haml",
83
114
  "app/views/admin/shop/orders/index.html.haml",
115
+ "app/views/admin/shop/orders/index/_foot.html.haml",
116
+ "app/views/admin/shop/orders/index/_head.html.haml",
117
+ "app/views/admin/shop/orders/index/_order.html.haml",
118
+ "app/views/admin/shop/orders/index/buttons/_all.html.haml",
119
+ "app/views/admin/shop/orders/index/buttons/_new.html.haml",
120
+ "app/views/admin/shop/orders/index/buttons/_paid.html.haml",
121
+ "app/views/admin/shop/orders/index/buttons/_shipped.html.haml",
122
+ "app/views/admin/shop/packages/edit.html.haml",
123
+ "app/views/admin/shop/packages/edit/_foot.html.haml",
124
+ "app/views/admin/shop/packages/edit/_form.html.haml",
125
+ "app/views/admin/shop/packages/edit/_head.html.haml",
126
+ "app/views/admin/shop/packages/edit/_inputs.html.haml",
127
+ "app/views/admin/shop/packages/edit/_meta.html.haml",
128
+ "app/views/admin/shop/packages/edit/_parts.html.haml",
129
+ "app/views/admin/shop/packages/edit/_popups.html.haml",
130
+ "app/views/admin/shop/packages/edit/buttons/_browse_products.html.haml",
131
+ "app/views/admin/shop/packages/edit/inputs/_name.html.haml",
132
+ "app/views/admin/shop/packages/edit/inputs/_price.html.haml",
133
+ "app/views/admin/shop/packages/edit/meta/_sku.html.haml",
134
+ "app/views/admin/shop/packages/edit/parts/_description.html.haml",
135
+ "app/views/admin/shop/packages/edit/parts/_products.html.haml",
136
+ "app/views/admin/shop/packages/edit/popups/_browse_products.html.haml",
137
+ "app/views/admin/shop/packages/edit/shared/_product.html.haml",
138
+ "app/views/admin/shop/packages/index.html.haml",
139
+ "app/views/admin/shop/packages/index/_foot.html.haml",
140
+ "app/views/admin/shop/packages/index/_head.html.haml",
141
+ "app/views/admin/shop/packages/index/_package.html.haml",
142
+ "app/views/admin/shop/packages/new.html.haml",
143
+ "app/views/admin/shop/packages/remove.html.haml",
84
144
  "app/views/admin/shop/products/edit.html.haml",
85
- "app/views/admin/shop/products/edit/_fields.html.haml",
145
+ "app/views/admin/shop/products/edit/_foot.html.haml",
146
+ "app/views/admin/shop/products/edit/_form.html.haml",
86
147
  "app/views/admin/shop/products/edit/_head.html.haml",
87
- "app/views/admin/shop/products/edit/_image.html.haml",
148
+ "app/views/admin/shop/products/edit/_inputs.html.haml",
88
149
  "app/views/admin/shop/products/edit/_meta.html.haml",
89
- "app/views/admin/shop/products/edit/_part.html.haml",
90
- "app/views/admin/shop/products/edit/_popup.html.haml",
150
+ "app/views/admin/shop/products/edit/_parts.html.haml",
151
+ "app/views/admin/shop/products/edit/_popups.html.haml",
91
152
  "app/views/admin/shop/products/edit/buttons/_browse_images.html.haml",
153
+ "app/views/admin/shop/products/edit/buttons/_browse_templates.html.haml",
92
154
  "app/views/admin/shop/products/edit/buttons/_new_image.html.haml",
155
+ "app/views/admin/shop/products/edit/buttons/_new_variant.html.haml",
156
+ "app/views/admin/shop/products/edit/inputs/_name.html.haml",
157
+ "app/views/admin/shop/products/edit/inputs/_price.html.haml",
93
158
  "app/views/admin/shop/products/edit/meta/_category.html.haml",
159
+ "app/views/admin/shop/products/edit/meta/_page.html.haml",
94
160
  "app/views/admin/shop/products/edit/meta/_sku.html.haml",
161
+ "app/views/admin/shop/products/edit/parts/_customers.html.haml",
95
162
  "app/views/admin/shop/products/edit/parts/_description.html.haml",
96
163
  "app/views/admin/shop/products/edit/parts/_images.html.haml",
164
+ "app/views/admin/shop/products/edit/parts/_variants.html.haml",
97
165
  "app/views/admin/shop/products/edit/popups/_browse_images.html.haml",
166
+ "app/views/admin/shop/products/edit/popups/_browse_templates.html.haml",
98
167
  "app/views/admin/shop/products/edit/popups/_new_image.html.haml",
168
+ "app/views/admin/shop/products/edit/popups/_new_variant.html.haml",
169
+ "app/views/admin/shop/products/edit/shared/_image.html.haml",
170
+ "app/views/admin/shop/products/edit/shared/_template.html.haml",
171
+ "app/views/admin/shop/products/edit/shared/_variant.html.haml",
99
172
  "app/views/admin/shop/products/index.html.haml",
100
- "app/views/admin/shop/products/index/_bottom.html.haml",
173
+ "app/views/admin/shop/products/index/_foot.html.haml",
174
+ "app/views/admin/shop/products/index/_head.html.haml",
101
175
  "app/views/admin/shop/products/index/_product.html.haml",
176
+ "app/views/admin/shop/products/index/buttons/_discounts.html.haml",
177
+ "app/views/admin/shop/products/index/buttons/_packages.html.haml",
178
+ "app/views/admin/shop/products/index/buttons/_variants.html.haml",
102
179
  "app/views/admin/shop/products/new.html.haml",
103
180
  "app/views/admin/shop/products/remove.html.haml",
181
+ "app/views/admin/shop/variants/edit.html.haml",
182
+ "app/views/admin/shop/variants/edit/_foot.html.haml",
183
+ "app/views/admin/shop/variants/edit/_form.html.haml",
184
+ "app/views/admin/shop/variants/edit/_head.html.haml",
185
+ "app/views/admin/shop/variants/edit/_inputs.html.haml",
186
+ "app/views/admin/shop/variants/edit/_meta.html.haml",
187
+ "app/views/admin/shop/variants/edit/_parts.html.haml",
188
+ "app/views/admin/shop/variants/edit/_popups.html.haml",
189
+ "app/views/admin/shop/variants/edit/inputs/_name.html.haml",
190
+ "app/views/admin/shop/variants/edit/inputs/_options.html.haml",
191
+ "app/views/admin/shop/variants/index.html.haml",
192
+ "app/views/admin/shop/variants/index/_foot.html.haml",
193
+ "app/views/admin/shop/variants/index/_head.html.haml",
194
+ "app/views/admin/shop/variants/index/_variant.html.haml",
195
+ "app/views/admin/shop/variants/new.html.haml",
196
+ "app/views/admin/shop/variants/remove.html.haml",
104
197
  "app/views/shop/categories/show.html.haml",
105
198
  "app/views/shop/orders/show.html.haml",
106
199
  "app/views/shop/products/index.html.haml",
@@ -113,6 +206,18 @@ Gem::Specification.new do |s|
113
206
  "db/migrate/20100927041219_remove_payment_methods.rb",
114
207
  "db/migrate/20100927041624_change_payments_add_gateway.rb",
115
208
  "db/migrate/20100927140446_change_payment_add_card_type_card_number.rb",
209
+ "db/migrate/20100929011106_fix_relationship_foreign_keys.rb",
210
+ "db/migrate/20100929011607_drop_shop_addressables.rb",
211
+ "db/migrate/20100929030510_create_shop_groups.rb",
212
+ "db/migrate/20100929080301_shop_groups_change_add_description.rb",
213
+ "db/migrate/20100929081200_create_variants.rb",
214
+ "db/migrate/20100929143531_change_variants_add_updated_by.rb",
215
+ "db/migrate/20100929145641_change_created_by_to_id.rb",
216
+ "db/migrate/20100929235221_change_category_add_variant_id.rb",
217
+ "db/migrate/20100930235221_create_packages.rb",
218
+ "db/migrate/20101005231713_create_page_ids.rb",
219
+ "db/migrate/20101006051214_create_pages_for_products_and_categories.rb",
220
+ "db/migrate/20101007111845_add_default_position_to_attachment.rb",
116
221
  "db/seed.rb",
117
222
  "db/seeds/forms.rb",
118
223
  "db/seeds/layouts.rb",
@@ -121,8 +226,13 @@ Gem::Specification.new do |s|
121
226
  "features/support/paths.rb",
122
227
  "lib/shop/controllers/application_controller.rb",
123
228
  "lib/shop/controllers/site_controller.rb",
229
+ "lib/shop/interface/categories.rb",
124
230
  "lib/shop/interface/customers.rb",
231
+ "lib/shop/interface/orders.rb",
232
+ "lib/shop/interface/packages.rb",
125
233
  "lib/shop/interface/products.rb",
234
+ "lib/shop/interface/variants.rb",
235
+ "lib/shop/models/form_extension.rb",
126
236
  "lib/shop/models/image.rb",
127
237
  "lib/shop/models/page.rb",
128
238
  "lib/shop/tags/address.rb",
@@ -132,36 +242,50 @@ Gem::Specification.new do |s|
132
242
  "lib/shop/tags/core.rb",
133
243
  "lib/shop/tags/helpers.rb",
134
244
  "lib/shop/tags/item.rb",
245
+ "lib/shop/tags/package.rb",
135
246
  "lib/shop/tags/product.rb",
247
+ "lib/shop/tags/product_variant.rb",
136
248
  "lib/shop/tags/responses.rb",
137
249
  "lib/tasks/shop_extension_tasks.rake",
138
250
  "mockups/balsamiq/products-retro_fun_tshirt-more.bmml",
139
251
  "mockups/balsamiq/products-retro_fun_tshirt.bmml",
252
+ "mockups/discounts/new-edit.bmml",
140
253
  "public/images/admin/extensions/shop/products/sort.png",
254
+ "public/javascripts/admin/extensions/shop/edit.js",
255
+ "public/javascripts/admin/extensions/shop/packages/edit.js",
141
256
  "public/javascripts/admin/extensions/shop/products/edit.js",
142
257
  "public/javascripts/admin/extensions/shop/products/index.js",
143
258
  "public/stylesheets/sass/admin/extensions/shop/edit.sass",
144
259
  "public/stylesheets/sass/admin/extensions/shop/index.sass",
260
+ "public/stylesheets/sass/admin/extensions/shop/packages/edit.sass",
145
261
  "public/stylesheets/sass/admin/extensions/shop/products/edit.sass",
146
262
  "public/stylesheets/sass/admin/extensions/shop/products/index.sass",
147
263
  "radiant-shop-extension.gemspec",
148
264
  "shop_extension.rb",
149
265
  "spec/controllers/admin/shop/categories_controller_spec.rb",
266
+ "spec/controllers/admin/shop/customers_controller_spec.rb",
267
+ "spec/controllers/admin/shop/orders_controller_spec.rb",
268
+ "spec/controllers/admin/shop/packages/packings_controller_spec.rb",
269
+ "spec/controllers/admin/shop/packages_controller_spec.rb",
150
270
  "spec/controllers/admin/shop/products/images_controller_spec.rb",
271
+ "spec/controllers/admin/shop/products/variant_templates_controller_spec.rb",
272
+ "spec/controllers/admin/shop/products/variants_controller_spec.rb",
151
273
  "spec/controllers/admin/shop/products_controller_spec.rb",
274
+ "spec/controllers/admin/shop/variants_controller_spec.rb",
152
275
  "spec/controllers/admin/shops_controller_spec.rb",
153
- "spec/controllers/shop/categories_controller_spec.rb",
154
- "spec/controllers/shop/line_items_controller_spec.rb",
155
- "spec/controllers/shop/orders_controller_specs.rb",
156
- "spec/controllers/shop/products_controller_spec.rb",
157
276
  "spec/datasets/forms.rb",
158
- "spec/datasets/images.rb",
159
277
  "spec/datasets/shop_addresses.rb",
160
278
  "spec/datasets/shop_categories.rb",
161
279
  "spec/datasets/shop_customers.rb",
280
+ "spec/datasets/shop_groups.rb",
162
281
  "spec/datasets/shop_line_items.rb",
163
282
  "spec/datasets/shop_orders.rb",
283
+ "spec/datasets/shop_packages.rb",
284
+ "spec/datasets/shop_payments.rb",
285
+ "spec/datasets/shop_product_attachments.rb",
286
+ "spec/datasets/shop_product_variants.rb",
164
287
  "spec/datasets/shop_products.rb",
288
+ "spec/datasets/shop_variants.rb",
165
289
  "spec/helpers/nested_tag_helper.rb",
166
290
  "spec/lib/shop/models/image_spec.rb",
167
291
  "spec/lib/shop/models/page_spec.rb",
@@ -172,34 +296,35 @@ Gem::Specification.new do |s|
172
296
  "spec/lib/shop/tags/core_spec.rb",
173
297
  "spec/lib/shop/tags/helpers_spec.rb",
174
298
  "spec/lib/shop/tags/item_spec.rb",
299
+ "spec/lib/shop/tags/package_spec.rb",
175
300
  "spec/lib/shop/tags/product_spec.rb",
301
+ "spec/lib/shop/tags/product_variant_spec.rb",
176
302
  "spec/lib/shop/tags/responses_spec.rb",
177
303
  "spec/matchers/comparison.rb",
178
304
  "spec/matchers/render_matcher.rb",
305
+ "spec/models/form_address_spec.rb",
179
306
  "spec/models/form_checkout_spec.rb",
307
+ "spec/models/shop_address_spec.rb",
180
308
  "spec/models/shop_category_page_spec.rb",
181
309
  "spec/models/shop_category_spec.rb",
310
+ "spec/models/shop_customer_spec.rb",
311
+ "spec/models/shop_group_spec.rb",
182
312
  "spec/models/shop_line_item_spec.rb",
183
313
  "spec/models/shop_order_spec.rb",
314
+ "spec/models/shop_package_spec.rb",
315
+ "spec/models/shop_packing_spec.rb",
316
+ "spec/models/shop_payment_spec.rb",
184
317
  "spec/models/shop_product_attachment_spec.rb",
185
318
  "spec/models/shop_product_page_spec.rb",
186
319
  "spec/models/shop_product_spec.rb",
320
+ "spec/models/shop_product_variant_spec.rb",
321
+ "spec/models/shop_variant_spec.rb",
187
322
  "spec/spec.opts",
188
323
  "spec/spec_helper.rb",
189
324
  "vendor/plugins/acts_as_list/README",
190
325
  "vendor/plugins/acts_as_list/init.rb",
191
326
  "vendor/plugins/acts_as_list/lib/active_record/acts/list.rb",
192
- "vendor/plugins/acts_as_list/test/list_test.rb",
193
- "vendor/plugins/json_fields/.gitignore",
194
- "vendor/plugins/json_fields/MIT-LICENSE",
195
- "vendor/plugins/json_fields/README.rdoc",
196
- "vendor/plugins/json_fields/Rakefile",
197
- "vendor/plugins/json_fields/init.rb",
198
- "vendor/plugins/json_fields/lib/json_fields.rb",
199
- "vendor/plugins/json_fields/spec/lib/json_fields_spec.rb",
200
- "vendor/plugins/json_fields/spec/spec.opts",
201
- "vendor/plugins/json_fields/spec/spec_helper.rb",
202
- "vendor/plugins/json_fields/spec/test_models.rb"
327
+ "vendor/plugins/acts_as_list/test/list_test.rb"
203
328
  ]
204
329
  s.homepage = %q{http://github.com/squaretalent/radiant-shop-extension}
205
330
  s.rdoc_options = ["--charset=UTF-8"]
@@ -208,21 +333,29 @@ Gem::Specification.new do |s|
208
333
  s.summary = %q{Shop Extension for Radiant CMS}
209
334
  s.test_files = [
210
335
  "spec/controllers/admin/shop/categories_controller_spec.rb",
336
+ "spec/controllers/admin/shop/customers_controller_spec.rb",
337
+ "spec/controllers/admin/shop/orders_controller_spec.rb",
338
+ "spec/controllers/admin/shop/packages/packings_controller_spec.rb",
339
+ "spec/controllers/admin/shop/packages_controller_spec.rb",
211
340
  "spec/controllers/admin/shop/products/images_controller_spec.rb",
341
+ "spec/controllers/admin/shop/products/variant_templates_controller_spec.rb",
342
+ "spec/controllers/admin/shop/products/variants_controller_spec.rb",
212
343
  "spec/controllers/admin/shop/products_controller_spec.rb",
344
+ "spec/controllers/admin/shop/variants_controller_spec.rb",
213
345
  "spec/controllers/admin/shops_controller_spec.rb",
214
- "spec/controllers/shop/categories_controller_spec.rb",
215
- "spec/controllers/shop/line_items_controller_spec.rb",
216
- "spec/controllers/shop/orders_controller_specs.rb",
217
- "spec/controllers/shop/products_controller_spec.rb",
218
346
  "spec/datasets/forms.rb",
219
- "spec/datasets/images.rb",
220
347
  "spec/datasets/shop_addresses.rb",
221
348
  "spec/datasets/shop_categories.rb",
222
349
  "spec/datasets/shop_customers.rb",
350
+ "spec/datasets/shop_groups.rb",
223
351
  "spec/datasets/shop_line_items.rb",
224
352
  "spec/datasets/shop_orders.rb",
353
+ "spec/datasets/shop_packages.rb",
354
+ "spec/datasets/shop_payments.rb",
355
+ "spec/datasets/shop_product_attachments.rb",
356
+ "spec/datasets/shop_product_variants.rb",
225
357
  "spec/datasets/shop_products.rb",
358
+ "spec/datasets/shop_variants.rb",
226
359
  "spec/helpers/nested_tag_helper.rb",
227
360
  "spec/lib/shop/models/image_spec.rb",
228
361
  "spec/lib/shop/models/page_spec.rb",
@@ -233,18 +366,29 @@ Gem::Specification.new do |s|
233
366
  "spec/lib/shop/tags/core_spec.rb",
234
367
  "spec/lib/shop/tags/helpers_spec.rb",
235
368
  "spec/lib/shop/tags/item_spec.rb",
369
+ "spec/lib/shop/tags/package_spec.rb",
236
370
  "spec/lib/shop/tags/product_spec.rb",
371
+ "spec/lib/shop/tags/product_variant_spec.rb",
237
372
  "spec/lib/shop/tags/responses_spec.rb",
238
373
  "spec/matchers/comparison.rb",
239
374
  "spec/matchers/render_matcher.rb",
375
+ "spec/models/form_address_spec.rb",
240
376
  "spec/models/form_checkout_spec.rb",
377
+ "spec/models/shop_address_spec.rb",
241
378
  "spec/models/shop_category_page_spec.rb",
242
379
  "spec/models/shop_category_spec.rb",
380
+ "spec/models/shop_customer_spec.rb",
381
+ "spec/models/shop_group_spec.rb",
243
382
  "spec/models/shop_line_item_spec.rb",
244
383
  "spec/models/shop_order_spec.rb",
384
+ "spec/models/shop_package_spec.rb",
385
+ "spec/models/shop_packing_spec.rb",
386
+ "spec/models/shop_payment_spec.rb",
245
387
  "spec/models/shop_product_attachment_spec.rb",
246
388
  "spec/models/shop_product_page_spec.rb",
247
389
  "spec/models/shop_product_spec.rb",
390
+ "spec/models/shop_product_variant_spec.rb",
391
+ "spec/models/shop_variant_spec.rb",
248
392
  "spec/spec_helper.rb"
249
393
  ]
250
394