shoppe 1.0.2 → 1.0.3

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 (100) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/shoppe/table-tear-off.png +0 -0
  3. data/app/assets/javascripts/shoppe/application.coffee +2 -2
  4. data/app/assets/stylesheets/shoppe/application.scss +80 -37
  5. data/app/assets/stylesheets/shoppe/elements.scss +1 -2
  6. data/app/controllers/shoppe/attachments_controller.rb +3 -3
  7. data/app/controllers/shoppe/countries_controller.rb +13 -13
  8. data/app/controllers/shoppe/delivery_service_prices_controller.rb +11 -11
  9. data/app/controllers/shoppe/delivery_services_controller.rb +13 -13
  10. data/app/controllers/shoppe/orders_controller.rb +20 -20
  11. data/app/controllers/shoppe/payments_controller.rb +8 -8
  12. data/app/controllers/shoppe/product_categories_controller.rb +13 -13
  13. data/app/controllers/shoppe/products_controller.rb +24 -13
  14. data/app/controllers/shoppe/sessions_controller.rb +7 -7
  15. data/app/controllers/shoppe/settings_controller.rb +6 -6
  16. data/app/controllers/shoppe/stock_level_adjustments_controller.rb +5 -5
  17. data/app/controllers/shoppe/tax_rates_controller.rb +13 -13
  18. data/app/controllers/shoppe/users_controller.rb +15 -15
  19. data/app/controllers/shoppe/variants_controller.rb +13 -13
  20. data/app/helpers/shoppe/application_helper.rb +12 -12
  21. data/app/models/shoppe/order/actions.rb +17 -3
  22. data/app/models/shoppe/order/billing.rb +18 -18
  23. data/app/models/shoppe/order/delivery.rb +30 -31
  24. data/app/models/shoppe/order_item.rb +33 -34
  25. data/app/models/shoppe/payment.rb +15 -15
  26. data/app/models/shoppe/product.rb +82 -21
  27. data/app/models/shoppe/product/variants.rb +10 -10
  28. data/app/models/shoppe/product_category.rb +7 -7
  29. data/app/models/shoppe/stock_level_adjustment.rb +6 -6
  30. data/app/validators/permalink_validator.rb +7 -0
  31. data/app/views/layouts/shoppe/application.html.haml +10 -20
  32. data/app/views/shoppe/countries/_form.html.haml +15 -11
  33. data/app/views/shoppe/countries/edit.html.haml +5 -4
  34. data/app/views/shoppe/countries/index.html.haml +9 -9
  35. data/app/views/shoppe/countries/new.html.haml +6 -4
  36. data/app/views/shoppe/delivery_service_prices/_form.html.haml +16 -16
  37. data/app/views/shoppe/delivery_service_prices/edit.html.haml +5 -4
  38. data/app/views/shoppe/delivery_service_prices/index.html.haml +8 -9
  39. data/app/views/shoppe/delivery_service_prices/new.html.haml +5 -4
  40. data/app/views/shoppe/delivery_services/_form.html.haml +15 -14
  41. data/app/views/shoppe/delivery_services/edit.html.haml +7 -5
  42. data/app/views/shoppe/delivery_services/index.html.haml +11 -12
  43. data/app/views/shoppe/delivery_services/new.html.haml +5 -4
  44. data/app/views/shoppe/orders/_form.html.haml +19 -19
  45. data/app/views/shoppe/orders/_order_details.html.haml +20 -15
  46. data/app/views/shoppe/orders/_order_items.html.haml +6 -6
  47. data/app/views/shoppe/orders/_order_items_form.html.haml +11 -11
  48. data/app/views/shoppe/orders/_payments_form.html.haml +4 -4
  49. data/app/views/shoppe/orders/_payments_table.html.haml +12 -12
  50. data/app/views/shoppe/orders/_search_form.html.haml +10 -10
  51. data/app/views/shoppe/orders/_status_bar.html.haml +17 -13
  52. data/app/views/shoppe/orders/despatch_note.html.haml +15 -15
  53. data/app/views/shoppe/orders/edit.html.haml +8 -8
  54. data/app/views/shoppe/orders/index.html.haml +12 -12
  55. data/app/views/shoppe/orders/new.html.haml +7 -7
  56. data/app/views/shoppe/orders/show.html.haml +9 -12
  57. data/app/views/shoppe/payments/refund.html.haml +6 -7
  58. data/app/views/shoppe/product_categories/_form.html.haml +9 -9
  59. data/app/views/shoppe/product_categories/edit.html.haml +4 -4
  60. data/app/views/shoppe/product_categories/index.html.haml +5 -5
  61. data/app/views/shoppe/product_categories/new.html.haml +4 -3
  62. data/app/views/shoppe/products/_form.html.haml +49 -50
  63. data/app/views/shoppe/products/_table.html.haml +10 -10
  64. data/app/views/shoppe/products/edit.html.haml +6 -6
  65. data/app/views/shoppe/products/import.html.haml +63 -0
  66. data/app/views/shoppe/products/index.html.haml +6 -4
  67. data/app/views/shoppe/products/new.html.haml +6 -4
  68. data/app/views/shoppe/sessions/new.html.haml +5 -5
  69. data/app/views/shoppe/sessions/reset.html.haml +6 -5
  70. data/app/views/shoppe/settings/edit.html.haml +5 -5
  71. data/app/views/shoppe/shared/error.html.haml +3 -3
  72. data/app/views/shoppe/stock_level_adjustments/index.html.haml +13 -12
  73. data/app/views/shoppe/tax_rates/form.html.haml +13 -13
  74. data/app/views/shoppe/tax_rates/index.html.haml +5 -5
  75. data/app/views/shoppe/users/_form.html.haml +10 -11
  76. data/app/views/shoppe/users/edit.html.haml +4 -4
  77. data/app/views/shoppe/users/index.html.haml +5 -5
  78. data/app/views/shoppe/users/new.html.haml +6 -4
  79. data/app/views/shoppe/variants/form.html.haml +27 -29
  80. data/app/views/shoppe/variants/index.html.haml +11 -11
  81. data/config/locales/en.yml +619 -14
  82. data/config/locales/es.yml +650 -0
  83. data/config/locales/pl.yml +650 -0
  84. data/config/locales/pt-BR.yml +643 -0
  85. data/config/routes.rb +16 -8
  86. data/db/migrate/20141026175622_add_indexes_to_shoppe_order_items.rb +6 -0
  87. data/db/migrate/20141026175943_add_indexes_to_shoppe_orders.rb +7 -0
  88. data/db/migrate/20141026180333_add_indexes_to_shoppe_payments.rb +6 -0
  89. data/db/migrate/20141026180835_add_indexes_to_shoppe_product_attributes.rb +7 -0
  90. data/db/migrate/20141026180952_add_indexes_to_shoppe_product_categories.rb +5 -0
  91. data/db/migrate/20141026181040_add_indexes_to_shoppe_products.rb +8 -0
  92. data/db/migrate/20141026181312_add_indexes_to_shoppe_settings.rb +5 -0
  93. data/db/migrate/20141026181354_add_indexes_to_shoppe_stock_level_adjustments.rb +6 -0
  94. data/db/migrate/20141026181559_add_indexes_to_shoppe_users.rb +5 -0
  95. data/db/migrate/20141026181716_add_indexes_to_shoppe_delivery_services.rb +9 -0
  96. data/db/schema.rb +36 -1
  97. data/lib/shoppe/engine.rb +6 -0
  98. data/lib/shoppe/navigation_manager.rb +1 -1
  99. data/lib/shoppe/version.rb +1 -1
  100. metadata +67 -5
