actionpack 3.0.11 → 3.0.12.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of actionpack might be problematic. Click here for more details.

data/CHANGELOG CHANGED
@@ -1,3 +1,10 @@
1
+ *Rails 3.0.12 (unreleased)*
2
+
3
+ * Fix using `tranlate` helper with a html translation which uses the `:count` option for
4
+ pluralization.
5
+
6
+ *Jon Leighton*
7
+
1
8
  *Rails 3.0.11 (unreleased)*
2
9
 
3
10
  * Fix XSS security vulnerability in the `translate` helper method. When using interpolation
@@ -2,8 +2,8 @@ module ActionPack
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
- TINY = 11
6
- PRE = nil
5
+ TINY = 12
6
+ PRE = "rc1"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
9
9
  end
@@ -48,7 +48,9 @@ module ActionView
48
48
  if html_safe_translation_key?(key)
49
49
  html_safe_options = options.dup
50
50
  options.except(*I18n::RESERVED_KEYS).each do |name, value|
51
- html_safe_options[name] = ERB::Util.html_escape(value.to_s)
51
+ unless name == :count && value.is_a?(Numeric)
52
+ html_safe_options[name] = ERB::Util.html_escape(value.to_s)
53
+ end
52
54
  end
53
55
  translation = I18n.translate(scope_key_by_partial(key), html_safe_options)
54
56
 
metadata CHANGED
@@ -1,13 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionpack
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
5
- prerelease:
4
+ hash: 15424023
5
+ prerelease: 7
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
- - 11
10
- version: 3.0.11
9
+ - 12
10
+ - rc
11
+ - 1
12
+ version: 3.0.12.rc1
11
13
  platform: ruby
12
14
  authors:
13
15
  - David Heinemeier Hansson
@@ -15,45 +17,48 @@ autorequire:
15
17
  bindir: bin
16
18
  cert_chain: []
17
19
 
18
- date: 2011-11-18 00:00:00 Z
20
+ date: 2012-02-22 00:00:00 Z
19
21
  dependencies:
20
22
  - !ruby/object:Gem::Dependency
21
23
  name: activesupport
22
- type: :runtime
23
24
  prerelease: false
24
- version_requirements: &id001 !ruby/object:Gem::Requirement
25
+ requirement: &id001 !ruby/object:Gem::Requirement
25
26
  none: false
26
27
  requirements:
27
28
  - - "="
28
29
  - !ruby/object:Gem::Version
29
- hash: 17
30
+ hash: 15424023
30
31
  segments:
31
32
  - 3
32
33
  - 0
33
- - 11
34
- version: 3.0.11
35
- requirement: *id001
34
+ - 12
35
+ - rc
36
+ - 1
37
+ version: 3.0.12.rc1
38
+ type: :runtime
39
+ version_requirements: *id001
36
40
  - !ruby/object:Gem::Dependency
37
41
  name: activemodel
38
- type: :runtime
39
42
  prerelease: false
40
- version_requirements: &id002 !ruby/object:Gem::Requirement
43
+ requirement: &id002 !ruby/object:Gem::Requirement
41
44
  none: false
42
45
  requirements:
43
46
  - - "="
44
47
  - !ruby/object:Gem::Version
45
- hash: 17
48
+ hash: 15424023
46
49
  segments:
47
50
  - 3
48
51
  - 0
49
- - 11
50
- version: 3.0.11
51
- requirement: *id002
52
+ - 12
53
+ - rc
54
+ - 1
55
+ version: 3.0.12.rc1
56
+ type: :runtime
57
+ version_requirements: *id002
52
58
  - !ruby/object:Gem::Dependency
53
59
  name: builder
54
- type: :runtime
55
60
  prerelease: false
56
- version_requirements: &id003 !ruby/object:Gem::Requirement
61
+ requirement: &id003 !ruby/object:Gem::Requirement
57
62
  none: false
58
63
  requirements:
59
64
  - - ~>
@@ -64,12 +69,12 @@ dependencies:
64
69
  - 1
65
70
  - 2
66
71
  version: 2.1.2
67
- requirement: *id003
72
+ type: :runtime
73
+ version_requirements: *id003
68
74
  - !ruby/object:Gem::Dependency
69
75
  name: i18n
70
- type: :runtime
71
76
  prerelease: false
72
- version_requirements: &id004 !ruby/object:Gem::Requirement
77
+ requirement: &id004 !ruby/object:Gem::Requirement
73
78
  none: false
