tienda 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (193) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +35 -0
  4. data/app/assets/images/tienda/chosen-sprite.png +0 -0
  5. data/app/assets/images/tienda/chosen-sprite@2x.png +0 -0
  6. data/app/assets/images/tienda/document.svg +1 -0
  7. data/app/assets/images/tienda/icons/bag.svg +1 -0
  8. data/app/assets/images/tienda/icons/balance.svg +1 -0
  9. data/app/assets/images/tienda/icons/box.svg +1 -0
  10. data/app/assets/images/tienda/icons/building.svg +1 -0
  11. data/app/assets/images/tienda/icons/chart.svg +1 -0
  12. data/app/assets/images/tienda/icons/chat.svg +1 -0
  13. data/app/assets/images/tienda/icons/checkbox.svg +1 -0
  14. data/app/assets/images/tienda/icons/checkbox2.svg +1 -0
  15. data/app/assets/images/tienda/icons/cloud.svg +1 -0
  16. data/app/assets/images/tienda/icons/cone.svg +1 -0
  17. data/app/assets/images/tienda/icons/credit_card.svg +1 -0
  18. data/app/assets/images/tienda/icons/currency.svg +1 -0
  19. data/app/assets/images/tienda/icons/edit.svg +14 -0
  20. data/app/assets/images/tienda/icons/flowchart.svg +1 -0
  21. data/app/assets/images/tienda/icons/gift.svg +1 -0
  22. data/app/assets/images/tienda/icons/globe.svg +1 -0
  23. data/app/assets/images/tienda/icons/id.svg +1 -0
  24. data/app/assets/images/tienda/icons/id2.svg +1 -0
  25. data/app/assets/images/tienda/icons/locked.svg +1 -0
  26. data/app/assets/images/tienda/icons/report.svg +1 -0
  27. data/app/assets/images/tienda/icons/search.svg +1 -0
  28. data/app/assets/images/tienda/icons/support.svg +1 -0
  29. data/app/assets/images/tienda/icons/tags.svg +1 -0
  30. data/app/assets/images/tienda/icons/toolbox.svg +1 -0
  31. data/app/assets/images/tienda/icons/unlocked.svg +1 -0
  32. data/app/assets/images/tienda/icons/wallet.svg +1 -0
  33. data/app/assets/images/tienda/logo.svg +47 -0
  34. data/app/assets/images/tienda/move.svg +1 -0
  35. data/app/assets/images/tienda/shoppe.svg +25 -0
  36. data/app/assets/images/tienda/square.svg +9 -0
  37. data/app/assets/images/tienda/statuses/accepted.svg +14 -0
  38. data/app/assets/images/tienda/statuses/paid.svg +16 -0
  39. data/app/assets/images/tienda/statuses/received.svg +15 -0
  40. data/app/assets/images/tienda/statuses/rejected.svg +14 -0
  41. data/app/assets/images/tienda/statuses/shipped.svg +14 -0
  42. data/app/assets/images/tienda/table-tear-off.png +0 -0
  43. data/app/assets/javascripts/tienda/application.coffee +119 -0
  44. data/app/assets/javascripts/tienda/chosen.jquery.js +1166 -0
  45. data/app/assets/javascripts/tienda/jquery_ui.js +6 -0
  46. data/app/assets/javascripts/tienda/mousetrap.js +9 -0
  47. data/app/assets/javascripts/tienda/order_form.coffee +47 -0
  48. data/app/assets/stylesheets/tienda/application.scss +585 -0
  49. data/app/assets/stylesheets/tienda/chosen.scss +424 -0
  50. data/app/assets/stylesheets/tienda/dialog.scss +25 -0
  51. data/app/assets/stylesheets/tienda/elements.scss +79 -0
  52. data/app/assets/stylesheets/tienda/printable.scss +67 -0
  53. data/app/assets/stylesheets/tienda/reset.scss +93 -0
  54. data/app/assets/stylesheets/tienda/sub.scss +106 -0
  55. data/app/assets/stylesheets/tienda/variables.scss +1 -0
  56. data/app/controllers/tienda/application_controller.rb +46 -0
  57. data/app/controllers/tienda/attachments_controller.rb +14 -0
  58. data/app/controllers/tienda/countries_controller.rb +47 -0
  59. data/app/controllers/tienda/dashboard_controller.rb +9 -0
  60. data/app/controllers/tienda/delivery_service_prices_controller.rb +45 -0
  61. data/app/controllers/tienda/delivery_services_controller.rb +47 -0
  62. data/app/controllers/tienda/orders_controller.rb +90 -0
  63. data/app/controllers/tienda/payments_controller.rb +33 -0
  64. data/app/controllers/tienda/product_categories_controller.rb +47 -0
  65. data/app/controllers/tienda/products_controller.rb +58 -0
  66. data/app/controllers/tienda/sessions_controller.rb +34 -0
  67. data/app/controllers/tienda/settings_controller.rb +16 -0
  68. data/app/controllers/tienda/stock_level_adjustments_controller.rb +40 -0
  69. data/app/controllers/tienda/tax_rates_controller.rb +49 -0
  70. data/app/controllers/tienda/users_controller.rb +53 -0
  71. data/app/controllers/tienda/variants_controller.rb +50 -0
  72. data/app/helpers/tienda/application_helper.rb +60 -0
  73. data/app/mailers/tienda/order_mailer.rb +25 -0
  74. data/app/mailers/tienda/user_mailer.rb +10 -0
  75. data/app/models/tienda/country.rb +27 -0
  76. data/app/models/tienda/delivery_service.rb +33 -0
  77. data/app/models/tienda/delivery_service_price.rb +31 -0
  78. data/app/models/tienda/order/actions.rb +98 -0
  79. data/app/models/tienda/order/billing.rb +105 -0
  80. data/app/models/tienda/order/delivery.rb +229 -0
  81. data/app/models/tienda/order/states.rb +69 -0
  82. data/app/models/tienda/order.rb +93 -0
  83. data/app/models/tienda/order_item.rb +239 -0
  84. data/app/models/tienda/payment.rb +80 -0
  85. data/app/models/tienda/product/product_attributes.rb +20 -0
  86. data/app/models/tienda/product/variants.rb +51 -0
  87. data/app/models/tienda/product.rb +169 -0
  88. data/app/models/tienda/product_attribute.rb +66 -0
  89. data/app/models/tienda/product_category.rb +23 -0
  90. data/app/models/tienda/setting.rb +68 -0
  91. data/app/models/tienda/stock_level_adjustment.rb +19 -0
  92. data/app/models/tienda/tax_rate.rb +46 -0
  93. data/app/models/tienda/user.rb +49 -0
  94. data/app/validators/permalink_validator.rb +7 -0
  95. data/app/views/layouts/tienda/application.html.haml +34 -0
  96. data/app/views/layouts/tienda/printable.html.haml +11 -0
  97. data/app/views/layouts/tienda/sub.html.haml +10 -0
  98. data/app/views/tienda/countries/_form.html.haml +35 -0
  99. data/app/views/tienda/countries/edit.html.haml +6 -0
  100. data/app/views/tienda/countries/index.html.haml +25 -0
  101. data/app/views/tienda/countries/new.html.haml +7 -0
  102. data/app/views/tienda/delivery_service_prices/_form.html.haml +44 -0
  103. data/app/views/tienda/delivery_service_prices/edit.html.haml +6 -0
  104. data/app/views/tienda/delivery_service_prices/index.html.haml +23 -0
  105. data/app/views/tienda/delivery_service_prices/new.html.haml +6 -0
  106. data/app/views/tienda/delivery_services/_form.html.haml +38 -0
  107. data/app/views/tienda/delivery_services/edit.html.haml +9 -0
  108. data/app/views/tienda/delivery_services/index.html.haml +27 -0
  109. data/app/views/tienda/delivery_services/new.html.haml +6 -0
  110. data/app/views/tienda/order_mailer/accepted.text.erb +12 -0
  111. data/app/views/tienda/order_mailer/received.text.erb +12 -0
  112. data/app/views/tienda/order_mailer/rejected.text.erb +10 -0
  113. data/app/views/tienda/order_mailer/shipped.text.erb +16 -0
  114. data/app/views/tienda/orders/_form.html.haml +55 -0
  115. data/app/views/tienda/orders/_order_details.html.haml +57 -0
  116. data/app/views/tienda/orders/_order_items.html.haml +38 -0
  117. data/app/views/tienda/orders/_order_items_form.html.haml +61 -0
  118. data/app/views/tienda/orders/_payments_form.html.haml +15 -0
  119. data/app/views/tienda/orders/_payments_table.html.haml +37 -0
  120. data/app/views/tienda/orders/_search_form.html.haml +24 -0
  121. data/app/views/tienda/orders/_status_bar.html.haml +35 -0
  122. data/app/views/tienda/orders/despatch_note.html.haml +45 -0
  123. data/app/views/tienda/orders/edit.html.haml +21 -0
  124. data/app/views/tienda/orders/index.html.haml +39 -0
  125. data/app/views/tienda/orders/new.html.haml +14 -0
  126. data/app/views/tienda/orders/show.html.haml +25 -0
  127. data/app/views/tienda/payments/refund.html.haml +13 -0
  128. data/app/views/tienda/product_categories/_form.html.haml +26 -0
  129. data/app/views/tienda/product_categories/edit.html.haml +6 -0
  130. data/app/views/tienda/product_categories/index.html.haml +19 -0
  131. data/app/views/tienda/product_categories/new.html.haml +6 -0
  132. data/app/views/tienda/products/_form.html.haml +118 -0
  133. data/app/views/tienda/products/_table.html.haml +42 -0
  134. data/app/views/tienda/products/edit.html.haml +8 -0
  135. data/app/views/tienda/products/import.html.haml +63 -0
  136. data/app/views/tienda/products/index.html.haml +9 -0
  137. data/app/views/tienda/products/new.html.haml +7 -0
  138. data/app/views/tienda/sessions/new.html.haml +12 -0
  139. data/app/views/tienda/sessions/reset.html.haml +12 -0
  140. data/app/views/tienda/settings/edit.html.haml +19 -0
  141. data/app/views/tienda/shared/error.html.haml +6 -0
  142. data/app/views/tienda/stock_level_adjustments/index.html.haml +40 -0
  143. data/app/views/tienda/tax_rates/form.html.haml +28 -0
  144. data/app/views/tienda/tax_rates/index.html.haml +17 -0
  145. data/app/views/tienda/user_mailer/new_password.text.erb +9 -0
  146. data/app/views/tienda/users/_form.html.haml +27 -0
  147. data/app/views/tienda/users/edit.html.haml +5 -0
  148. data/app/views/tienda/users/index.html.haml +17 -0
  149. data/app/views/tienda/users/new.html.haml +7 -0
  150. data/app/views/tienda/variants/form.html.haml +66 -0
  151. data/app/views/tienda/variants/index.html.haml +33 -0
  152. data/config/locales/en.yml +650 -0
  153. data/config/locales/pl.yml +650 -0
  154. data/config/locales/pt-BR.yml +643 -0
  155. data/config/routes.rb +42 -0
  156. data/db/countries.txt +252 -0
  157. data/db/migrate/20150124094549_create_tienda_initial_schema.rb +184 -0
  158. data/db/seeds.rb +128 -0
  159. data/db/seeds_data/poe400.jpg +0 -0
  160. data/db/seeds_data/snom-870-blk.jpg +0 -0
  161. data/db/seeds_data/snom-870-grey.jpg +0 -0
  162. data/db/seeds_data/snom-mm2.jpg +0 -0
  163. data/db/seeds_data/spa303.jpg +0 -0
  164. data/db/seeds_data/t18p.jpg +0 -0
  165. data/db/seeds_data/t20p.jpg +0 -0
  166. data/db/seeds_data/t22p.jpg +0 -0
  167. data/db/seeds_data/t26p.jpg +0 -0
  168. data/db/seeds_data/t41pn.jpg +0 -0
  169. data/db/seeds_data/t46gn.jpg +0 -0
  170. data/db/seeds_data/w52p.jpg +0 -0
  171. data/db/seeds_data/yhs32.jpg +0 -0
  172. data/lib/tasks/tienda.rake +29 -0
  173. data/lib/tienda/associated_countries.rb +20 -0
  174. data/lib/tienda/country_importer.rb +14 -0
  175. data/lib/tienda/default_navigation.rb +20 -0
  176. data/lib/tienda/engine.rb +48 -0
  177. data/lib/tienda/error.rb +21 -0
  178. data/lib/tienda/errors/inappropriate_delivery_service.rb +6 -0
  179. data/lib/tienda/errors/insufficient_stock_to_fulfil.rb +15 -0
  180. data/lib/tienda/errors/invalid_configuration.rb +6 -0
  181. data/lib/tienda/errors/not_enough_stock.rb +15 -0
  182. data/lib/tienda/errors/payment_declined.rb +6 -0
  183. data/lib/tienda/errors/refund_failed.rb +6 -0
  184. data/lib/tienda/errors/unorderable_item.rb +6 -0
  185. data/lib/tienda/navigation_manager.rb +81 -0
  186. data/lib/tienda/orderable_item.rb +39 -0
  187. data/lib/tienda/settings.rb +26 -0
  188. data/lib/tienda/settings_loader.rb +16 -0
  189. data/lib/tienda/setup_generator.rb +10 -0
  190. data/lib/tienda/version.rb +3 -0
  191. data/lib/tienda/view_helpers.rb +16 -0
  192. data/lib/tienda.rb +59 -0
  193. metadata +604 -0