@@ -1,16 +1,24 @@
1
1
  Shoppe::Engine.routes.draw do
2
-
2
+
3
3
  get 'attachment/:id/:filename.:extension' => 'attachments#show'
4
4
  resources :product_categories
5
5
  resources :products do
6
6
  resources :variants
7
+ collection do
8
+ get :import
9
+ post :import
10
+ end
7
11
  end
8
12
  resources :orders do
9
- post :search, :on => :collection
10
- post :accept, :on => :member
11
- post :reject, :on => :member
12
- post :ship, :on => :member
13
- get :despatch_note, :on => :member
13
+ collection do
14
+ post :search
15
+ end
16
+ member do
17
+ post :accept
18
+ post :reject
19
+ post :ship
20
+ get :despatch_note
21
+ end
14
22
  resources :payments, :only => [:create, :destroy] do
15
23
  match :refund, :on => :member, :via => [:get, :post]
16
24
  end
@@ -26,11 +34,11 @@ Shoppe::Engine.routes.draw do
26
34
 
27
35
  get 'settings'=> 'settings#edit'
28
36
  post 'settings' => 'settings#update'
29
-
37
+
30
38
  get 'login' => 'sessions#new'
31
39
  post 'login' => 'sessions#create'
32
40
  match 'login/reset' => 'sessions#reset', :via => [:get, :post]
