beecart 0.0.3 → 0.1.2
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.
- checksums.yaml +4 -4
- data/Rakefile +1 -1
- data/lib/beecart.rb +3 -0
- data/lib/beecart/cart.rb +78 -18
- data/lib/beecart/current_cart.rb +6 -1
- data/lib/beecart/validator.rb +14 -0
- data/lib/beecart/validators/default_validator.rb +13 -0
- data/lib/beecart/version.rb +1 -1
- data/test/dummy/app/controllers/carts_controller.rb +8 -0
- data/test/dummy/app/views/carts/index.html.erb +13 -4
- data/test/dummy/config/application.rb +2 -0
- data/test/dummy/config/initializers/beecart.rb +6 -0
- data/test/dummy/config/routes.rb +2 -2
- data/test/dummy/lib/beecart/validators/custom_validator.rb +16 -0
- data/test/dummy/log/development.log +309 -7434
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- metadata +6 -5
- data/lib/beecart/validator/validator.rb +0 -7
- data/test/dummy/tmp/pids/server.pid +0 -1
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beecart
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryo Sakikawa
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-01-
|
11
|
+
date: 2014-01-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -80,7 +80,8 @@ files:
|
|
80
80
|
- lib/beecart/error.rb
|
81
81
|
- lib/beecart/gateway/base_gateway.rb
|
82
82
|
- lib/beecart/gateway/webpay_gateway.rb
|
83
|
-
- lib/beecart/validator
|
83
|
+
- lib/beecart/validator.rb
|
84
|
+
- lib/beecart/validators/default_validator.rb
|
84
85
|
- lib/beecart/version.rb
|
85
86
|
- lib/beecart.rb
|
86
87
|
- lib/tasks/cartbee_tasks.rake
|
@@ -117,6 +118,7 @@ files:
|
|
117
118
|
- test/dummy/config/routes.rb
|
118
119
|
- test/dummy/config.ru
|
119
120
|
- test/dummy/db/development.sqlite3
|
121
|
+
- test/dummy/lib/beecart/validators/custom_validator.rb
|
120
122
|
- test/dummy/log/development.log
|
121
123
|
- test/dummy/public/404.html
|
122
124
|
- test/dummy/public/422.html
|
@@ -130,7 +132,6 @@ files:
|
|
130
132
|
- test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
|
131
133
|
- test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
132
134
|
- test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
|
133
|
-
- test/dummy/tmp/pids/server.pid
|
134
135
|
- test/integration/navigation_test.rb
|
135
136
|
- test/test_helper.rb
|
136
137
|
homepage: http://beenos.com
|
@@ -188,6 +189,7 @@ test_files:
|
|
188
189
|
- test/dummy/config/routes.rb
|
189
190
|
- test/dummy/config.ru
|
190
191
|
- test/dummy/db/development.sqlite3
|
192
|
+
- test/dummy/lib/beecart/validators/custom_validator.rb
|
191
193
|
- test/dummy/log/development.log
|
192
194
|
- test/dummy/public/404.html
|
193
195
|
- test/dummy/public/422.html
|
@@ -201,6 +203,5 @@ test_files:
|
|
201
203
|
- test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
|
202
204
|
- test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
203
205
|
- test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
|
204
|
-
- test/dummy/tmp/pids/server.pid
|
205
206
|
- test/integration/navigation_test.rb
|
206
207
|
- test/test_helper.rb
|
@@ -1 +0,0 @@
|
|
1
|
-
89356
|