74
79
  requirements:
75
80
  - - ~>
@@ -80,28 +85,28 @@ dependencies:
80
85
  - 5
81
86
  - 0
82
87
  version: 0.5.0
83
- requirement: *id004
88
+ type: :runtime
89
+ version_requirements: *id004
84
90
  - !ruby/object:Gem::Dependency
85
91
  name: rack
86
- type: :runtime
87
92
  prerelease: false
88
- version_requirements: &id005 !ruby/object:Gem::Requirement
93
+ requirement: &id005 !ruby/object:Gem::Requirement
89
94
  none: false
90
95
  requirements:
91
96
  - - ~>
92
97
  - !ruby/object:Gem::Version
93
- hash: 29
98
+ hash: 21
94
99
  segments:
95
100
  - 1
96
101
  - 2
97
- - 1
98
- version: 1.2.1
99
- requirement: *id005
102
+ - 5
103
+ version: 1.2.5
104
+ type: :runtime
105
+ version_requirements: *id005
100
106
  - !ruby/object:Gem::Dependency
101
107
  name: rack-test
102
- type: :runtime
103
108
  prerelease: false
104
- version_requirements: &id006 !ruby/object:Gem::Requirement
109
+ requirement: &id006 !ruby/object:Gem::Requirement
105
110
  none: false
106
111
  requirements:
107
112
  - - ~>
@@ -112,12 +117,12 @@ dependencies:
112
117
  - 5
113
118
  - 7
114
119
  version: 0.5.7
115
- requirement: *id006
120
+ type: :runtime
121
+ version_requirements: *id006
116
122
  - !ruby/object:Gem::Dependency
117
123
  name: rack-mount
118
- type: :runtime
119
124
  prerelease: false
120
- version_requirements: &id007 !ruby/object:Gem::Requirement
125
+ requirement: &id007 !ruby/object:Gem::Requirement
121
126
  none: false
122
127
  requirements:
123
128
  - - ~>
@@ -128,12 +133,12 @@ dependencies:
128
133
  - 6
129
134
  - 14
130
135
  version: 0.6.14
131
- requirement: *id007
136
+ type: :runtime
137
+ version_requirements: *id007
132
138
  - !ruby/object:Gem::Dependency
133
139
  name: tzinfo
134
- type: :runtime
135
140
  prerelease: false
136
- version_requirements: &id008 !ruby/object:Gem::Requirement
141
+ requirement: &id008 !ruby/object:Gem::Requirement
137
142
  none: false
138
143
  requirements:
139
144
  - - ~>
@@ -144,12 +149,12 @@ dependencies:
144
149
  - 3
145
150
  - 23
146
151
  version: 0.3.23
147
- requirement: *id008
152
+ type: :runtime
153
+ version_requirements: *id008
148
154
  - !ruby/object:Gem::Dependency
149
155
  name: erubis
150
- type: :runtime
151
156
  prerelease: false
152
- version_requirements: &id009 !ruby/object:Gem::Requirement
157
+ requirement: &id009 !ruby/object:Gem::Requirement
153
158
  none: false
154
159
  requirements:
155
160
  - - ~>
@@ -160,7 +165,8 @@ dependencies:
160
165
  - 6
161
166
  - 6
162
167
  version: 2.6.6
163
- requirement: *id009
168
+ type: :runtime
169
+ version_requirements: *id009
164
170
  description: Web apps on Rails. Simple, battle-tested conventions for building and testing MVC web applications. Works with any Rack-compatible server.
165
171
  email: david@loudthinking.com
166
172
  executables: []
@@ -173,167 +179,167 @@ files:
173
179
  - CHANGELOG
174
180
  - README.rdoc
175
181
  - MIT-LICENSE