33
-
41
+
34
42
  delete 'logout' => 'sessions#destroy'
35
43
  root :to => 'dashboard#home'
36
44
  end
@@ -0,0 +1,6 @@
1
+ class AddIndexesToShoppeOrderItems < ActiveRecord::Migration
2
+ def change
3
+ add_index :shoppe_order_items, [:ordered_item_id, :ordered_item_type], name: 'index_shoppe_order_items_ordered_item'
4
+ add_index :shoppe_order_items, :order_id
5
+ end
6
+ end
@@ -0,0 +1,7 @@
1
+ class AddIndexesToShoppeOrders < ActiveRecord::Migration
2
+ def change
3
+ add_index :shoppe_orders, :token
4
+ add_index :shoppe_orders, :delivery_service_id
5
+ add_index :shoppe_orders, :received_at
6
+ end
7
+ end
@@ -0,0 +1,6 @@
1
+ class AddIndexesToShoppePayments < ActiveRecord::Migration
2
+ def change
3
+ add_index :shoppe_payments, :order_id
4
+ add_index :shoppe_payments, :parent_payment_id
5
+ end
6
+ end
@@ -0,0 +1,7 @@
1
+ class AddIndexesToShoppeProductAttributes < ActiveRecord::Migration
2
+ def change
3
+ add_index :shoppe_product_attributes, :product_id
4
+ add_index :shoppe_product_attributes, :key
5
+ add_index :shoppe_product_attributes, :position
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ class AddIndexesToShoppeProductCategories < ActiveRecord::Migration
2
+ def change
3
+ add_index :shoppe_product_categories, :permalink
4
+ end
5
+ end
@@ -0,0 +1,8 @@
1
+ class AddIndexesToShoppeProducts < ActiveRecord::Migration
2
+ def change
3
+ add_index :shoppe_products, :parent_id
4
+ add_index :shoppe_products, :sku
5
+ add_index :shoppe_products, :product_category_id
6
+ add_index :shoppe_products, :permalink
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ class AddIndexesToShoppeSettings < ActiveRecord::Migration
2
+ def change
3
+ add_index :shoppe_settings, :key
4
+ end
5
+ end
@@ -0,0 +1,6 @@
1
+ class AddIndexesToShoppeStockLevelAdjustments < ActiveRecord::Migration
2
+ def change
3
+ add_index :shoppe_stock_level_adjustments, [:item_id, :item_type], name: 'index_shoppe_stock_level_adjustments_items'
4
+ add_index :shoppe_stock_level_adjustments, [:parent_id, :parent_type], name: 'index_shoppe_stock_level_adjustments_parent'
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ class AddIndexesToShoppeUsers < ActiveRecord::Migration
2
+ def change
3
+ add_index :shoppe_users, :email_address
4
+ end
5
+ end
@@ -0,0 +1,9 @@
1
+ class AddIndexesToShoppeDeliveryServices < ActiveRecord::Migration
2
+ def change
3
+ add_index :shoppe_delivery_services, :active
4
+ add_index :shoppe_delivery_service_prices, :delivery_service_id
5
+ add_index :shoppe_delivery_service_prices, :min_weight
6
+ add_index :shoppe_delivery_service_prices, :max_weight
7
+ add_index :shoppe_delivery_service_prices, :price
8
+ end
9
+ end
@@ -11,7 +11,7 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20131102143930) do
14
+ ActiveRecord::Schema.define(version: 20141026181716) do
15
15
 
16
16
  create_table "nifty_attachments", force: true do |t|
17
17
  t.integer "parent_id"
