actionpack 3.2.0 → 3.2.1
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.md +9 -0
- data/lib/action_controller/metal/http_authentication.rb +1 -1
- data/lib/action_dispatch/routing/route_set.rb +20 -1
- data/lib/action_pack/version.rb +1 -1
- data/lib/action_view/helpers/date_helper.rb +4 -4
- data/lib/action_view/helpers/form_options_helper.rb +2 -1
- data/lib/action_view/helpers/number_helper.rb +3 -0
- data/lib/action_view/test_case.rb +3 -1
- metadata +314 -244
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
## Rails 3.2.1 (January 26, 2012) ##
|
2
|
+
|
3
|
+
* Documentation improvements.
|
4
|
+
|
5
|
+
* Allow `form.select` to accept ranges (regression). *Jeremy Walker*
|
6
|
+
|
7
|
+
* `datetime_select` works with -/+ infinity dates. *Joe Van Dyk*
|
8
|
+
|
9
|
+
|
1
10
|
## Rails 3.2.0 (January 20, 2012) ##
|
2
11
|
|
3
12
|
* Setting config.assets.logger to false turn off Sprockets logger *Guillermo Iguaran*
|
@@ -67,7 +67,7 @@ module ActionController
|
|
67
67
|
# class PostsController < ApplicationController
|
68
68
|
# REALM = "SuperSecret"
|
69
69
|
# USERS = {"dhh" => "secret", #plain text password
|
70
|
-
# "dap" => Digest::MD5.hexdigest(["dap",REALM,"secret"].join(":")) #ha1 digest password
|
70
|
+
# "dap" => Digest::MD5.hexdigest(["dap",REALM,"secret"].join(":"))} #ha1 digest password
|
71
71
|
#
|
72
72
|
# before_filter :authenticate, :except => [:index]
|
73
73
|
#
|
@@ -367,7 +367,26 @@ module ActionDispatch
|
|
367
367
|
SEPARATORS,
|
368
368
|
anchor)
|
369
369
|
|
370
|
-
Journey::Path::Pattern.new(strexp)
|
370
|
+
pattern = Journey::Path::Pattern.new(strexp)
|
371
|
+
|
372
|
+
builder = Journey::GTG::Builder.new pattern.spec
|
373
|
+
|
374
|
+
# Get all the symbol nodes followed by literals that are not the
|
375
|
+
# dummy node.
|
376
|
+
symbols = pattern.spec.grep(Journey::Nodes::Symbol).find_all { |n|
|
377
|
+
builder.followpos(n).first.literal?
|
378
|
+
}
|
379
|
+
|
380
|
+
# Get all the symbol nodes preceded by literals.
|
381
|
+
symbols.concat pattern.spec.find_all(&:literal?).map { |n|
|
382
|
+
builder.followpos(n).first
|
383
|
+
}.find_all(&:symbol?)
|
384
|
+
|
385
|
+
symbols.each { |x|
|
386
|
+
x.regexp = /(?:#{Regexp.union(x.regexp, '-')})+/
|
387
|
+
}
|
388
|
+
|
389
|
+
pattern
|
371
390
|
end
|
372
391
|
private :build_path
|
373
392
|
|
data/lib/action_pack/version.rb
CHANGED
@@ -734,7 +734,7 @@ module ActionView
|
|
734
734
|
|
735
735
|
def select_day
|
736
736
|
if @options[:use_hidden] || @options[:discard_day]
|
737
|
-
build_hidden(:day, day)
|
737
|
+
build_hidden(:day, day || 1)
|
738
738
|
else
|
739
739
|
build_options_and_select(:day, day, :start => 1, :end => 31, :leading_zeros => false, :use_two_digit_numbers => @options[:use_two_digit_numbers])
|
740
740
|
end
|
@@ -742,7 +742,7 @@ module ActionView
|
|
742
742
|
|
743
743
|
def select_month
|
744
744
|
if @options[:use_hidden] || @options[:discard_month]
|
745
|
-
build_hidden(:month, month)
|
745
|
+
build_hidden(:month, month || 1)
|
746
746
|
else
|
747
747
|
month_options = []
|
748
748
|
1.upto(12) do |month_number|
|
@@ -756,7 +756,7 @@ module ActionView
|
|
756
756
|
|
757
757
|
def select_year
|
758
758
|
if !@datetime || @datetime == 0
|
759
|
-
val = ''
|
759
|
+
val = '1'
|
760
760
|
middle_year = Date.today.year
|
761
761
|
else
|
762
762
|
val = middle_year = year
|
@@ -783,7 +783,7 @@ module ActionView
|
|
783
783
|
private
|
784
784
|
%w( sec min hour day month year ).each do |method|
|
785
785
|
define_method(method) do
|
786
|
-
@datetime.kind_of?(
|
786
|
+
@datetime.kind_of?(Numeric) ? @datetime : @datetime.send(method) if @datetime
|
787
787
|
end
|
788
788
|
end
|
789
789
|
|
@@ -336,7 +336,7 @@ module ActionView
|
|
336
336
|
|
337
337
|
end
|
338
338
|
|
339
|
-
# Returns a string of option tags that have been compiled by iterating over the +collection+ and assigning
|
339
|
+
# Returns a string of option tags that have been compiled by iterating over the +collection+ and assigning
|
340
340
|
# the result of a call to the +value_method+ as the option value and the +text_method+ as the option text.
|
341
341
|
# Example:
|
342
342
|
# options_from_collection_for_select(@people, 'id', 'name')
|
@@ -578,6 +578,7 @@ module ActionView
|
|
578
578
|
|
579
579
|
def to_select_tag(choices, options, html_options)
|
580
580
|
selected_value = options.has_key?(:selected) ? options[:selected] : value(object)
|
581
|
+
choices = choices.to_a if choices.is_a?(Range)
|
581
582
|
|
582
583
|
# Grouped choices look like this:
|
583
584
|
#
|
@@ -265,6 +265,7 @@ module ActionView
|
|
265
265
|
# * <tt>:delimiter</tt> - Sets the thousands delimiter (defaults to "").
|
266
266
|
# * <tt>:strip_insignificant_zeros</tt> - If +true+ removes insignificant zeros after the decimal separator
|
267
267
|
# (defaults to +false+).
|
268
|
+
# * <tt>:raise</tt> - If true, raises +InvalidNumberError+ when the argument is invalid.
|
268
269
|
#
|
269
270
|
# ==== Examples
|
270
271
|
# number_with_precision(111.2345) # => 111.235
|
@@ -344,6 +345,7 @@ module ActionView
|
|
344
345
|
# * <tt>:delimiter</tt> - Sets the thousands delimiter (defaults to "").
|
345
346
|
# * <tt>:strip_insignificant_zeros</tt> - If +true+ removes insignificant zeros after the decimal separator (defaults to +true+)
|
346
347
|
# * <tt>:prefix</tt> - If +:si+ formats the number using the SI prefix (defaults to :binary)
|
348
|
+
# * <tt>:raise</tt> - If true, raises +InvalidNumberError+ when the argument is invalid.
|
347
349
|
# ==== Examples
|
348
350
|
# number_to_human_size(123) # => 123 Bytes
|
349
351
|
# number_to_human_size(1234) # => 1.21 KB
|
@@ -425,6 +427,7 @@ module ActionView
|
|
425
427
|
# * *integers*: <tt>:unit</tt>, <tt>:ten</tt>, <tt>:hundred</tt>, <tt>:thousand</tt>, <tt>:million</tt>, <tt>:billion</tt>, <tt>:trillion</tt>, <tt>:quadrillion</tt>
|
426
428
|
# * *fractionals*: <tt>:deci</tt>, <tt>:centi</tt>, <tt>:mili</tt>, <tt>:micro</tt>, <tt>:nano</tt>, <tt>:pico</tt>, <tt>:femto</tt>
|
427
429
|
# * <tt>:format</tt> - Sets the format of the output string (defaults to "%n %u"). The field types are:
|
430
|
+
# * <tt>:raise</tt> - If true, raises +InvalidNumberError+ when the argument is invalid.
|
428
431
|
#
|
429
432
|
# %u The quantifier (ex.: 'thousand')
|
430
433
|
# %n The number
|
@@ -59,8 +59,10 @@ module ActionView
|
|
59
59
|
end
|
60
60
|
|
61
61
|
def determine_default_helper_class(name)
|
62
|
-
mod = name.sub(/Test$/, '').
|
62
|
+
mod = name.sub(/Test$/, '').constantize
|
63
63
|
mod.is_a?(Class) ? nil : mod
|
64
|
+
rescue NameError
|
65
|
+
nil
|
64
66
|
end
|
65
67
|
|
66
68
|
def helper_method(*methods)
|
metadata
CHANGED
@@ -1,347 +1,417 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: actionpack
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 13
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 3
|
8
|
+
- 2
|
9
|
+
- 1
|
10
|
+
version: 3.2.1
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- David Heinemeier Hansson
|
9
14
|
autorequire:
|
10
15
|
bindir: bin
|
11
16
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
17
|
+
|
18
|
+
date: 2012-01-26 00:00:00 -08:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
15
22
|
name: activesupport
|
16
|
-
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
17
25
|
none: false
|
18
|
-
requirements:
|
19
|
-
- - =
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
|
26
|
+
requirements:
|
27
|
+
- - "="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 13
|
30
|
+
segments:
|
31
|
+
- 3
|
32
|
+
- 2
|
33
|
+
- 1
|
34
|
+
version: 3.2.1
|
22
35
|
type: :runtime
|
23
|
-
|
24
|
-
|
25
|
-
- !ruby/object:Gem::Dependency
|
36
|
+
version_requirements: *id001
|
37
|
+
- !ruby/object:Gem::Dependency
|
26
38
|
name: activemodel
|
27
|
-
|
39
|
+
prerelease: false
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
28
41
|
none: false
|
29
|
-
requirements:
|
30
|
-
- - =
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
|
42
|
+
requirements:
|
43
|
+
- - "="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 13
|
46
|
+
segments:
|
47
|
+
- 3
|
48
|
+
- 2
|
49
|
+
- 1
|
50
|
+
version: 3.2.1
|
33
51
|
type: :runtime
|
34
|
-
|
35
|
-
|
36
|
-
- !ruby/object:Gem::Dependency
|
52
|
+
version_requirements: *id002
|
53
|
+
- !ruby/object:Gem::Dependency
|
37
54
|
name: rack-cache
|
38
|
-
|
55
|
+
prerelease: false
|
56
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
39
57
|
none: false
|
40
|
-
requirements:
|
58
|
+
requirements:
|
41
59
|
- - ~>
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
hash: 13
|
62
|
+
segments:
|
63
|
+
- 1
|
64
|
+
- 1
|
65
|
+
version: "1.1"
|
44
66
|
type: :runtime
|
45
|
-
|
46
|
-
|
47
|
-
- !ruby/object:Gem::Dependency
|
67
|
+
version_requirements: *id003
|
68
|
+
- !ruby/object:Gem::Dependency
|
48
69
|
name: builder
|
49
|
-
|
70
|
+
prerelease: false
|
71
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
50
72
|
none: false
|
51
|
-
requirements:
|
73
|
+
requirements:
|
52
74
|
- - ~>
|
53
|
-
- !ruby/object:Gem::Version
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
hash: 7
|
77
|
+
segments:
|
78
|
+
- 3
|
79
|
+
- 0
|
80
|
+
- 0
|
54
81
|
version: 3.0.0
|
55
82
|
type: :runtime
|
56
|
-
|
57
|
-
|
58
|
-
- !ruby/object:Gem::Dependency
|
83
|
+
version_requirements: *id004
|
84
|
+
- !ruby/object:Gem::Dependency
|
59
85
|
name: rack
|
60
|
-
|
86
|
+
prerelease: false
|
87
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
61
88
|
none: false
|
62
|
-
requirements:
|
89
|
+
requirements:
|
63
90
|
- - ~>
|
64
|
-
- !ruby/object:Gem::Version
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
hash: 7
|
93
|
+
segments:
|
94
|
+
- 1
|
95
|
+
- 4
|
96
|
+
- 0
|
65
97
|
version: 1.4.0
|
66
98
|
type: :runtime
|
67
|
-
|
68
|
-
|
69
|
-
- !ruby/object:Gem::Dependency
|
99
|
+
version_requirements: *id005
|
100
|
+
- !ruby/object:Gem::Dependency
|
70
101
|
name: rack-test
|
71
|
-
|
102
|
+
prerelease: false
|
103
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
72
104
|
none: false
|
73
|
-
requirements:
|
105
|
+
requirements:
|
74
106
|
- - ~>
|
75
|
-
- !ruby/object:Gem::Version
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
hash: 5
|
109
|
+
segments:
|
110
|
+
- 0
|
111
|
+
- 6
|
112
|
+
- 1
|
76
113
|
version: 0.6.1
|
77
114
|
type: :runtime
|
78
|
-
|
79
|
-
|
80
|
-
- !ruby/object:Gem::Dependency
|
115
|
+
version_requirements: *id006
|
116
|
+
- !ruby/object:Gem::Dependency
|
81
117
|
name: journey
|
82
|
-
|
118
|
+
prerelease: false
|
119
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
83
120
|
none: false
|
84
|
-
requirements:
|
121
|
+
requirements:
|
85
122
|
- - ~>
|
86
|
-
- !ruby/object:Gem::Version
|
87
|
-
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
hash: 21
|
125
|
+
segments:
|
126
|
+
- 1
|
127
|
+
- 0
|
128
|
+
- 1
|
129
|
+
version: 1.0.1
|
88
130
|
type: :runtime
|
89
|
-
|
90
|
-
|
91
|
-
- !ruby/object:Gem::Dependency
|
131
|
+
version_requirements: *id007
|
132
|
+
- !ruby/object:Gem::Dependency
|
92
133
|
name: sprockets
|
93
|
-
|
134
|
+
prerelease: false
|
135
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
94
136
|
none: false
|
95
|
-
requirements:
|
137
|
+
requirements:
|
96
138
|
- - ~>
|
97
|
-
- !ruby/object:Gem::Version
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
hash: 15
|
141
|
+
segments:
|
142
|
+
- 2
|
143
|
+
- 1
|
144
|
+
- 2
|
98
145
|
version: 2.1.2
|
99
146
|
type: :runtime
|
100
|
-
|
101
|
-
|
102
|
-
- !ruby/object:Gem::Dependency
|
147
|
+
version_requirements: *id008
|
148
|
+
- !ruby/object:Gem::Dependency
|
103
149
|
name: erubis
|
104
|
-
|
150
|
+
prerelease: false
|
151
|
+
requirement: &id009 !ruby/object:Gem::Requirement
|
105
152
|
none: false
|
106
|
-
requirements:
|
153
|
+
requirements:
|
107
154
|
- - ~>
|
108
|
-
- !ruby/object:Gem::Version
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
hash: 19
|
157
|
+
segments:
|
158
|
+
- 2
|
159
|
+
- 7
|
160
|
+
- 0
|
109
161
|
version: 2.7.0
|
110
162
|
type: :runtime
|
111
|
-
|
112
|
-
|
113
|
-
- !ruby/object:Gem::Dependency
|
163
|
+
version_requirements: *id009
|
164
|
+
- !ruby/object:Gem::Dependency
|
114
165
|
name: tzinfo
|
115
|
-
|
166
|
+
prerelease: false
|
167
|
+
requirement: &id010 !ruby/object:Gem::Requirement
|
116
168
|
none: false
|
117
|
-
requirements:
|
169
|
+
requirements:
|
118
170
|
- - ~>
|
119
|
-
- !ruby/object:Gem::Version
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
hash: 41
|
173
|
+
segments:
|
174
|
+
- 0
|
175
|
+
- 3
|
176
|
+
- 29
|
120
177
|
version: 0.3.29
|
121
178
|
type: :development
|
122
|
-
|
123
|
-
|
124
|
-
description: Web apps on Rails. Simple, battle-tested conventions for building and
|
125
|
-
testing MVC web applications. Works with any Rack-compatible server.
|
179
|
+
version_requirements: *id010
|
180
|
+
description: Web apps on Rails. Simple, battle-tested conventions for building and testing MVC web applications. Works with any Rack-compatible server.
|
126
181
|
email: david@loudthinking.com
|
127
182
|
executables: []
|
183
|
+
|
128
184
|
extensions: []
|
185
|
+
|
129
186
|
extra_rdoc_files: []
|
130
|
-
|
187
|
+
|
188
|
+
files:
|
131
189
|
- CHANGELOG.md
|
132
190
|
- README.rdoc
|
133
191
|
- MIT-LICENSE
|
134
|
-
- lib/
|
135
|
-
- lib/
|
136
|
-
- lib/
|
137
|
-
- lib/
|
138
|
-
- lib/
|
139
|
-
- lib/
|
140
|
-
- lib/
|
141
|
-
- lib/
|
142
|
-
- lib/
|
143
|
-
- lib/
|
144
|
-
- lib/
|
145
|
-
- lib/
|
146
|
-
- lib/
|
147
|
-
- lib/
|
148
|
-
- lib/
|
149
|
-
- lib/
|
150
|
-
- lib/
|
151
|
-
- lib/
|
152
|
-
- lib/
|
153
|
-
- lib/
|
154
|
-
- lib/
|
155
|
-
- lib/
|
156
|
-
- lib/
|
192
|
+
- lib/sprockets/railtie.rb
|
193
|
+
- lib/sprockets/compressors.rb
|
194
|
+
- lib/sprockets/helpers.rb
|
195
|
+
- lib/sprockets/bootstrap.rb
|
196
|
+
- lib/sprockets/assets.rake
|
197
|
+
- lib/sprockets/helpers/isolated_helper.rb
|
198
|
+
- lib/sprockets/helpers/rails_helper.rb
|
199
|
+
- lib/sprockets/static_compiler.rb
|
200
|
+
- lib/action_view/locale/en.yml
|
201
|
+
- lib/action_view/railtie.rb
|
202
|
+
- lib/action_view/renderer/partial_renderer.rb
|
203
|
+
- lib/action_view/renderer/streaming_template_renderer.rb
|
204
|
+
- lib/action_view/renderer/abstract_renderer.rb
|
205
|
+
- lib/action_view/renderer/renderer.rb
|
206
|
+
- lib/action_view/renderer/template_renderer.rb
|
207
|
+
- lib/action_view/test_case.rb
|
208
|
+
- lib/action_view/testing/resolvers.rb
|
209
|
+
- lib/action_view/template/text.rb
|
210
|
+
- lib/action_view/template/handlers/erb.rb
|
211
|
+
- lib/action_view/template/handlers/builder.rb
|
212
|
+
- lib/action_view/template/handlers.rb
|
213
|
+
- lib/action_view/template/resolver.rb
|
214
|
+
- lib/action_view/template/error.rb
|
215
|
+
- lib/action_view/context.rb
|
216
|
+
- lib/action_view/flows.rb
|
217
|
+
- lib/action_view/base.rb
|
218
|
+
- lib/action_view/template.rb
|
219
|
+
- lib/action_view/lookup_context.rb
|
220
|
+
- lib/action_view/helpers.rb
|
221
|
+
- lib/action_view/asset_paths.rb
|
222
|
+
- lib/action_view/helpers/sanitize_helper.rb
|
223
|
+
- lib/action_view/helpers/controller_helper.rb
|
224
|
+
- lib/action_view/helpers/capture_helper.rb
|
225
|
+
- lib/action_view/helpers/javascript_helper.rb
|
226
|
+
- lib/action_view/helpers/tag_helper.rb
|
227
|
+
- lib/action_view/helpers/form_helper.rb
|
228
|
+
- lib/action_view/helpers/active_model_helper.rb
|
229
|
+
- lib/action_view/helpers/debug_helper.rb
|
230
|
+
- lib/action_view/helpers/form_options_helper.rb
|
231
|
+
- lib/action_view/helpers/form_tag_helper.rb
|
232
|
+
- lib/action_view/helpers/csrf_helper.rb
|
233
|
+
- lib/action_view/helpers/cache_helper.rb
|
234
|
+
- lib/action_view/helpers/date_helper.rb
|
235
|
+
- lib/action_view/helpers/translation_helper.rb
|
236
|
+
- lib/action_view/helpers/rendering_helper.rb
|
237
|
+
- lib/action_view/helpers/record_tag_helper.rb
|
238
|
+
- lib/action_view/helpers/asset_paths.rb
|
239
|
+
- lib/action_view/helpers/asset_tag_helper.rb
|
240
|
+
- lib/action_view/helpers/url_helper.rb
|
241
|
+
- lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb
|
242
|
+
- lib/action_view/helpers/asset_tag_helpers/asset_include_tag.rb
|
243
|
+
- lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb
|
244
|
+
- lib/action_view/helpers/asset_tag_helpers/asset_paths.rb
|
245
|
+
- lib/action_view/helpers/text_helper.rb
|
246
|
+
- lib/action_view/helpers/output_safety_helper.rb
|
247
|
+
- lib/action_view/helpers/number_helper.rb
|
248
|
+
- lib/action_view/helpers/atom_feed_helper.rb
|
249
|
+
- lib/action_view/log_subscriber.rb
|
250
|
+
- lib/action_view/path_set.rb
|
251
|
+
- lib/action_view/buffers.rb
|
252
|
+
- lib/action_view.rb
|
253
|
+
- lib/action_pack.rb
|
254
|
+
- lib/action_controller.rb
|
255
|
+
- lib/action_dispatch.rb
|
256
|
+
- lib/action_controller/railtie.rb
|
257
|
+
- lib/action_controller/metal/instrumentation.rb
|
258
|
+
- lib/action_controller/metal/head.rb
|
259
|
+
- lib/action_controller/metal/request_forgery_protection.rb
|
157
260
|
- lib/action_controller/metal/compatibility.rb
|
158
|
-
- lib/action_controller/metal/conditional_get.rb
|
159
|
-
- lib/action_controller/metal/cookies.rb
|
160
|
-
- lib/action_controller/metal/data_streaming.rb
|
161
261
|
- lib/action_controller/metal/exceptions.rb
|
162
|
-
- lib/action_controller/metal/flash.rb
|
163
|
-
- lib/action_controller/metal/force_ssl.rb
|
164
|
-
- lib/action_controller/metal/head.rb
|
165
|
-
- lib/action_controller/metal/helpers.rb
|
166
262
|
- lib/action_controller/metal/hide_actions.rb
|
167
|
-
- lib/action_controller/metal/
|
168
|
-
- lib/action_controller/metal/implicit_render.rb
|
169
|
-
- lib/action_controller/metal/instrumentation.rb
|
170
|
-
- lib/action_controller/metal/mime_responds.rb
|
171
|
-
- lib/action_controller/metal/params_wrapper.rb
|
172
|
-
- lib/action_controller/metal/rack_delegation.rb
|
173
|
-
- lib/action_controller/metal/redirecting.rb
|
263
|
+
- lib/action_controller/metal/cookies.rb
|
174
264
|
- lib/action_controller/metal/renderers.rb
|
265
|
+
- lib/action_controller/metal/conditional_get.rb
|
175
266
|
- lib/action_controller/metal/rendering.rb
|
176
|
-
- lib/action_controller/metal/request_forgery_protection.rb
|
177
|
-
- lib/action_controller/metal/rescue.rb
|
178
267
|
- lib/action_controller/metal/responder.rb
|
179
|
-
- lib/action_controller/metal/
|
268
|
+
- lib/action_controller/metal/helpers.rb
|
269
|
+
- lib/action_controller/metal/data_streaming.rb
|
270
|
+
- lib/action_controller/metal/force_ssl.rb
|
180
271
|
- lib/action_controller/metal/streaming.rb
|
181
272
|
- lib/action_controller/metal/testing.rb
|
273
|
+
- lib/action_controller/metal/mime_responds.rb
|
274
|
+
- lib/action_controller/metal/rescue.rb
|
275
|
+
- lib/action_controller/metal/implicit_render.rb
|
276
|
+
- lib/action_controller/metal/redirecting.rb
|
277
|
+
- lib/action_controller/metal/session_management.rb
|
278
|
+
- lib/action_controller/metal/rack_delegation.rb
|
279
|
+
- lib/action_controller/metal/flash.rb
|
280
|
+
- lib/action_controller/metal/http_authentication.rb
|
281
|
+
- lib/action_controller/metal/params_wrapper.rb
|
182
282
|
- lib/action_controller/metal/url_for.rb
|
183
|
-
- lib/action_controller/metal.rb
|
184
|
-
- lib/action_controller/middleware.rb
|
185
|
-
- lib/action_controller/railtie.rb
|
186
283
|
- lib/action_controller/railties/paths.rb
|
187
|
-
- lib/action_controller/record_identifier.rb
|
188
284
|
- lib/action_controller/test_case.rb
|
285
|
+
- lib/action_controller/middleware.rb
|
286
|
+
- lib/action_controller/base.rb
|
287
|
+
- lib/action_controller/deprecated/integration_test.rb
|
288
|
+
- lib/action_controller/deprecated/performance_test.rb
|
289
|
+
- lib/action_controller/metal.rb
|
189
290
|
- lib/action_controller/vendor/html-scanner/html/document.rb
|
190
|
-
- lib/action_controller/vendor/html-scanner/html/node.rb
|
191
|
-
- lib/action_controller/vendor/html-scanner/html/sanitizer.rb
|
192
|
-
- lib/action_controller/vendor/html-scanner/html/selector.rb
|
193
291
|
- lib/action_controller/vendor/html-scanner/html/tokenizer.rb
|
292
|
+
- lib/action_controller/vendor/html-scanner/html/selector.rb
|
293
|
+
- lib/action_controller/vendor/html-scanner/html/sanitizer.rb
|
294
|
+
- lib/action_controller/vendor/html-scanner/html/node.rb
|
194
295
|
- lib/action_controller/vendor/html-scanner/html/version.rb
|
195
296
|
- lib/action_controller/vendor/html-scanner.rb
|
196
|
-
- lib/action_controller.rb
|
197
|
-
- lib/
|
198
|
-
- lib/
|
199
|
-
- lib/
|
200
|
-
- lib/
|
201
|
-
- lib/
|
202
|
-
- lib/
|
203
|
-
- lib/
|
204
|
-
- lib/
|
205
|
-
- lib/
|
206
|
-
- lib/action_dispatch/
|
207
|
-
- lib/action_dispatch/
|
208
|
-
- lib/action_dispatch/
|
209
|
-
- lib/action_dispatch/
|
210
|
-
- lib/action_dispatch/middleware/
|
297
|
+
- lib/action_controller/caching/sweeping.rb
|
298
|
+
- lib/action_controller/caching/fragments.rb
|
299
|
+
- lib/action_controller/caching/actions.rb
|
300
|
+
- lib/action_controller/caching/pages.rb
|
301
|
+
- lib/action_controller/caching.rb
|
302
|
+
- lib/action_controller/log_subscriber.rb
|
303
|
+
- lib/action_controller/deprecated.rb
|
304
|
+
- lib/action_controller/record_identifier.rb
|
305
|
+
- lib/abstract_controller.rb
|
306
|
+
- lib/action_pack/version.rb
|
307
|
+
- lib/action_dispatch/railtie.rb
|
308
|
+
- lib/action_dispatch/middleware/session/mem_cache_store.rb
|
309
|
+
- lib/action_dispatch/middleware/session/cache_store.rb
|
310
|
+
- lib/action_dispatch/middleware/session/abstract_store.rb
|
311
|
+
- lib/action_dispatch/middleware/session/cookie_store.rb
|
312
|
+
- lib/action_dispatch/middleware/reloader.rb
|
313
|
+
- lib/action_dispatch/middleware/static.rb
|
314
|
+
- lib/action_dispatch/middleware/head.rb
|
211
315
|
- lib/action_dispatch/middleware/body_proxy.rb
|
212
|
-
- lib/action_dispatch/middleware/callbacks.rb
|
213
316
|
- lib/action_dispatch/middleware/cookies.rb
|
214
|
-
- lib/action_dispatch/middleware/
|
317
|
+
- lib/action_dispatch/middleware/stack.rb
|
215
318
|
- lib/action_dispatch/middleware/exception_wrapper.rb
|
216
|
-
- lib/action_dispatch/middleware/flash.rb
|
217
|
-
- lib/action_dispatch/middleware/head.rb
|
218
319
|
- lib/action_dispatch/middleware/params_parser.rb
|
219
|
-
- lib/action_dispatch/middleware/
|
220
|
-
- lib/action_dispatch/middleware/
|
320
|
+
- lib/action_dispatch/middleware/callbacks.rb
|
321
|
+
- lib/action_dispatch/middleware/show_exceptions.rb
|
322
|
+
- lib/action_dispatch/middleware/rescue.rb
|
221
323
|
- lib/action_dispatch/middleware/remote_ip.rb
|
324
|
+
- lib/action_dispatch/middleware/best_standards_support.rb
|
325
|
+
- lib/action_dispatch/middleware/flash.rb
|
326
|
+
- lib/action_dispatch/middleware/public_exceptions.rb
|
327
|
+
- lib/action_dispatch/middleware/debug_exceptions.rb
|
222
328
|
- lib/action_dispatch/middleware/request_id.rb
|
223
|
-
- lib/action_dispatch/middleware/
|
224
|
-
- lib/action_dispatch/middleware/
|
225
|
-
- lib/action_dispatch/middleware/session/cache_store.rb
|
226
|
-
- lib/action_dispatch/middleware/session/cookie_store.rb
|
227
|
-
- lib/action_dispatch/middleware/session/mem_cache_store.rb
|
228
|
-
- lib/action_dispatch/middleware/show_exceptions.rb
|
229
|
-
- lib/action_dispatch/middleware/stack.rb
|
230
|
-
- lib/action_dispatch/middleware/static.rb
|
231
|
-
- lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb
|
329
|
+
- lib/action_dispatch/middleware/templates/rescues/unknown_action.erb
|
330
|
+
- lib/action_dispatch/middleware/templates/rescues/routing_error.erb
|
232
331
|
- lib/action_dispatch/middleware/templates/rescues/_trace.erb
|
233
|
-
- lib/action_dispatch/middleware/templates/rescues/diagnostics.erb
|
234
332
|
- lib/action_dispatch/middleware/templates/rescues/layout.erb
|
235
333
|
- lib/action_dispatch/middleware/templates/rescues/missing_template.erb
|
236
|
-
- lib/action_dispatch/middleware/templates/rescues/
|
334
|
+
- lib/action_dispatch/middleware/templates/rescues/diagnostics.erb
|
335
|
+
- lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb
|
237
336
|
- lib/action_dispatch/middleware/templates/rescues/template_error.erb
|
238
|
-
- lib/action_dispatch/middleware/templates/rescues/unknown_action.erb
|
239
|
-
- lib/action_dispatch/railtie.rb
|
240
|
-
- lib/action_dispatch/routing/mapper.rb
|
241
|
-
- lib/action_dispatch/routing/polymorphic_routes.rb
|
242
337
|
- lib/action_dispatch/routing/redirection.rb
|
243
|
-
- lib/action_dispatch/routing/route_set.rb
|
244
338
|
- lib/action_dispatch/routing/routes_proxy.rb
|
339
|
+
- lib/action_dispatch/routing/polymorphic_routes.rb
|
340
|
+
- lib/action_dispatch/routing/route_set.rb
|
341
|
+
- lib/action_dispatch/routing/mapper.rb
|
245
342
|
- lib/action_dispatch/routing/url_for.rb
|
246
|
-
- lib/action_dispatch/
|
247
|
-
- lib/action_dispatch/testing/
|
343
|
+
- lib/action_dispatch/testing/test_request.rb
|
344
|
+
- lib/action_dispatch/testing/performance_test.rb
|
345
|
+
- lib/action_dispatch/testing/assertions.rb
|
346
|
+
- lib/action_dispatch/testing/test_response.rb
|
347
|
+
- lib/action_dispatch/testing/assertions/tag.rb
|
248
348
|
- lib/action_dispatch/testing/assertions/response.rb
|
249
|
-
- lib/action_dispatch/testing/assertions/
|
349
|
+
- lib/action_dispatch/testing/assertions/dom.rb
|
250
350
|
- lib/action_dispatch/testing/assertions/selector.rb
|
251
|
-
- lib/action_dispatch/testing/assertions/
|
252
|
-
- lib/action_dispatch/testing/assertions.rb
|
253
|
-
- lib/action_dispatch/testing/integration.rb
|
254
|
-
- lib/action_dispatch/testing/performance_test.rb
|
351
|
+
- lib/action_dispatch/testing/assertions/routing.rb
|
255
352
|
- lib/action_dispatch/testing/test_process.rb
|
256
|
-
- lib/action_dispatch/testing/
|
257
|
-
- lib/action_dispatch/
|
258
|
-
- lib/action_dispatch.rb
|
259
|
-
- lib/
|
260
|
-
- lib/
|
261
|
-
- lib/
|
262
|
-
- lib/
|
263
|
-
- lib/
|
264
|
-
- lib/
|
265
|
-
- lib/
|
266
|
-
- lib/
|
267
|
-
- lib/
|
268
|
-
- lib/
|
269
|
-
- lib/
|
270
|
-
- lib/
|
271
|
-
- lib/
|
272
|
-
- lib/
|
273
|
-
- lib/
|
274
|
-
- lib/
|
275
|
-
- lib/
|
276
|
-
- lib/
|
277
|
-
- lib/
|
278
|
-
- lib/
|
279
|
-
- lib/
|
280
|
-
- lib/
|
281
|
-
- lib/
|
282
|
-
- lib/
|
283
|
-
|
284
|
-
- lib/action_view/helpers/number_helper.rb
|
285
|
-
- lib/action_view/helpers/output_safety_helper.rb
|
286
|
-
- lib/action_view/helpers/record_tag_helper.rb
|
287
|
-
- lib/action_view/helpers/rendering_helper.rb
|
288
|
-
- lib/action_view/helpers/sanitize_helper.rb
|
289
|
-
- lib/action_view/helpers/tag_helper.rb
|
290
|
-
- lib/action_view/helpers/text_helper.rb
|
291
|
-
- lib/action_view/helpers/translation_helper.rb
|
292
|
-
- lib/action_view/helpers/url_helper.rb
|
293
|
-
- lib/action_view/helpers.rb
|
294
|
-
- lib/action_view/locale/en.yml
|
295
|
-
- lib/action_view/log_subscriber.rb
|
296
|
-
- lib/action_view/lookup_context.rb
|
297
|
-
- lib/action_view/path_set.rb
|
298
|
-
- lib/action_view/railtie.rb
|
299
|
-
- lib/action_view/renderer/abstract_renderer.rb
|
300
|
-
- lib/action_view/renderer/partial_renderer.rb
|
301
|
-
- lib/action_view/renderer/renderer.rb
|
302
|
-
- lib/action_view/renderer/streaming_template_renderer.rb
|
303
|
-
- lib/action_view/renderer/template_renderer.rb
|
304
|
-
- lib/action_view/template/error.rb
|
305
|
-
- lib/action_view/template/handlers/builder.rb
|
306
|
-
- lib/action_view/template/handlers/erb.rb
|
307
|
-
- lib/action_view/template/handlers.rb
|
308
|
-
- lib/action_view/template/resolver.rb
|
309
|
-
- lib/action_view/template/text.rb
|
310
|
-
- lib/action_view/template.rb
|
311
|
-
- lib/action_view/test_case.rb
|
312
|
-
- lib/action_view/testing/resolvers.rb
|
313
|
-
- lib/action_view.rb
|
314
|
-
- lib/sprockets/assets.rake
|
315
|
-
- lib/sprockets/bootstrap.rb
|
316
|
-
- lib/sprockets/compressors.rb
|
317
|
-
- lib/sprockets/helpers/isolated_helper.rb
|
318
|
-
- lib/sprockets/helpers/rails_helper.rb
|
319
|
-
- lib/sprockets/helpers.rb
|
320
|
-
- lib/sprockets/railtie.rb
|
321
|
-
- lib/sprockets/static_compiler.rb
|
353
|
+
- lib/action_dispatch/testing/integration.rb
|
354
|
+
- lib/action_dispatch/http/request.rb
|
355
|
+
- lib/action_dispatch/http/filter_parameters.rb
|
356
|
+
- lib/action_dispatch/http/mime_types.rb
|
357
|
+
- lib/action_dispatch/http/parameters.rb
|
358
|
+
- lib/action_dispatch/http/url.rb
|
359
|
+
- lib/action_dispatch/http/mime_type.rb
|
360
|
+
- lib/action_dispatch/http/response.rb
|
361
|
+
- lib/action_dispatch/http/mime_negotiation.rb
|
362
|
+
- lib/action_dispatch/http/upload.rb
|
363
|
+
- lib/action_dispatch/http/rack_cache.rb
|
364
|
+
- lib/action_dispatch/http/cache.rb
|
365
|
+
- lib/action_dispatch/http/headers.rb
|
366
|
+
- lib/action_dispatch/http/parameter_filter.rb
|
367
|
+
- lib/action_dispatch/routing.rb
|
368
|
+
- lib/abstract_controller/collector.rb
|
369
|
+
- lib/abstract_controller/railties/routes_helpers.rb
|
370
|
+
- lib/abstract_controller/translation.rb
|
371
|
+
- lib/abstract_controller/logger.rb
|
372
|
+
- lib/abstract_controller/rendering.rb
|
373
|
+
- lib/abstract_controller/base.rb
|
374
|
+
- lib/abstract_controller/helpers.rb
|
375
|
+
- lib/abstract_controller/callbacks.rb
|
376
|
+
- lib/abstract_controller/asset_paths.rb
|
377
|
+
- lib/abstract_controller/view_paths.rb
|
378
|
+
- lib/abstract_controller/url_for.rb
|
379
|
+
- lib/abstract_controller/layouts.rb
|
380
|
+
has_rdoc: true
|
322
381
|
homepage: http://www.rubyonrails.org
|
323
382
|
licenses: []
|
383
|
+
|
324
384
|
post_install_message:
|
325
385
|
rdoc_options: []
|
326
|
-
|
386
|
+
|
387
|
+
require_paths:
|
327
388
|
- lib
|
328
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
389
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
329
390
|
none: false
|
330
|
-
requirements:
|
331
|
-
- -
|
332
|
-
- !ruby/object:Gem::Version
|
391
|
+
requirements:
|
392
|
+
- - ">="
|
393
|
+
- !ruby/object:Gem::Version
|
394
|
+
hash: 57
|
395
|
+
segments:
|
396
|
+
- 1
|
397
|
+
- 8
|
398
|
+
- 7
|
333
399
|
version: 1.8.7
|
334
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
400
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
335
401
|
none: false
|
336
|
-
requirements:
|
337
|
-
- -
|
338
|
-
- !ruby/object:Gem::Version
|
339
|
-
|
340
|
-
|
402
|
+
requirements:
|
403
|
+
- - ">="
|
404
|
+
- !ruby/object:Gem::Version
|
405
|
+
hash: 3
|
406
|
+
segments:
|
407
|
+
- 0
|
408
|
+
version: "0"
|
409
|
+
requirements:
|
341
410
|
- none
|
342
411
|
rubyforge_project:
|
343
|
-
rubygems_version: 1.
|
412
|
+
rubygems_version: 1.6.2
|
344
413
|
signing_key:
|
345
414
|
specification_version: 3
|
346
415
|
summary: Web-flow and rendering framework putting the VC in MVC (part of Rails).
|
347
416
|
test_files: []
|
417
|
+
|