176
- - lib/action_view/locale/en.yml
177
- - lib/action_view/template.rb
178
- - lib/action_view/render/partials.rb
179
- - lib/action_view/render/rendering.rb
180
- - lib/action_view/render/layouts.rb
181
- - lib/action_view/test_case.rb
182
- - lib/action_view/lookup_context.rb
183
- - lib/action_view/log_subscriber.rb
184
- - lib/action_view/context.rb
185
- - lib/action_view/helpers/raw_output_helper.rb
186
- - lib/action_view/helpers/text_helper.rb
187
- - lib/action_view/helpers/date_helper.rb
188
- - lib/action_view/helpers/sanitize_helper.rb
189
- - lib/action_view/helpers/translation_helper.rb
190
- - lib/action_view/helpers/scriptaculous_helper.rb
191
- - lib/action_view/helpers/number_helper.rb
192
- - lib/action_view/helpers/atom_feed_helper.rb
193
- - lib/action_view/helpers/form_helper.rb
194
- - lib/action_view/helpers/tag_helper.rb
195
- - lib/action_view/helpers/capture_helper.rb
196
- - lib/action_view/helpers/debug_helper.rb
197
- - lib/action_view/helpers/record_tag_helper.rb
198
- - lib/action_view/helpers/form_tag_helper.rb
199
- - lib/action_view/helpers/javascript_helper.rb
200
- - lib/action_view/helpers/csrf_helper.rb
201
- - lib/action_view/helpers/active_model_helper.rb
202
- - lib/action_view/helpers/cache_helper.rb
203
- - lib/action_view/helpers/url_helper.rb
204
- - lib/action_view/helpers/prototype_helper.rb
205
- - lib/action_view/helpers/form_options_helper.rb
206
- - lib/action_view/helpers/asset_tag_helper.rb
207
- - lib/action_view/data/encoding_conversions.txt
208
- - lib/action_view/railtie.rb
209
- - lib/action_view/template/handlers.rb
210
- - lib/action_view/template/handlers/builder.rb
211
- - lib/action_view/template/handlers/rjs.rb
212
- - lib/action_view/template/handlers/erb.rb
213
- - lib/action_view/template/handler.rb
214
- - lib/action_view/template/error.rb
215
- - lib/action_view/template/text.rb
216
- - lib/action_view/template/resolver.rb
217
- - lib/action_view/base.rb
218
- - lib/action_view/testing/resolvers.rb
219
- - lib/action_view/helpers.rb
220
- - lib/action_view/paths.rb
221
- - lib/action_dispatch.rb
222
- - lib/action_pack.rb
182
+ - lib/abstract_controller/asset_paths.rb
183
+ - lib/abstract_controller/base.rb
184
+ - lib/abstract_controller/callbacks.rb
185
+ - lib/abstract_controller/collector.rb
186
+ - lib/abstract_controller/helpers.rb
187
+ - lib/abstract_controller/layouts.rb
188
+ - lib/abstract_controller/logger.rb
189
+ - lib/abstract_controller/rendering.rb
190
+ - lib/abstract_controller/translation.rb
191
+ - lib/abstract_controller/view_paths.rb
192
+ - lib/abstract_controller.rb
193
+ - lib/action_controller/base.rb
194
+ - lib/action_controller/caching/actions.rb
195
+ - lib/action_controller/caching/fragments.rb
196
+ - lib/action_controller/caching/pages.rb
197
+ - lib/action_controller/caching/sweeping.rb
223
198
  - lib/action_controller/caching.rb
224
- - lib/action_controller/deprecated/url_writer.rb
225
- - lib/action_controller/deprecated/dispatcher.rb
226
199
  - lib/action_controller/deprecated/base.rb
227
- - lib/action_controller/deprecated/performance_test.rb
200
+ - lib/action_controller/deprecated/dispatcher.rb
228
201
  - lib/action_controller/deprecated/integration_test.rb
229
- - lib/action_controller/metal.rb
230
- - lib/action_controller/metal/url_for.rb
231
- - lib/action_controller/metal/streaming.rb
232
- - lib/action_controller/metal/head.rb
202
+ - lib/action_controller/deprecated/performance_test.rb
203
+ - lib/action_controller/deprecated/url_writer.rb
204
+ - lib/action_controller/deprecated.rb
205
+ - lib/action_controller/log_subscriber.rb
206
+ - lib/action_controller/metal/compatibility.rb
233
207
  - lib/action_controller/metal/conditional_get.rb
234
- - lib/action_controller/metal/flash.rb
235
- - lib/action_controller/metal/http_authentication.rb
236
- - lib/action_controller/metal/renderers.rb
237
- - lib/action_controller/metal/request_forgery_protection.rb
208
+ - lib/action_controller/metal/cookies.rb
238
209
  - lib/action_controller/metal/exceptions.rb
210
+ - lib/action_controller/metal/flash.rb
211
+ - lib/action_controller/metal/head.rb
212
+ - lib/action_controller/metal/helpers.rb
239
213
  - lib/action_controller/metal/hide_actions.rb