@@ -57,6 +57,11 @@ ActiveRecord::Schema.define(version: 20131102143930) do
57
57
  t.text "country_ids"
58
58
  end
59
59
 
60
+ add_index "shoppe_delivery_service_prices", ["delivery_service_id"], name: "index_shoppe_delivery_service_prices_on_delivery_service_id", using: :btree
61
+ add_index "shoppe_delivery_service_prices", ["max_weight"], name: "index_shoppe_delivery_service_prices_on_max_weight", using: :btree
62
+ add_index "shoppe_delivery_service_prices", ["min_weight"], name: "index_shoppe_delivery_service_prices_on_min_weight", using: :btree
63
+ add_index "shoppe_delivery_service_prices", ["price"], name: "index_shoppe_delivery_service_prices_on_price", using: :btree
64
+
60
65
  create_table "shoppe_delivery_services", force: true do |t|
61
66
  t.string "name"
62
67
  t.string "code"
@@ -68,6 +73,8 @@ ActiveRecord::Schema.define(version: 20131102143930) do
68
73
  t.string "tracking_url"
69
74
  end
70
75
 
76
+ add_index "shoppe_delivery_services", ["active"], name: "index_shoppe_delivery_services_on_active", using: :btree
77
+
71
78
  create_table "shoppe_order_items", force: true do |t|
72
79
  t.integer "order_id"
73
80
  t.integer "ordered_item_id"
@@ -82,6 +89,9 @@ ActiveRecord::Schema.define(version: 20131102143930) do
82
89
  t.datetime "updated_at"
83
90
  end
84
91
 
92
+ add_index "shoppe_order_items", ["order_id"], name: "index_shoppe_order_items_on_order_id", using: :btree
93
+ add_index "shoppe_order_items", ["ordered_item_id", "ordered_item_type"], name: "index_shoppe_order_items_ordered_item", using: :btree
94
+
85
95
  create_table "shoppe_orders", force: true do |t|
86
96
  t.string "token"
87
97
  t.string "first_name"
@@ -126,6 +136,10 @@ ActiveRecord::Schema.define(version: 20131102143930) do
126
136
  t.string "invoice_number"
127
137
  end
128
138
 
139
+ add_index "shoppe_orders", ["delivery_service_id"], name: "index_shoppe_orders_on_delivery_service_id", using: :btree
140
+ add_index "shoppe_orders", ["received_at"], name: "index_shoppe_orders_on_received_at", using: :btree
141
+ add_index "shoppe_orders", ["token"], name: "index_shoppe_orders_on_token", using: :btree
142
+
129
143
  create_table "shoppe_payments", force: true do |t|
130
144
  t.integer "order_id"
131
145
  t.decimal "amount", precision: 8, scale: 2, default: 0.0
@@ -140,6 +154,9 @@ ActiveRecord::Schema.define(version: 20131102143930) do
140
154
  t.datetime "updated_at"
141
155
  end
142
156
 
157
+ add_index "shoppe_payments", ["order_id"], name: "index_shoppe_payments_on_order_id", using: :btree
158
+ add_index "shoppe_payments", ["parent_payment_id"], name: "index_shoppe_payments_on_parent_payment_id", using: :btree
159
+
143
160
  create_table "shoppe_product_attributes", force: true do |t|
144
161
  t.integer "product_id"
145
162
  t.string "key"
@@ -151,6 +168,10 @@ ActiveRecord::Schema.define(version: 20131102143930) do
151
168
  t.boolean "public", default: true
152
169
  end
153
170
 
171
+ add_index "shoppe_product_attributes", ["key"], name: "index_shoppe_product_attributes_on_key", using: :btree
172
+ add_index "shoppe_product_attributes", ["position"], name: "index_shoppe_product_attributes_on_position", using: :btree
173
+ add_index "shoppe_product_attributes", ["product_id"], name: "index_shoppe_product_attributes_on_product_id", using: :btree
174
+
154
175
  create_table "shoppe_product_categories", force: true do |t|
155
176
  t.string "name"
156
177
  t.string "permalink"
@@ -159,6 +180,8 @@ ActiveRecord::Schema.define(version: 20131102143930) do
159
180
  t.datetime "updated_at"
160
181
  end
161
182
 
