tb_checkout 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (122) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +162 -0
  4. data/Rakefile +24 -0
  5. data/app/assets/images/tb_checkout/admin/shopping_carts.png +0 -0
  6. data/app/assets/images/tb_checkout/admin/transactions.png +0 -0
  7. data/app/assets/javascripts/tb_checkout/admin/carts.js +2 -0
  8. data/app/assets/javascripts/tb_checkout/admin/transactions.js +2 -0
  9. data/app/assets/javascripts/tb_checkout/application.js +13 -0
  10. data/app/assets/javascripts/tb_checkout/cart_items.js +2 -0
  11. data/app/assets/javascripts/tb_checkout/carts.js +2 -0
  12. data/app/assets/javascripts/tb_checkout/transactions.js +2 -0
  13. data/app/assets/stylesheets/tb_checkout/admin/carts.css +4 -0
  14. data/app/assets/stylesheets/tb_checkout/admin/transactions.css +4 -0
  15. data/app/assets/stylesheets/tb_checkout/application.css +15 -0
  16. data/app/assets/stylesheets/tb_checkout/cart_items.css +4 -0
  17. data/app/assets/stylesheets/tb_checkout/carts.css +4 -0
  18. data/app/assets/stylesheets/tb_checkout/transactions.css +4 -0
  19. data/app/controllers/concerns/tb_checkout/controller_helpers.rb +16 -0
  20. data/app/controllers/tb_checkout/admin/carts_controller.rb +39 -0
  21. data/app/controllers/tb_checkout/admin/transactions_controller.rb +26 -0
  22. data/app/controllers/tb_checkout/application_controller.rb +6 -0
  23. data/app/controllers/tb_checkout/cart_items_controller.rb +63 -0
  24. data/app/controllers/tb_checkout/carts_controller.rb +8 -0
  25. data/app/controllers/tb_checkout/transactions_controller.rb +87 -0
  26. data/app/helpers/tb_checkout/admin/carts_helper.rb +13 -0
  27. data/app/helpers/tb_checkout/admin/transactions_helper.rb +16 -0
  28. data/app/helpers/tb_checkout/application_helper.rb +138 -0
  29. data/app/helpers/tb_checkout/transactions_helper.rb +2 -0
  30. data/app/models/concerns/tb_checkout/belongs_to_user_session.rb +15 -0
  31. data/app/models/concerns/tb_checkout/purchasable.rb +81 -0
  32. data/app/models/tb_checkout/basic_product.rb +6 -0
  33. data/app/models/tb_checkout/cart.rb +56 -0
  34. data/app/models/tb_checkout/cart_item.rb +48 -0
  35. data/app/models/tb_checkout/transaction.rb +253 -0
  36. data/app/views/tb_checkout/admin/carts/index.html.erb +54 -0
  37. data/app/views/tb_checkout/admin/carts/show.html.erb +45 -0
  38. data/app/views/tb_checkout/admin/transactions/_table.html.erb +24 -0
  39. data/app/views/tb_checkout/admin/transactions/index.html.erb +7 -0
  40. data/app/views/tb_checkout/admin/transactions/show.html.erb +70 -0
  41. data/app/views/tb_checkout/cart_items/create.html.erb +2 -0
  42. data/app/views/tb_checkout/cart_items/destroy.html.erb +2 -0
  43. data/app/views/tb_checkout/cart_items/update.html.erb +2 -0
  44. data/app/views/tb_checkout/carts/_cart.html.erb +65 -0
  45. data/app/views/tb_checkout/carts/show.html.erb +10 -0
  46. data/app/views/tb_checkout/transactions/_details.html.erb +17 -0
  47. data/app/views/tb_checkout/transactions/confirm.html.erb +11 -0
  48. data/app/views/tb_checkout/transactions/index.html.erb +29 -0
  49. data/app/views/tb_checkout/transactions/new.html.erb +90 -0
  50. data/app/views/tb_checkout/transactions/show.html.erb +14 -0
  51. data/config/locales/en.yml +23 -0
  52. data/config/routes.rb +20 -0
  53. data/db/migrate/20140703185256_create_tb_checkout_carts.rb +12 -0
  54. data/db/migrate/20140703185258_create_tb_checkout_cart_items.rb +15 -0
  55. data/db/migrate/20140703185259_create_tb_checkout_transactions.rb +23 -0
  56. data/db/migrate/20140707142350_create_tb_checkout_basic_products.rb +8 -0
  57. data/db/migrate/20140915202848_add_spud_user_and_session_id_to_transactions.rb +10 -0
  58. data/lib/tasks/tb_checkout_tasks.rake +19 -0
  59. data/lib/tb_checkout.rb +4 -0
  60. data/lib/tb_checkout/configuration.rb +8 -0
  61. data/lib/tb_checkout/engine.rb +36 -0
  62. data/lib/tb_checkout/schema.rb +51 -0
  63. data/lib/tb_checkout/version.rb +3 -0
  64. data/spec/controllers/tb_checkout/carts_controller_spec.rb +11 -0
  65. data/spec/controllers/tb_checkout/transactions_controller_spec.rb +110 -0
  66. data/spec/dummy/README.rdoc +28 -0
  67. data/spec/dummy/Rakefile +6 -0
  68. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  69. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  70. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  71. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  72. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  73. data/spec/dummy/bin/bundle +3 -0
  74. data/spec/dummy/bin/rails +4 -0
  75. data/spec/dummy/bin/rake +4 -0
  76. data/spec/dummy/config.ru +4 -0
  77. data/spec/dummy/config/application.rb +30 -0
  78. data/spec/dummy/config/boot.rb +5 -0
  79. data/spec/dummy/config/database.yml +13 -0
  80. data/spec/dummy/config/environment.rb +5 -0
  81. data/spec/dummy/config/environments/development.rb +37 -0
  82. data/spec/dummy/config/environments/production.rb +82 -0
  83. data/spec/dummy/config/environments/test.rb +39 -0
  84. data/spec/dummy/config/initializers/assets.rb +8 -0
  85. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  86. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  87. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  88. data/spec/dummy/config/initializers/inflections.rb +16 -0
  89. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  90. data/spec/dummy/config/initializers/session_store.rb +3 -0
  91. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  92. data/spec/dummy/config/locales/en.yml +23 -0
  93. data/spec/dummy/config/routes.rb +4 -0
  94. data/spec/dummy/config/secrets.yml +22 -0
  95. data/spec/dummy/db/migrate/20140915202259_create_spud_admin_permissions.tb_core.rb +12 -0
  96. data/spec/dummy/db/migrate/20140915202260_create_spud_users.tb_core.rb +30 -0
  97. data/spec/dummy/db/migrate/20140915202261_add_time_zone_to_spud_user.tb_core.rb +7 -0
  98. data/spec/dummy/db/migrate/20140915202262_add_scope_to_spud_admin_permissions.tb_core.rb +7 -0
  99. data/spec/dummy/db/migrate/20140915202263_create_spud_user_settings.tb_core.rb +12 -0
  100. data/spec/dummy/db/migrate/20140915202264_create_spud_roles.tb_core.rb +11 -0
  101. data/spec/dummy/db/migrate/20140915202265_create_spud_permissions.tb_core.rb +11 -0
  102. data/spec/dummy/db/migrate/20140915202266_create_spud_role_permissions.tb_core.rb +12 -0
  103. data/spec/dummy/db/migrate/20140915202267_drop_spud_admin_permissions.tb_core.rb +16 -0
  104. data/spec/dummy/db/migrate/20140915202268_create_tb_checkout_carts.tb_checkout_engine.rb +13 -0
  105. data/spec/dummy/db/migrate/20140915202269_create_tb_checkout_cart_items.tb_checkout_engine.rb +16 -0
  106. data/spec/dummy/db/migrate/20140915202270_create_tb_checkout_transactions.tb_checkout_engine.rb +24 -0
  107. data/spec/dummy/db/migrate/20140915202271_create_tb_checkout_basic_products.tb_checkout_engine.rb +9 -0
  108. data/spec/dummy/db/migrate/20140915234534_add_spud_user_and_session_id_to_transactions.tb_checkout_engine.rb +11 -0
  109. data/spec/dummy/db/schema.rb +135 -0
  110. data/spec/dummy/public/404.html +67 -0
  111. data/spec/dummy/public/422.html +67 -0
  112. data/spec/dummy/public/500.html +66 -0
  113. data/spec/dummy/public/favicon.ico +0 -0
  114. data/spec/factories/spud_users.rb +16 -0
  115. data/spec/factories/tb_checkout_basic_products.rb +8 -0
  116. data/spec/factories/tb_checkout_cart_items.rb +11 -0
  117. data/spec/factories/tb_checkout_carts.rb +14 -0
  118. data/spec/factories/tb_checkout_transactions.rb +37 -0
  119. data/spec/models/tb_checkout/transaction_spec.rb +5 -0
  120. data/spec/rails_helper.rb +73 -0
  121. data/spec/spec_helper.rb +85 -0
  122. metadata +335 -0