240
- - lib/action_controller/metal/compatibility.rb
241
- - lib/action_controller/metal/mime_responds.rb
242
- - lib/action_controller/metal/testing.rb
214
+ - lib/action_controller/metal/http_authentication.rb
243
215
  - lib/action_controller/metal/implicit_render.rb
244
- - lib/action_controller/metal/cookies.rb
245
216
  - lib/action_controller/metal/instrumentation.rb
217
+ - lib/action_controller/metal/mime_responds.rb
218
+ - lib/action_controller/metal/rack_delegation.rb
219
+ - lib/action_controller/metal/redirecting.rb
220
+ - lib/action_controller/metal/renderers.rb
246
221
  - lib/action_controller/metal/rendering.rb
247
- - lib/action_controller/metal/responder.rb
222
+ - lib/action_controller/metal/request_forgery_protection.rb
248
223
  - lib/action_controller/metal/rescue.rb
224
+ - lib/action_controller/metal/responder.rb
249
225
  - lib/action_controller/metal/session_management.rb
250
- - lib/action_controller/metal/helpers.rb
251
- - lib/action_controller/metal/redirecting.rb
252
- - lib/action_controller/metal/rack_delegation.rb
253
- - lib/action_controller/deprecated.rb
254
- - lib/action_controller/test_case.rb
255
- - lib/action_controller/log_subscriber.rb
256
- - lib/action_controller/record_identifier.rb
257
- - lib/action_controller/railtie.rb
226
+ - lib/action_controller/metal/streaming.rb
227
+ - lib/action_controller/metal/testing.rb
228
+ - lib/action_controller/metal/url_for.rb
229
+ - lib/action_controller/metal.rb
258
230
  - lib/action_controller/middleware.rb
259
- - lib/action_controller/base.rb
260
- - lib/action_controller/vendor/html-scanner.rb
261
- - lib/action_controller/vendor/html-scanner/html/tokenizer.rb
262
- - lib/action_controller/vendor/html-scanner/html/version.rb
263
- - lib/action_controller/vendor/html-scanner/html/sanitizer.rb
264
- - lib/action_controller/vendor/html-scanner/html/selector.rb
231
+ - lib/action_controller/railtie.rb
232
+ - lib/action_controller/record_identifier.rb
233
+ - lib/action_controller/test_case.rb
265
234
  - lib/action_controller/vendor/html-scanner/html/document.rb
266
235
  - lib/action_controller/vendor/html-scanner/html/node.rb
267
- - lib/action_controller/caching/sweeping.rb
268
- - lib/action_controller/caching/fragments.rb
269
- - lib/action_controller/caching/actions.rb
270
- - lib/action_controller/caching/pages.rb
271
- - lib/abstract_controller.rb
272
- - lib/action_dispatch/routing.rb
273
- - lib/action_dispatch/http/mime_negotiation.rb
274
- - lib/action_dispatch/http/parameter_filter.rb
236
+ - lib/action_controller/vendor/html-scanner/html/sanitizer.rb
237
+ - lib/action_controller/vendor/html-scanner/html/selector.rb
238
+ - lib/action_controller/vendor/html-scanner/html/tokenizer.rb
239
+ - lib/action_controller/vendor/html-scanner/html/version.rb
240
+ - lib/action_controller/vendor/html-scanner.rb
241
+ - lib/action_controller.rb
275
242
  - lib/action_dispatch/http/cache.rb
276
- - lib/action_dispatch/http/mime_types.rb
277
- - lib/action_dispatch/http/upload.rb
278
- - lib/action_dispatch/http/request.rb
279
243
  - lib/action_dispatch/http/filter_parameters.rb
244
+ - lib/action_dispatch/http/headers.rb
245
+ - lib/action_dispatch/http/mime_negotiation.rb
280
246
  - lib/action_dispatch/http/mime_type.rb
247
+ - lib/action_dispatch/http/mime_types.rb
248
+ - lib/action_dispatch/http/parameter_filter.rb
281
249
  - lib/action_dispatch/http/parameters.rb
250
+ - lib/action_dispatch/http/request.rb
282
251
  - lib/action_dispatch/http/response.rb
252
+ - lib/action_dispatch/http/upload.rb
283
253
  - lib/action_dispatch/http/url.rb