183
+ add_index "shoppe_product_categories", ["permalink"], name: "index_shoppe_product_categories_on_permalink", using: :btree
184
+
162
185
  create_table "shoppe_products", force: true do |t|
163
186
  t.integer "parent_id"
164
187
  t.integer "product_category_id"
@@ -180,12 +203,19 @@ ActiveRecord::Schema.define(version: 20131102143930) do
180
203
  t.boolean "default", default: false
181
204
  end
182
205
 
206
+ add_index "shoppe_products", ["parent_id"], name: "index_shoppe_products_on_parent_id", using: :btree
207
+ add_index "shoppe_products", ["permalink"], name: "index_shoppe_products_on_permalink", using: :btree
208
+ add_index "shoppe_products", ["product_category_id"], name: "index_shoppe_products_on_product_category_id", using: :btree
209
+ add_index "shoppe_products", ["sku"], name: "index_shoppe_products_on_sku", using: :btree
210
+
183
211
  create_table "shoppe_settings", force: true do |t|
184
212
  t.string "key"
185
213
  t.string "value"
186
214
  t.string "value_type"
187
215
  end
188
216
 
217
+ add_index "shoppe_settings", ["key"], name: "index_shoppe_settings_on_key", using: :btree
218
+
189
219
  create_table "shoppe_stock_level_adjustments", force: true do |t|
190
220
  t.integer "item_id"
191
221
  t.string "item_type"
@@ -197,6 +227,9 @@ ActiveRecord::Schema.define(version: 20131102143930) do
197
227
  t.datetime "updated_at"
198
228
  end
199
229
 
230
+ add_index "shoppe_stock_level_adjustments", ["item_id", "item_type"], name: "index_shoppe_stock_level_adjustments_items", using: :btree
231
+ add_index "shoppe_stock_level_adjustments", ["parent_id", "parent_type"], name: "index_shoppe_stock_level_adjustments_parent", using: :btree
232
+
200
233
  create_table "shoppe_tax_rates", force: true do |t|
201
234
  t.string "name"
202
235
  t.decimal "rate", precision: 8, scale: 2
@@ -215,4 +248,6 @@ ActiveRecord::Schema.define(version: 20131102143930) do
215
248
  t.datetime "updated_at"
216
249
  end
217
250
 
251
+ add_index "shoppe_users", ["email_address"], name: "index_shoppe_users_on_email_address", using: :btree
252
+
218
253
  end
@@ -15,6 +15,12 @@ module Shoppe
15
15
  g.javascripts false
16
16
  g.helper false
17
17
  end
18
+
19
+ config.to_prepare do
20
+ Dir.glob(Rails.root + "app/decorators/**/*_decorator*.rb").each do |c|
21
+ require_dependency(c)
22
+ end
23
+ end
18
24
 
19
25
  initializer 'shoppe.initialize' do |app|
20
26
  # Add the default settings
@@ -44,7 +44,7 @@ module Shoppe
44
44
  end
45
45
 
46
46
  def remove_item(identifier)
47
- items.remote_if { |i| i.identifier.to_s == identifier.to_s }
47
+ items.delete_if { |i| i.identifier.to_s == identifier.to_s }
48
48
  end
49
49
 
50
50
  class NavigationItem
@@ -1,3 +1,3 @@
1
1
  module Shoppe
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shoppe
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Cooke
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-30 00:00:00.000000000 Z
11
+ date: 2015-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -31,7 +31,7 @@ dependencies:
31
31
  - !ruby/object:Gem::Version
32
32
  version: '5.0'
33
33
  - !ruby/object:Gem::Dependency
34
- name: bcrypt-ruby
34
+ name: bcrypt
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
@@ -50,6 +50,26 @@ dependencies:
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
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
53
73
  - !ruby/object:Gem::Dependency
54
74
  name: ransack
55
75
  requirement: !ruby/object:Gem::Requirement
@@ -180,6 +200,26 @@ dependencies:
180
200
  - - "<"
181
201
  - !ruby/object:Gem::Version
182
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'
183
223
  - !ruby/object:Gem::Dependency
184
224
  name: nifty-key-value-store
185
225
  requirement: !ruby/object:Gem::Requirement
