nimbleshop_simply 0.0.3 → 0.0.4.beta1
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.
- data/app/controllers/nimbleshop_simply/carts_controller.rb +1 -1
- data/app/controllers/nimbleshop_simply/checkout/payments_controller.rb +1 -1
- data/app/controllers/nimbleshop_simply/checkout/shipping_addresses_controller.rb +1 -1
- data/app/controllers/nimbleshop_simply/checkout/shipping_methods_controller.rb +1 -1
- data/app/controllers/nimbleshop_simply/orders_controller.rb +1 -1
- data/app/controllers/nimbleshop_simply/pages_controller.rb +1 -1
- data/app/controllers/nimbleshop_simply/product_groups_controller.rb +1 -1
- data/app/controllers/nimbleshop_simply/products_controller.rb +1 -6
- data/app/controllers/nimbleshop_simply/{application_controller.rb → simply_controller.rb} +3 -3
- data/app/helpers/nimbleshop_simply/{application_helper.rb → simply_helper.rb} +1 -1
- data/app/views/nimbleshop_simply/checkout/shipping_methods/_shipping_methods.html.erb +1 -1
- metadata +9 -15
@@ -1,5 +1,5 @@
|
|
1
1
|
module NimbleshopSimply
|
2
|
-
class OrdersController <
|
2
|
+
class OrdersController < SimplyController
|
3
3
|
|
4
4
|
before_filter :verify_current_order, only: [:edit_shipping_method, :update_shipping_method, :edit, :update]
|
5
5
|
before_filter :reset_order, only: [ :show ]
|
@@ -1,8 +1,8 @@
|
|
1
|
-
class NimbleshopSimply::
|
1
|
+
class NimbleshopSimply::SimplyController < ApplicationController
|
2
2
|
|
3
3
|
layout 'simply'
|
4
4
|
|
5
|
-
helper 'nimbleshop_simply/
|
5
|
+
helper 'nimbleshop_simply/simply'
|
6
6
|
|
7
7
|
helper_method :current_order, :current_shop
|
8
8
|
|
@@ -22,7 +22,7 @@ class NimbleshopSimply::ApplicationController < ApplicationController
|
|
22
22
|
|
23
23
|
def current_shop
|
24
24
|
@shop ||= Shop.first
|
25
|
-
raise
|
25
|
+
raise 'The database base is empty. Please run bundle exec rake setup first.' unless @shop
|
26
26
|
@shop
|
27
27
|
end
|
28
28
|
|
metadata
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nimbleshop_simply
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.0.4.beta1
|
5
|
+
prerelease: 6
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Neeraj Singh
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-07-
|
13
|
+
date: 2012-07-12 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: jquery-rails
|
@@ -51,7 +51,7 @@ dependencies:
|
|
51
51
|
requirements:
|
52
52
|
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.0.
|
54
|
+
version: 0.0.4.beta1
|
55
55
|
type: :runtime
|
56
56
|
prerelease: false
|
57
57
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,7 @@ dependencies:
|
|
59
59
|
requirements:
|
60
60
|
- - '='
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 0.0.
|
62
|
+
version: 0.0.4.beta1
|
63
63
|
description: Provides simply theme to nimbleShop
|
64
64
|
email:
|
65
65
|
- neeraj@bigbinary.com
|
@@ -86,7 +86,6 @@ files:
|
|
86
86
|
- app/assets/stylesheets/nimbleshop_simply/override_bootstrap.css
|
87
87
|
- app/assets/stylesheets/nimbleshop_simply/simply.css
|
88
88
|
- app/assets/stylesheets/nimbleshop_simply/themed_bootstrap_and_overrides.css.less
|
89
|
-
- app/controllers/nimbleshop_simply/application_controller.rb
|
90
89
|
- app/controllers/nimbleshop_simply/carts_controller.rb
|
91
90
|
- app/controllers/nimbleshop_simply/checkout/payments_controller.rb
|
92
91
|
- app/controllers/nimbleshop_simply/checkout/shipping_addresses_controller.rb
|
@@ -95,7 +94,8 @@ files:
|
|
95
94
|
- app/controllers/nimbleshop_simply/pages_controller.rb
|
96
95
|
- app/controllers/nimbleshop_simply/product_groups_controller.rb
|
97
96
|
- app/controllers/nimbleshop_simply/products_controller.rb
|
98
|
-
- app/
|
97
|
+
- app/controllers/nimbleshop_simply/simply_controller.rb
|
98
|
+
- app/helpers/nimbleshop_simply/simply_helper.rb
|
99
99
|
- app/views/layouts/_footer.html.erb
|
100
100
|
- app/views/layouts/_google_analytics.html.erb
|
101
101
|
- app/views/layouts/_top_bar.html.erb
|
@@ -154,18 +154,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
154
154
|
- - ! '>='
|
155
155
|
- !ruby/object:Gem::Version
|
156
156
|
version: '0'
|
157
|
-
segments:
|
158
|
-
- 0
|
159
|
-
hash: -4502290635592305364
|
160
157
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
161
158
|
none: false
|
162
159
|
requirements:
|
163
|
-
- - ! '
|
160
|
+
- - ! '>'
|
164
161
|
- !ruby/object:Gem::Version
|
165
|
-
version:
|
166
|
-
segments:
|
167
|
-
- 0
|
168
|
-
hash: -4502290635592305364
|
162
|
+
version: 1.3.1
|
169
163
|
requirements: []
|
170
164
|
rubyforge_project:
|
171
165
|
rubygems_version: 1.8.24
|