284
- - lib/action_dispatch/http/headers.rb
285
- - lib/action_dispatch/middleware/static.rb
254
+ - lib/action_dispatch/middleware/best_standards_support.rb
255
+ - lib/action_dispatch/middleware/callbacks.rb
256
+ - lib/action_dispatch/middleware/cookies.rb
257
+ - lib/action_dispatch/middleware/flash.rb
258
+ - lib/action_dispatch/middleware/head.rb
259
+ - lib/action_dispatch/middleware/params_parser.rb
286
260
  - lib/action_dispatch/middleware/remote_ip.rb
287
- - lib/action_dispatch/middleware/show_exceptions.rb
261
+ - lib/action_dispatch/middleware/rescue.rb
288
262
  - lib/action_dispatch/middleware/session/abstract_store.rb
289
263
  - lib/action_dispatch/middleware/session/cookie_store.rb
290
264
  - lib/action_dispatch/middleware/session/mem_cache_store.rb
291
- - lib/action_dispatch/middleware/head.rb
292
- - lib/action_dispatch/middleware/flash.rb
293
- - lib/action_dispatch/middleware/cookies.rb
294
- - lib/action_dispatch/middleware/templates/rescues/unknown_action.erb
295
- - lib/action_dispatch/middleware/templates/rescues/diagnostics.erb
296
- - lib/action_dispatch/middleware/templates/rescues/template_error.erb
297
- - lib/action_dispatch/middleware/templates/rescues/_trace.erb
265
+ - lib/action_dispatch/middleware/show_exceptions.rb
266
+ - lib/action_dispatch/middleware/stack.rb
267
+ - lib/action_dispatch/middleware/static.rb
298
268
  - lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb
269
+ - lib/action_dispatch/middleware/templates/rescues/_trace.erb
270
+ - lib/action_dispatch/middleware/templates/rescues/diagnostics.erb
299
271
  - lib/action_dispatch/middleware/templates/rescues/layout.erb
300
- - lib/action_dispatch/middleware/templates/rescues/routing_error.erb
301
272
  - lib/action_dispatch/middleware/templates/rescues/missing_template.erb
302
- - lib/action_dispatch/middleware/stack.rb
303
- - lib/action_dispatch/middleware/rescue.rb
304
- - lib/action_dispatch/middleware/best_standards_support.rb
305
- - lib/action_dispatch/middleware/callbacks.rb
306
- - lib/action_dispatch/middleware/params_parser.rb
307
- - lib/action_dispatch/routing/url_for.rb
308
- - lib/action_dispatch/routing/route.rb
273
+ - lib/action_dispatch/middleware/templates/rescues/routing_error.erb
274
+ - lib/action_dispatch/middleware/templates/rescues/template_error.erb
275
+ - lib/action_dispatch/middleware/templates/rescues/unknown_action.erb
276
+ - lib/action_dispatch/railtie.rb
309
277
  - lib/action_dispatch/routing/deprecated_mapper.rb
278
+ - lib/action_dispatch/routing/mapper.rb
310
279
  - lib/action_dispatch/routing/polymorphic_routes.rb
280
+ - lib/action_dispatch/routing/route.rb
311
281
  - lib/action_dispatch/routing/route_set.rb
312
- - lib/action_dispatch/routing/mapper.rb
313
- - lib/action_dispatch/railtie.rb
314
- - lib/action_dispatch/testing/test_request.rb
315
- - lib/action_dispatch/testing/test_process.rb
282
+ - lib/action_dispatch/routing/url_for.rb
283
+ - lib/action_dispatch/routing.rb
284
+ - lib/action_dispatch/testing/assertions/dom.rb
285
+ - lib/action_dispatch/testing/assertions/response.rb
286
+ - lib/action_dispatch/testing/assertions/routing.rb
287
+ - lib/action_dispatch/testing/assertions/selector.rb
288
+ - lib/action_dispatch/testing/assertions/tag.rb
316
289
  - lib/action_dispatch/testing/assertions.rb
317
290
  - lib/action_dispatch/testing/integration.rb
318
291
  - lib/action_dispatch/testing/performance_test.rb
292
+ - lib/action_dispatch/testing/test_process.rb
293
+ - lib/action_dispatch/testing/test_request.rb
319
294
  - lib/action_dispatch/testing/test_response.rb
