spree_auth 0.60.0.RC1 → 0.60.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.
- data/app/views/users/show.html.erb +4 -2
- metadata +11 -17
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
<th><%= t("order_number") %></th>
|
|
25
25
|
<th><%= t("order_date") %></th>
|
|
26
26
|
<th><%= t("status") %></th>
|
|
27
|
-
<th><%= t("
|
|
27
|
+
<th><%= t("payment_state") %></th>
|
|
28
|
+
<th><%= t("shipment_state") %></th>
|
|
28
29
|
<th><%= t("total") %></th>
|
|
29
30
|
</tr>
|
|
30
31
|
</thead>
|
|
@@ -34,7 +35,8 @@
|
|
|
34
35
|
<td><%= link_to order.number, order_url(order) %></td>
|
|
35
36
|
<td><%=order.created_at.to_date%></td>
|
|
36
37
|
<td><%= t(order.state).titleize %></td>
|
|
37
|
-
<td><%= order.
|
|
38
|
+
<td><%= t("payment_states.#{order.payment_state}") if order.payment_state %></td>
|
|
39
|
+
<td><%= t("shipment_states.#{order.shipment_state}") if order.shipment_state %></td>
|
|
38
40
|
<td><%= number_to_currency order.total %></td>
|
|
39
41
|
</tr>
|
|
40
42
|
<% end %>
|
metadata
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: spree_auth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 239
|
|
5
|
+
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 60
|
|
9
9
|
- 0
|
|
10
|
-
|
|
11
|
-
- 1
|
|
12
|
-
version: 0.60.0.RC1
|
|
10
|
+
version: 0.60.0
|
|
13
11
|
platform: ruby
|
|
14
12
|
authors:
|
|
15
13
|
- Sean Schofield
|
|
@@ -17,7 +15,7 @@ autorequire:
|
|
|
17
15
|
bindir: bin
|
|
18
16
|
cert_chain: []
|
|
19
17
|
|
|
20
|
-
date: 2011-05-
|
|
18
|
+
date: 2011-05-13 00:00:00 -04:00
|
|
21
19
|
default_executable:
|
|
22
20
|
dependencies:
|
|
23
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -28,14 +26,12 @@ dependencies:
|
|
|
28
26
|
requirements:
|
|
29
27
|
- - "="
|
|
30
28
|
- !ruby/object:Gem::Version
|
|
31
|
-
hash:
|
|
29
|
+
hash: 239
|
|
32
30
|
segments:
|
|
33
31
|
- 0
|
|
34
32
|
- 60
|
|
35
33
|
- 0
|
|
36
|
-
|
|
37
|
-
- 1
|
|
38
|
-
version: 0.60.0.RC1
|
|
34
|
+
version: 0.60.0
|
|
39
35
|
type: :runtime
|
|
40
36
|
version_requirements: *id001
|
|
41
37
|
- !ruby/object:Gem::Dependency
|
|
@@ -153,18 +149,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
153
149
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
150
|
none: false
|
|
155
151
|
requirements:
|
|
156
|
-
- - "
|
|
152
|
+
- - ">="
|
|
157
153
|
- !ruby/object:Gem::Version
|
|
158
|
-
hash:
|
|
154
|
+
hash: 3
|
|
159
155
|
segments:
|
|
160
|
-
-
|
|
161
|
-
|
|
162
|
-
- 1
|
|
163
|
-
version: 1.3.1
|
|
156
|
+
- 0
|
|
157
|
+
version: "0"
|
|
164
158
|
requirements:
|
|
165
159
|
- none
|
|
166
160
|
rubyforge_project: spree_auth
|
|
167
|
-
rubygems_version: 1.
|
|
161
|
+
rubygems_version: 1.3.7
|
|
168
162
|
signing_key:
|
|
169
163
|
specification_version: 3
|
|
170
164
|
summary: Provides authentication and authorization services for use with Spree.
|