metadata ADDED
@@ -0,0 +1,335 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tb_checkout
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.3
5
+ platform: ruby
6
+ authors:
7
+ - Westlake Design
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-11-04 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'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '4.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: tb_core
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 1.2.7
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 1.2.7
41
+ - !ruby/object:Gem::Dependency
42
+ name: activemerchant
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.43.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.43.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: mysql2
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec-rails
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 3.1.0
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 3.1.0
83
+ - !ruby/object:Gem::Dependency
84
+ name: factory_girl_rails
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 4.4.1
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 4.4.1
97
+ - !ruby/object:Gem::Dependency
98
+ name: database_cleaner
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 1.3.0
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 1.3.0
111
+ - !ruby/object:Gem::Dependency
112
+ name: simplecov
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 0.7.1
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: 0.7.1
125
+ description: TB Checkout is a shopping cart and payments system designed for use with
126
+ Twice Baked and Active Merchant
127
+ email:
128
+ - greg@westlakedesign.com
129
+ executables: []
130
+ extensions: []
131
+ extra_rdoc_files: []
132
+ files:
133
+ - MIT-LICENSE
134
+ - README.md
135
+ - Rakefile
136
+ - app/assets/images/tb_checkout/admin/shopping_carts.png
137
+ - app/assets/images/tb_checkout/admin/transactions.png
138
+ - app/assets/javascripts/tb_checkout/admin/carts.js
139
+ - app/assets/javascripts/tb_checkout/admin/transactions.js
140
+ - app/assets/javascripts/tb_checkout/application.js
141
+ - app/assets/javascripts/tb_checkout/cart_items.js
142
+ - app/assets/javascripts/tb_checkout/carts.js
143
+ - app/assets/javascripts/tb_checkout/transactions.js
144
+ - app/assets/stylesheets/tb_checkout/admin/carts.css
145
+ - app/assets/stylesheets/tb_checkout/admin/transactions.css
146
+ - app/assets/stylesheets/tb_checkout/application.css
147
+ - app/assets/stylesheets/tb_checkout/cart_items.css
148
+ - app/assets/stylesheets/tb_checkout/carts.css
149
+ - app/assets/stylesheets/tb_checkout/transactions.css
150
+ - app/controllers/concerns/tb_checkout/controller_helpers.rb
151
+ - app/controllers/tb_checkout/admin/carts_controller.rb
152
+ - app/controllers/tb_checkout/admin/transactions_controller.rb
153
+ - app/controllers/tb_checkout/application_controller.rb
154
+ - app/controllers/tb_checkout/cart_items_controller.rb
155
+ - app/controllers/tb_checkout/carts_controller.rb
156
+ - app/controllers/tb_checkout/transactions_controller.rb
157
+ - app/helpers/tb_checkout/admin/carts_helper.rb
158
+ - app/helpers/tb_checkout/admin/transactions_helper.rb
159
+ - app/helpers/tb_checkout/application_helper.rb
160
+ - app/helpers/tb_checkout/transactions_helper.rb
161
+ - app/models/concerns/tb_checkout/belongs_to_user_session.rb
162
+ - app/models/concerns/tb_checkout/purchasable.rb
163
+ - app/models/tb_checkout/basic_product.rb
164
+ - app/models/tb_checkout/cart.rb
165
+ - app/models/tb_checkout/cart_item.rb
166
+ - app/models/tb_checkout/transaction.rb
167
+ - app/views/tb_checkout/admin/carts/index.html.erb
168
+ - app/views/tb_checkout/admin/carts/show.html.erb
169
+ - app/views/tb_checkout/admin/transactions/_table.html.erb
170
+ - app/views/tb_checkout/admin/transactions/index.html.erb
171
+ - app/views/tb_checkout/admin/transactions/show.html.erb
172
+ - app/views/tb_checkout/cart_items/create.html.erb
173
+ - app/views/tb_checkout/cart_items/destroy.html.erb
174
+ - app/views/tb_checkout/cart_items/update.html.erb
175
+ - app/views/tb_checkout/carts/_cart.html.erb
176
+ - app/views/tb_checkout/carts/show.html.erb
177
+ - app/views/tb_checkout/transactions/_details.html.erb
178
+ - app/views/tb_checkout/transactions/confirm.html.erb
179
+ - app/views/tb_checkout/transactions/index.html.erb
180
+ - app/views/tb_checkout/transactions/new.html.erb
181
+ - app/views/tb_checkout/transactions/show.html.erb
182
+ - config/locales/en.yml
183
+ - config/routes.rb
184
+ - db/migrate/20140703185256_create_tb_checkout_carts.rb
185
+ - db/migrate/20140703185258_create_tb_checkout_cart_items.rb
186
+ - db/migrate/20140703185259_create_tb_checkout_transactions.rb
187
+ - db/migrate/20140707142350_create_tb_checkout_basic_products.rb
188
+ - db/migrate/20140915202848_add_spud_user_and_session_id_to_transactions.rb
189
+ - lib/tasks/tb_checkout_tasks.rake
190
+ - lib/tb_checkout.rb
191
+ - lib/tb_checkout/configuration.rb
192
+ - lib/tb_checkout/engine.rb
193
+ - lib/tb_checkout/schema.rb
194
+ - lib/tb_checkout/version.rb
195
+ - spec/controllers/tb_checkout/carts_controller_spec.rb
196
+ - spec/controllers/tb_checkout/transactions_controller_spec.rb
197
+ - spec/dummy/README.rdoc
198
+ - spec/dummy/Rakefile
199
+ - spec/dummy/app/assets/javascripts/application.js
200
+ - spec/dummy/app/assets/stylesheets/application.css
201
+ - spec/dummy/app/controllers/application_controller.rb
202
+ - spec/dummy/app/helpers/application_helper.rb
203
+ - spec/dummy/app/views/layouts/application.html.erb
204
+ - spec/dummy/bin/bundle
205
+ - spec/dummy/bin/rails
206
+ - spec/dummy/bin/rake
207
+ - spec/dummy/config.ru
208
+ - spec/dummy/config/application.rb
209
+ - spec/dummy/config/boot.rb
210
+ - spec/dummy/config/database.yml
211
+ - spec/dummy/config/environment.rb
212
+ - spec/dummy/config/environments/development.rb
213
+ - spec/dummy/config/environments/production.rb
214
+ - spec/dummy/config/environments/test.rb
215
+ - spec/dummy/config/initializers/assets.rb
216
+ - spec/dummy/config/initializers/backtrace_silencers.rb
217
+ - spec/dummy/config/initializers/cookies_serializer.rb
218
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
219
+ - spec/dummy/config/initializers/inflections.rb
220
+ - spec/dummy/config/initializers/mime_types.rb
221
+ - spec/dummy/config/initializers/session_store.rb
222
+ - spec/dummy/config/initializers/wrap_parameters.rb
223
+ - spec/dummy/config/locales/en.yml
224
+ - spec/dummy/config/routes.rb
225
+ - spec/dummy/config/secrets.yml
226
+ - spec/dummy/db/migrate/20140915202259_create_spud_admin_permissions.tb_core.rb
227
+ - spec/dummy/db/migrate/20140915202260_create_spud_users.tb_core.rb
228
+ - spec/dummy/db/migrate/20140915202261_add_time_zone_to_spud_user.tb_core.rb
229
+ - spec/dummy/db/migrate/20140915202262_add_scope_to_spud_admin_permissions.tb_core.rb
230
+ - spec/dummy/db/migrate/20140915202263_create_spud_user_settings.tb_core.rb
231
+ - spec/dummy/db/migrate/20140915202264_create_spud_roles.tb_core.rb
232
+ - spec/dummy/db/migrate/20140915202265_create_spud_permissions.tb_core.rb
233
+ - spec/dummy/db/migrate/20140915202266_create_spud_role_permissions.tb_core.rb
234
+ - spec/dummy/db/migrate/20140915202267_drop_spud_admin_permissions.tb_core.rb
235
+ - spec/dummy/db/migrate/20140915202268_create_tb_checkout_carts.tb_checkout_engine.rb
236
+ - spec/dummy/db/migrate/20140915202269_create_tb_checkout_cart_items.tb_checkout_engine.rb
237
+ - spec/dummy/db/migrate/20140915202270_create_tb_checkout_transactions.tb_checkout_engine.rb
238
+ - spec/dummy/db/migrate/20140915202271_create_tb_checkout_basic_products.tb_checkout_engine.rb
239
+ - spec/dummy/db/migrate/20140915234534_add_spud_user_and_session_id_to_transactions.tb_checkout_engine.rb
240
+ - spec/dummy/db/schema.rb
241
+ - spec/dummy/public/404.html
242
+ - spec/dummy/public/422.html
243
+ - spec/dummy/public/500.html
244
+ - spec/dummy/public/favicon.ico
245
+ - spec/factories/spud_users.rb
246
+ - spec/factories/tb_checkout_basic_products.rb
247
+ - spec/factories/tb_checkout_cart_items.rb
248
+ - spec/factories/tb_checkout_carts.rb
249
+ - spec/factories/tb_checkout_transactions.rb
250
+ - spec/models/tb_checkout/transaction_spec.rb
251
+ - spec/rails_helper.rb
252
+ - spec/spec_helper.rb
253
+ homepage: http://bitbucket.org/westlakedesign/tb_checkout
254
+ licenses:
255
+ - MIT
256
+ metadata: {}
257
+ post_install_message:
258
+ rdoc_options: []
259
+ require_paths:
260
+ - lib
261
+ required_ruby_version: !ruby/object:Gem::Requirement
262
+ requirements:
263
+ - - ">="
264
+ - !ruby/object:Gem::Version
265
+ version: '0'
266
+ required_rubygems_version: !ruby/object:Gem::Requirement
267
+ requirements:
268
+ - - ">="
269
+ - !ruby/object:Gem::Version
270
+ version: '0'
271
+ requirements: []
272
+ rubyforge_project:
273
+ rubygems_version: 2.2.2
274
+ signing_key:
275
+ specification_version: 4
276
+ summary: Simple shopping cart and checkout system for Twice Baked
277
+ test_files:
278
+ - spec/controllers/tb_checkout/carts_controller_spec.rb
279
+ - spec/controllers/tb_checkout/transactions_controller_spec.rb
280
+ - spec/dummy/app/assets/javascripts/application.js
281
+ - spec/dummy/app/assets/stylesheets/application.css
282
+ - spec/dummy/app/controllers/application_controller.rb
283
+ - spec/dummy/app/helpers/application_helper.rb
284
+ - spec/dummy/app/views/layouts/application.html.erb
285
+ - spec/dummy/bin/bundle
286
+ - spec/dummy/bin/rails
287
+ - spec/dummy/bin/rake
288
+ - spec/dummy/config/application.rb
289
+ - spec/dummy/config/boot.rb
290
+ - spec/dummy/config/database.yml
291
+ - spec/dummy/config/environment.rb
292
+ - spec/dummy/config/environments/development.rb
293
+ - spec/dummy/config/environments/production.rb
294
+ - spec/dummy/config/environments/test.rb
295
+ - spec/dummy/config/initializers/assets.rb
296
+ - spec/dummy/config/initializers/backtrace_silencers.rb
297
+ - spec/dummy/config/initializers/cookies_serializer.rb
298
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
299
+ - spec/dummy/config/initializers/inflections.rb
300
+ - spec/dummy/config/initializers/mime_types.rb
301
+ - spec/dummy/config/initializers/session_store.rb
302
+ - spec/dummy/config/initializers/wrap_parameters.rb
303
+ - spec/dummy/config/locales/en.yml
304
+ - spec/dummy/config/routes.rb
305
+ - spec/dummy/config/secrets.yml
306
+ - spec/dummy/config.ru
307
+ - spec/dummy/db/migrate/20140915202259_create_spud_admin_permissions.tb_core.rb
308
+ - spec/dummy/db/migrate/20140915202260_create_spud_users.tb_core.rb
309
+ - spec/dummy/db/migrate/20140915202261_add_time_zone_to_spud_user.tb_core.rb
310
+ - spec/dummy/db/migrate/20140915202262_add_scope_to_spud_admin_permissions.tb_core.rb
311
+ - spec/dummy/db/migrate/20140915202263_create_spud_user_settings.tb_core.rb
312
+ - spec/dummy/db/migrate/20140915202264_create_spud_roles.tb_core.rb
313
+ - spec/dummy/db/migrate/20140915202265_create_spud_permissions.tb_core.rb
314
+ - spec/dummy/db/migrate/20140915202266_create_spud_role_permissions.tb_core.rb
315
+ - spec/dummy/db/migrate/20140915202267_drop_spud_admin_permissions.tb_core.rb
316
+ - spec/dummy/db/migrate/20140915202268_create_tb_checkout_carts.tb_checkout_engine.rb
317
+ - spec/dummy/db/migrate/20140915202269_create_tb_checkout_cart_items.tb_checkout_engine.rb
318
+ - spec/dummy/db/migrate/20140915202270_create_tb_checkout_transactions.tb_checkout_engine.rb
319
+ - spec/dummy/db/migrate/20140915202271_create_tb_checkout_basic_products.tb_checkout_engine.rb
320
+ - spec/dummy/db/migrate/20140915234534_add_spud_user_and_session_id_to_transactions.tb_checkout_engine.rb
321
+ - spec/dummy/db/schema.rb
322
+ - spec/dummy/public/404.html
323
+ - spec/dummy/public/422.html
324
+ - spec/dummy/public/500.html
325
+ - spec/dummy/public/favicon.ico
326
+ - spec/dummy/Rakefile
327
+ - spec/dummy/README.rdoc
328
+ - spec/factories/spud_users.rb
329
+ - spec/factories/tb_checkout_basic_products.rb
330
+ - spec/factories/tb_checkout_cart_items.rb
331
+ - spec/factories/tb_checkout_carts.rb
332
+ - spec/factories/tb_checkout_transactions.rb
333
+ - spec/models/tb_checkout/transaction_spec.rb
334
+ - spec/rails_helper.rb
335
+ - spec/spec_helper.rb