metadata ADDED
@@ -0,0 +1,604 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tienda
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Gonzalo Robaina
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-01-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 4.0.0
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '5.0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 4.0.0
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '5.0'
33
+ - !ruby/object:Gem::Dependency
34
+ name: bcrypt
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '3.1'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 3.1.2
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '3.1'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 3.1.2
53
+ - !ruby/object:Gem::Dependency
54
+ name: rails-i18n
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: 4.0.0
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: 4.0.0
63
+ type: :runtime
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: 4.0.0
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: 4.0.0
73
+ - !ruby/object:Gem::Dependency
74
+ name: ransack
75
+ requirement: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - "~>"
78
+ - !ruby/object:Gem::Version
79
+ version: '1.2'
80
+ type: :runtime
81
+ prerelease: false
82
+ version_requirements: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - "~>"
85
+ - !ruby/object:Gem::Version
86
+ version: '1.2'
87
+ - !ruby/object:Gem::Dependency
88
+ name: kaminari
89
+ requirement: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: 0.14.1
94
+ - - "<"
95
+ - !ruby/object:Gem::Version
96
+ version: '0.16'
97
+ type: :runtime
98
+ prerelease: false
99
+ version_requirements: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: 0.14.1
104
+ - - "<"
105
+ - !ruby/object:Gem::Version
106
+ version: '0.16'
107
+ - !ruby/object:Gem::Dependency
108
+ name: haml
109
+ requirement: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - "~>"
112
+ - !ruby/object:Gem::Version
113
+ version: '4.0'
114
+ type: :runtime
115
+ prerelease: false
116
+ version_requirements: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - "~>"
119
+ - !ruby/object:Gem::Version
120
+ version: '4.0'
121
+ - !ruby/object:Gem::Dependency
122
+ name: dynamic_form
123
+ requirement: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - "~>"
126
+ - !ruby/object:Gem::Version
127
+ version: '1.1'
128
+ - - ">="
129
+ - !ruby/object:Gem::Version
130
+ version: 1.1.4
131
+ type: :runtime
132
+ prerelease: false
133
+ version_requirements: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - "~>"
136
+ - !ruby/object:Gem::Version
137
+ version: '1.1'
138
+ - - ">="
139
+ - !ruby/object:Gem::Version
140
+ version: 1.1.4
141
+ - !ruby/object:Gem::Dependency
142
+ name: jquery-rails
143
+ requirement: !ruby/object:Gem::Requirement
144
+ requirements:
145
+ - - "~>"
146
+ - !ruby/object:Gem::Version
147
+ version: '3'
148
+ type: :runtime
149
+ prerelease: false
150
+ version_requirements: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - "~>"
153
+ - !ruby/object:Gem::Version
154
+ version: '3'
155
+ - !ruby/object:Gem::Dependency
156
+ name: coffee-rails
157
+ requirement: !ruby/object:Gem::Requirement
158
+ requirements:
159
+ - - "~>"
160
+ - !ruby/object:Gem::Version
161
+ version: '4'
162
+ type: :runtime
163
+ prerelease: false
164
+ version_requirements: !ruby/object:Gem::Requirement
165
+ requirements:
166
+ - - "~>"
167
+ - !ruby/object:Gem::Version
168
+ version: '4'
169
+ - !ruby/object:Gem::Dependency
170
+ name: sass-rails
171
+ requirement: !ruby/object:Gem::Requirement
172
+ requirements:
173
+ - - "~>"
174
+ - !ruby/object:Gem::Version
175
+ version: '4.0'
176
+ type: :runtime
177
+ prerelease: false
178
+ version_requirements: !ruby/object:Gem::Requirement
179
+ requirements:
180
+ - - "~>"
181
+ - !ruby/object:Gem::Version
182
+ version: '4.0'
183
+ - !ruby/object:Gem::Dependency
184
+ name: uglifier
185
+ requirement: !ruby/object:Gem::Requirement
186
+ requirements:
187
+ - - ">="
188
+ - !ruby/object:Gem::Version
189
+ version: '2.2'
190
+ - - "<"
191
+ - !ruby/object:Gem::Version
192
+ version: '3.0'
193
+ type: :runtime
194
+ prerelease: false
195
+ version_requirements: !ruby/object:Gem::Requirement
196
+ requirements:
197
+ - - ">="
198
+ - !ruby/object:Gem::Version
199
+ version: '2.2'
200
+ - - "<"
201
+ - !ruby/object:Gem::Version
202
+ version: '3.0'
203
+ - !ruby/object:Gem::Dependency
204
+ name: roo
205
+ requirement: !ruby/object:Gem::Requirement
206
+ requirements:
207
+ - - ">="
208
+ - !ruby/object:Gem::Version
209
+ version: 1.13.0
210
+ - - "<"
211
+ - !ruby/object:Gem::Version
212
+ version: '1.14'
213
+ type: :runtime
214
+ prerelease: false
215
+ version_requirements: !ruby/object:Gem::Requirement
216
+ requirements:
217
+ - - ">="
218
+ - !ruby/object:Gem::Version
219
+ version: 1.13.0
220
+ - - "<"
221
+ - !ruby/object:Gem::Version
222
+ version: '1.14'
223
+ - !ruby/object:Gem::Dependency
224
+ name: nifty-key-value-store
225
+ requirement: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - ">="
228
+ - !ruby/object:Gem::Version
229
+ version: 1.0.1
230
+ - - "<"
231
+ - !ruby/object:Gem::Version
232
+ version: 2.0.0
233
+ type: :runtime
234
+ prerelease: false
235
+ version_requirements: !ruby/object:Gem::Requirement
236
+ requirements:
237
+ - - ">="
238
+ - !ruby/object:Gem::Version
239
+ version: 1.0.1
240
+ - - "<"
241
+ - !ruby/object:Gem::Version
242
+ version: 2.0.0
243
+ - !ruby/object:Gem::Dependency
244
+ name: nifty-utils
245
+ requirement: !ruby/object:Gem::Requirement
246
+ requirements:
247
+ - - "~>"
248
+ - !ruby/object:Gem::Version
249
+ version: '1.0'
250
+ type: :runtime
251
+ prerelease: false
252
+ version_requirements: !ruby/object:Gem::Requirement
253
+ requirements:
254
+ - - "~>"
255
+ - !ruby/object:Gem::Version
256
+ version: '1.0'
257
+ - !ruby/object:Gem::Dependency
258
+ name: nifty-attachments
259
+ requirement: !ruby/object:Gem::Requirement
260
+ requirements:
261
+ - - ">="
262
+ - !ruby/object:Gem::Version
263
+ version: 1.0.3
264
+ - - "<"
265
+ - !ruby/object:Gem::Version
266
+ version: 2.0.0
267
+ type: :runtime
268
+ prerelease: false
269
+ version_requirements: !ruby/object:Gem::Requirement
270
+ requirements:
271
+ - - ">="
272
+ - !ruby/object:Gem::Version
273
+ version: 1.0.3
274
+ - - "<"
275
+ - !ruby/object:Gem::Version
276
+ version: 2.0.0
277
+ - !ruby/object:Gem::Dependency
278
+ name: nifty-dialog
279
+ requirement: !ruby/object:Gem::Requirement
280
+ requirements:
281
+ - - "~>"
282
+ - !ruby/object:Gem::Version
283
+ version: 1.0.7
284
+ - - ">="
285
+ - !ruby/object:Gem::Version
286
+ version: 1.0.7
287
+ type: :runtime
288
+ prerelease: false
289
+ version_requirements: !ruby/object:Gem::Requirement
290
+ requirements:
291
+ - - "~>"
292
+ - !ruby/object:Gem::Version
293
+ version: 1.0.7
294
+ - - ">="
295
+ - !ruby/object:Gem::Version
296
+ version: 1.0.7
297
+ - !ruby/object:Gem::Dependency
298
+ name: sqlite3
299
+ requirement: !ruby/object:Gem::Requirement
300
+ requirements:
301
+ - - "~>"
302
+ - !ruby/object:Gem::Version
303
+ version: '1.3'
304
+ type: :development
305
+ prerelease: false
306
+ version_requirements: !ruby/object:Gem::Requirement
307
+ requirements:
308
+ - - "~>"
309
+ - !ruby/object:Gem::Version
310
+ version: '1.3'
311
+ - !ruby/object:Gem::Dependency
312
+ name: mysql2
313
+ requirement: !ruby/object:Gem::Requirement
314
+ requirements:
315
+ - - "~>"
316
+ - !ruby/object:Gem::Version
317
+ version: '0.3'
318
+ type: :development
319
+ prerelease: false
320
+ version_requirements: !ruby/object:Gem::Requirement
321
+ requirements:
322
+ - - "~>"
323
+ - !ruby/object:Gem::Version
324
+ version: '0.3'
325
+ - !ruby/object:Gem::Dependency
326
+ name: yard
327
+ requirement: !ruby/object:Gem::Requirement
328
+ requirements:
329
+ - - "~>"
330
+ - !ruby/object:Gem::Version
331
+ version: '0'
332
+ type: :development
333
+ prerelease: false
334
+ version_requirements: !ruby/object:Gem::Requirement
335
+ requirements:
336
+ - - "~>"
337
+ - !ruby/object:Gem::Version
338
+ version: '0'
339
+ - !ruby/object:Gem::Dependency
340
+ name: yard-activerecord
341
+ requirement: !ruby/object:Gem::Requirement
342
+ requirements:
343
+ - - "~>"
344
+ - !ruby/object:Gem::Version
345
+ version: '0'
346
+ type: :development
347
+ prerelease: false
348
+ version_requirements: !ruby/object:Gem::Requirement
349
+ requirements:
350
+ - - "~>"
351
+ - !ruby/object:Gem::Version
352
+ version: '0'
353
+ - !ruby/object:Gem::Dependency
354
+ name: markdown
355
+ requirement: !ruby/object:Gem::Requirement
356
+ requirements:
357
+ - - "~>"
358
+ - !ruby/object:Gem::Version
359
+ version: '1.0'
360
+ type: :development
361
+ prerelease: false
362
+ version_requirements: !ruby/object:Gem::Requirement
363
+ requirements:
364
+ - - "~>"
365
+ - !ruby/object:Gem::Version
366
+ version: '1.0'
367
+ - !ruby/object:Gem::Dependency
368
+ name: factory_girl_rails
369
+ requirement: !ruby/object:Gem::Requirement
370
+ requirements:
371
+ - - "~>"
372
+ - !ruby/object:Gem::Version
373
+ version: '4.0'
374
+ type: :development
375
+ prerelease: false
376
+ version_requirements: !ruby/object:Gem::Requirement
377
+ requirements:
378
+ - - "~>"
379
+ - !ruby/object:Gem::Version
380
+ version: '4.0'
381
+ description: A full Rails engine providing e-commerce functionality for any Rails
382
+ 4 application. Based on Shoppe Rails Gem.
383
+ email:
384
+ - gonzalo@robaina.me
385
+ executables: []
386
+ extensions: []
387
+ extra_rdoc_files: []
388
+ files:
389
+ - MIT-LICENSE
390
+ - Rakefile
391
+ - app/assets/images/tienda/chosen-sprite.png
392
+ - app/assets/images/tienda/chosen-sprite@2x.png
393
+ - app/assets/images/tienda/document.svg
394
+ - app/assets/images/tienda/icons/bag.svg
395
+ - app/assets/images/tienda/icons/balance.svg
396
+ - app/assets/images/tienda/icons/box.svg
397
+ - app/assets/images/tienda/icons/building.svg
398
+ - app/assets/images/tienda/icons/chart.svg
399
+ - app/assets/images/tienda/icons/chat.svg
400
+ - app/assets/images/tienda/icons/checkbox.svg
401
+ - app/assets/images/tienda/icons/checkbox2.svg
402
+ - app/assets/images/tienda/icons/cloud.svg
403
+ - app/assets/images/tienda/icons/cone.svg
404
+ - app/assets/images/tienda/icons/credit_card.svg
405
+ - app/assets/images/tienda/icons/currency.svg
406
+ - app/assets/images/tienda/icons/edit.svg
407
+ - app/assets/images/tienda/icons/flowchart.svg
408
+ - app/assets/images/tienda/icons/gift.svg
409
+ - app/assets/images/tienda/icons/globe.svg
410
+ - app/assets/images/tienda/icons/id.svg
411
+ - app/assets/images/tienda/icons/id2.svg
412
+ - app/assets/images/tienda/icons/locked.svg
413
+ - app/assets/images/tienda/icons/report.svg
414
+ - app/assets/images/tienda/icons/search.svg
415
+ - app/assets/images/tienda/icons/support.svg
416
+ - app/assets/images/tienda/icons/tags.svg
417
+ - app/assets/images/tienda/icons/toolbox.svg
418
+ - app/assets/images/tienda/icons/unlocked.svg
419
+ - app/assets/images/tienda/icons/wallet.svg
420
+ - app/assets/images/tienda/logo.svg
421
+ - app/assets/images/tienda/move.svg
422
+ - app/assets/images/tienda/shoppe.svg
423
+ - app/assets/images/tienda/square.svg
424
+ - app/assets/images/tienda/statuses/accepted.svg
425
+ - app/assets/images/tienda/statuses/paid.svg
426
+ - app/assets/images/tienda/statuses/received.svg
427
+ - app/assets/images/tienda/statuses/rejected.svg
428
+ - app/assets/images/tienda/statuses/shipped.svg
429
+ - app/assets/images/tienda/table-tear-off.png
430
+ - app/assets/javascripts/tienda/application.coffee
431
+ - app/assets/javascripts/tienda/chosen.jquery.js
432
+ - app/assets/javascripts/tienda/jquery_ui.js
433
+ - app/assets/javascripts/tienda/mousetrap.js
434
+ - app/assets/javascripts/tienda/order_form.coffee
435
+ - app/assets/stylesheets/tienda/application.scss
436
+ - app/assets/stylesheets/tienda/chosen.scss
437
+ - app/assets/stylesheets/tienda/dialog.scss
438
+ - app/assets/stylesheets/tienda/elements.scss
439
+ - app/assets/stylesheets/tienda/printable.scss
440
+ - app/assets/stylesheets/tienda/reset.scss
441
+ - app/assets/stylesheets/tienda/sub.scss
442
+ - app/assets/stylesheets/tienda/variables.scss
443
+ - app/controllers/tienda/application_controller.rb
444
+ - app/controllers/tienda/attachments_controller.rb
445
+ - app/controllers/tienda/countries_controller.rb
446
+ - app/controllers/tienda/dashboard_controller.rb
447
+ - app/controllers/tienda/delivery_service_prices_controller.rb
448
+ - app/controllers/tienda/delivery_services_controller.rb
449
+ - app/controllers/tienda/orders_controller.rb
450
+ - app/controllers/tienda/payments_controller.rb
451
+ - app/controllers/tienda/product_categories_controller.rb
452
+ - app/controllers/tienda/products_controller.rb
453
+ - app/controllers/tienda/sessions_controller.rb
454
+ - app/controllers/tienda/settings_controller.rb
455
+ - app/controllers/tienda/stock_level_adjustments_controller.rb
456
+ - app/controllers/tienda/tax_rates_controller.rb
457
+ - app/controllers/tienda/users_controller.rb
458
+ - app/controllers/tienda/variants_controller.rb
459
+ - app/helpers/tienda/application_helper.rb
460
+ - app/mailers/tienda/order_mailer.rb
461
+ - app/mailers/tienda/user_mailer.rb
462
+ - app/models/tienda/country.rb
463
+ - app/models/tienda/delivery_service.rb
464
+ - app/models/tienda/delivery_service_price.rb
465
+ - app/models/tienda/order.rb
466
+ - app/models/tienda/order/actions.rb
467
+ - app/models/tienda/order/billing.rb
468
+ - app/models/tienda/order/delivery.rb
469
+ - app/models/tienda/order/states.rb
470
+ - app/models/tienda/order_item.rb
471
+ - app/models/tienda/payment.rb
472
+ - app/models/tienda/product.rb
473
+ - app/models/tienda/product/product_attributes.rb
474
+ - app/models/tienda/product/variants.rb
475
+ - app/models/tienda/product_attribute.rb
476
+ - app/models/tienda/product_category.rb
477
+ - app/models/tienda/setting.rb
478
+ - app/models/tienda/stock_level_adjustment.rb
479
+ - app/models/tienda/tax_rate.rb
480
+ - app/models/tienda/user.rb
481
+ - app/validators/permalink_validator.rb
482
+ - app/views/layouts/tienda/application.html.haml
483
+ - app/views/layouts/tienda/printable.html.haml
484
+ - app/views/layouts/tienda/sub.html.haml
485
+ - app/views/tienda/countries/_form.html.haml
486
+ - app/views/tienda/countries/edit.html.haml
487
+ - app/views/tienda/countries/index.html.haml
488
+ - app/views/tienda/countries/new.html.haml
489
+ - app/views/tienda/delivery_service_prices/_form.html.haml
490
+ - app/views/tienda/delivery_service_prices/edit.html.haml
491
+ - app/views/tienda/delivery_service_prices/index.html.haml
492
+ - app/views/tienda/delivery_service_prices/new.html.haml
493
+ - app/views/tienda/delivery_services/_form.html.haml
494
+ - app/views/tienda/delivery_services/edit.html.haml
495
+ - app/views/tienda/delivery_services/index.html.haml
496
+ - app/views/tienda/delivery_services/new.html.haml
497
+ - app/views/tienda/order_mailer/accepted.text.erb
498
+ - app/views/tienda/order_mailer/received.text.erb
499
+ - app/views/tienda/order_mailer/rejected.text.erb
500
+ - app/views/tienda/order_mailer/shipped.text.erb
501
+ - app/views/tienda/orders/_form.html.haml
502
+ - app/views/tienda/orders/_order_details.html.haml
503
+ - app/views/tienda/orders/_order_items.html.haml
504
+ - app/views/tienda/orders/_order_items_form.html.haml
505
+ - app/views/tienda/orders/_payments_form.html.haml
506
+ - app/views/tienda/orders/_payments_table.html.haml
507
+ - app/views/tienda/orders/_search_form.html.haml
508
+ - app/views/tienda/orders/_status_bar.html.haml
509
+ - app/views/tienda/orders/despatch_note.html.haml
510
+ - app/views/tienda/orders/edit.html.haml
511
+ - app/views/tienda/orders/index.html.haml
512
+ - app/views/tienda/orders/new.html.haml
513
+ - app/views/tienda/orders/show.html.haml
514
+ - app/views/tienda/payments/refund.html.haml
515
+ - app/views/tienda/product_categories/_form.html.haml
516
+ - app/views/tienda/product_categories/edit.html.haml
517
+ - app/views/tienda/product_categories/index.html.haml
518
+ - app/views/tienda/product_categories/new.html.haml
519
+ - app/views/tienda/products/_form.html.haml
520
+ - app/views/tienda/products/_table.html.haml
521
+ - app/views/tienda/products/edit.html.haml
522
+ - app/views/tienda/products/import.html.haml
523
+ - app/views/tienda/products/index.html.haml
524
+ - app/views/tienda/products/new.html.haml
525
+ - app/views/tienda/sessions/new.html.haml
526
+ - app/views/tienda/sessions/reset.html.haml
527
+ - app/views/tienda/settings/edit.html.haml
528
+ - app/views/tienda/shared/error.html.haml
529
+ - app/views/tienda/stock_level_adjustments/index.html.haml
530
+ - app/views/tienda/tax_rates/form.html.haml
531
+ - app/views/tienda/tax_rates/index.html.haml
532
+ - app/views/tienda/user_mailer/new_password.text.erb
533
+ - app/views/tienda/users/_form.html.haml
534
+ - app/views/tienda/users/edit.html.haml
535
+ - app/views/tienda/users/index.html.haml
536
+ - app/views/tienda/users/new.html.haml
537
+ - app/views/tienda/variants/form.html.haml
538
+ - app/views/tienda/variants/index.html.haml
539
+ - config/locales/en.yml
540
+ - config/locales/pl.yml
541
+ - config/locales/pt-BR.yml
542
+ - config/routes.rb
543
+ - db/countries.txt
544
+ - db/migrate/20150124094549_create_tienda_initial_schema.rb
545
+ - db/seeds.rb
546
+ - db/seeds_data/poe400.jpg
547
+ - db/seeds_data/snom-870-blk.jpg
548
+ - db/seeds_data/snom-870-grey.jpg
549
+ - db/seeds_data/snom-mm2.jpg
550
+ - db/seeds_data/spa303.jpg
551
+ - db/seeds_data/t18p.jpg
552
+ - db/seeds_data/t20p.jpg
553
+ - db/seeds_data/t22p.jpg
554
+ - db/seeds_data/t26p.jpg
555
+ - db/seeds_data/t41pn.jpg
556
+ - db/seeds_data/t46gn.jpg
557
+ - db/seeds_data/w52p.jpg
558
+ - db/seeds_data/yhs32.jpg
559
+ - lib/tasks/tienda.rake
560
+ - lib/tienda.rb
561
+ - lib/tienda/associated_countries.rb
562
+ - lib/tienda/country_importer.rb
563
+ - lib/tienda/default_navigation.rb
564
+ - lib/tienda/engine.rb
565
+ - lib/tienda/error.rb
566
+ - lib/tienda/errors/inappropriate_delivery_service.rb
567
+ - lib/tienda/errors/insufficient_stock_to_fulfil.rb
568
+ - lib/tienda/errors/invalid_configuration.rb
569
+ - lib/tienda/errors/not_enough_stock.rb
570
+ - lib/tienda/errors/payment_declined.rb
571
+ - lib/tienda/errors/refund_failed.rb
572
+ - lib/tienda/errors/unorderable_item.rb
573
+ - lib/tienda/navigation_manager.rb
574
+ - lib/tienda/orderable_item.rb
575
+ - lib/tienda/settings.rb
576
+ - lib/tienda/settings_loader.rb
577
+ - lib/tienda/setup_generator.rb
578
+ - lib/tienda/version.rb
579
+ - lib/tienda/view_helpers.rb
580
+ homepage: http://gonzalo.robaina.me/tienda
581
+ licenses:
582
+ - MIT
583
+ metadata: {}
584
+ post_install_message:
585
+ rdoc_options: []
586
+ require_paths:
587
+ - lib
588
+ required_ruby_version: !ruby/object:Gem::Requirement
589
+ requirements:
590
+ - - ">="
591
+ - !ruby/object:Gem::Version
592
+ version: '0'
593
+ required_rubygems_version: !ruby/object:Gem::Requirement
594
+ requirements:
595
+ - - ">="
596
+ - !ruby/object:Gem::Version
597
+ version: '0'
598
+ requirements: []
599
+ rubyforge_project:
600
+ rubygems_version: 2.4.3
601
+ signing_key:
602
+ specification_version: 4
603
+ summary: Just an e-commerce platform.
604
+ test_files: []