@@ -240,14 +280,20 @@ dependencies:
240
280
  requirements:
241
281
  - - "~>"
242
282
  - !ruby/object:Gem::Version
243
- version: '1.0'
283
+ version: 1.0.7
284
+ - - ">="
285
+ - !ruby/object:Gem::Version
286
+ version: 1.0.7
244
287
  type: :runtime
245
288
  prerelease: false
246
289
  version_requirements: !ruby/object:Gem::Requirement
247
290
  requirements:
248
291
  - - "~>"
249
292
  - !ruby/object:Gem::Version
250
- version: '1.0'
293
+ version: 1.0.7
294
+ - - ">="
295
+ - !ruby/object:Gem::Version
296
+ version: 1.0.7
251
297
  - !ruby/object:Gem::Dependency
252
298
  name: sqlite3
253
299
  requirement: !ruby/object:Gem::Requirement
@@ -380,6 +426,7 @@ files:
380
426
  - app/assets/images/shoppe/statuses/received.svg
381
427
  - app/assets/images/shoppe/statuses/rejected.svg
382
428
  - app/assets/images/shoppe/statuses/shipped.svg
429
+ - app/assets/images/shoppe/table-tear-off.png
383
430
  - app/assets/javascripts/shoppe/application.coffee
384
431
  - app/assets/javascripts/shoppe/chosen.jquery.js
385
432
  - app/assets/javascripts/shoppe/jquery_ui.js
@@ -431,6 +478,7 @@ files:
431
478
  - app/models/shoppe/stock_level_adjustment.rb
432
479
  - app/models/shoppe/tax_rate.rb
433
480
  - app/models/shoppe/user.rb
481
+ - app/validators/permalink_validator.rb
434
482
  - app/views/layouts/shoppe/application.html.haml
435
483
  - app/views/layouts/shoppe/printable.html.haml
436
484
  - app/views/layouts/shoppe/sub.html.haml
@@ -471,6 +519,7 @@ files:
471
519
  - app/views/shoppe/products/_form.html.haml
472
520
  - app/views/shoppe/products/_table.html.haml
473
521
  - app/views/shoppe/products/edit.html.haml
522
+ - app/views/shoppe/products/import.html.haml
474
523
  - app/views/shoppe/products/index.html.haml
475
524
  - app/views/shoppe/products/new.html.haml
476
525
  - app/views/shoppe/sessions/new.html.haml
@@ -488,12 +537,25 @@ files:
488
537
  - app/views/shoppe/variants/form.html.haml
489
538
  - app/views/shoppe/variants/index.html.haml
490
539
  - config/locales/en.yml
540
+ - config/locales/es.yml
541
+ - config/locales/pl.yml
542
+ - config/locales/pt-BR.yml
491
543
  - config/routes.rb
492
544
  - db/countries.txt
493
545
  - db/migrate/20130926094549_create_shoppe_initial_schema.rb
494
546
  - db/migrate/20131024201501_add_address_type_to_shoppe_tax_rates.rb
495
547
  - db/migrate/20131024204815_create_shoppe_payments.rb
496
548
  - db/migrate/20131102143930_remove_default_on_order_item_weight.rb
549
+ - db/migrate/20141026175622_add_indexes_to_shoppe_order_items.rb
550
+ - db/migrate/20141026175943_add_indexes_to_shoppe_orders.rb
551
+ - db/migrate/20141026180333_add_indexes_to_shoppe_payments.rb
552
+ - db/migrate/20141026180835_add_indexes_to_shoppe_product_attributes.rb
553
+ - db/migrate/20141026180952_add_indexes_to_shoppe_product_categories.rb
554
+ - db/migrate/20141026181040_add_indexes_to_shoppe_products.rb
555
+ - db/migrate/20141026181312_add_indexes_to_shoppe_settings.rb
556
+ - db/migrate/20141026181354_add_indexes_to_shoppe_stock_level_adjustments.rb
557
+ - db/migrate/20141026181559_add_indexes_to_shoppe_users.rb
558
+ - db/migrate/20141026181716_add_indexes_to_shoppe_delivery_services.rb
497
559
  - db/schema.rb
498
560
  - db/seeds.rb
499
561
  - db/seeds_data/poe400.jpg