320
- - lib/action_dispatch/testing/assertions/routing.rb
321
- - lib/action_dispatch/testing/assertions/tag.rb
322
- - lib/action_dispatch/testing/assertions/selector.rb
323
- - lib/action_dispatch/testing/assertions/dom.rb
324
- - lib/action_dispatch/testing/assertions/response.rb
295
+ - lib/action_dispatch.rb
325
296
  - lib/action_pack/version.rb
326
- - lib/abstract_controller/asset_paths.rb
327
- - lib/abstract_controller/logger.rb
328
- - lib/abstract_controller/rendering.rb
329
- - lib/abstract_controller/translation.rb
330
- - lib/abstract_controller/collector.rb
331
- - lib/abstract_controller/callbacks.rb
332
- - lib/abstract_controller/base.rb
333
- - lib/abstract_controller/layouts.rb
334
- - lib/abstract_controller/view_paths.rb
335
- - lib/abstract_controller/helpers.rb
336
- - lib/action_controller.rb
297
+ - lib/action_pack.rb
298
+ - lib/action_view/base.rb
299
+ - lib/action_view/context.rb
300
+ - lib/action_view/data/encoding_conversions.txt
301
+ - lib/action_view/helpers/active_model_helper.rb
302
+ - lib/action_view/helpers/asset_tag_helper.rb
303
+ - lib/action_view/helpers/atom_feed_helper.rb
304
+ - lib/action_view/helpers/cache_helper.rb
305
+ - lib/action_view/helpers/capture_helper.rb
306
+ - lib/action_view/helpers/csrf_helper.rb
307
+ - lib/action_view/helpers/date_helper.rb
308
+ - lib/action_view/helpers/debug_helper.rb
309
+ - lib/action_view/helpers/form_helper.rb
310
+ - lib/action_view/helpers/form_options_helper.rb
311
+ - lib/action_view/helpers/form_tag_helper.rb
312
+ - lib/action_view/helpers/javascript_helper.rb
313
+ - lib/action_view/helpers/number_helper.rb
314
+ - lib/action_view/helpers/prototype_helper.rb
315
+ - lib/action_view/helpers/raw_output_helper.rb
316
+ - lib/action_view/helpers/record_tag_helper.rb
317
+ - lib/action_view/helpers/sanitize_helper.rb
318
+ - lib/action_view/helpers/scriptaculous_helper.rb
319
+ - lib/action_view/helpers/tag_helper.rb
320
+ - lib/action_view/helpers/text_helper.rb
321
+ - lib/action_view/helpers/translation_helper.rb
322
+ - lib/action_view/helpers/url_helper.rb
323
+ - lib/action_view/helpers.rb
324
+ - lib/action_view/locale/en.yml
325
+ - lib/action_view/log_subscriber.rb
326
+ - lib/action_view/lookup_context.rb
327
+ - lib/action_view/paths.rb
328
+ - lib/action_view/railtie.rb
329
+ - lib/action_view/render/layouts.rb
330
+ - lib/action_view/render/partials.rb
331
+ - lib/action_view/render/rendering.rb
332
+ - lib/action_view/template/error.rb
333
+ - lib/action_view/template/handler.rb
334
+ - lib/action_view/template/handlers/builder.rb
335
+ - lib/action_view/template/handlers/erb.rb
336
+ - lib/action_view/template/handlers/rjs.rb
337
+ - lib/action_view/template/handlers.rb
338
+ - lib/action_view/template/resolver.rb
339
+ - lib/action_view/template/text.rb
340
+ - lib/action_view/template.rb
341
+ - lib/action_view/test_case.rb
342
+ - lib/action_view/testing/resolvers.rb
337
343
  - lib/action_view.rb
338
344
  homepage: http://www.rubyonrails.org
339
345
  licenses: []
@@ -357,16 +363,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
357
363
  required_rubygems_version: !ruby/object:Gem::Requirement
358
364
  none: false
359
365
  requirements:
360
- - - ">="
366
+ - - ">"
361
367
  - !ruby/object:Gem::Version
362
- hash: 3
368
+ hash: 25
363
369
  segments:
364
- - 0
365
- version: "0"
370
+ - 1
371
+ - 3
372
+ - 1
373
+ version: 1.3.1
366
374
  requirements:
367
375
  - none
368
376
  rubyforge_project: actionpack
369
- rubygems_version: 1.8.6
377
+ rubygems_version: 1.8.16
370
378
  signing_key:
371
379
  specification_version: 3
372
380
  summary: Web-flow and rendering framework putting the VC in MVC (part of Rails).