actionpack 3.2.19 → 4.0.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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +850 -401
- data/MIT-LICENSE +1 -1
- data/README.rdoc +5 -288
- data/lib/abstract_controller/asset_paths.rb +2 -2
- data/lib/abstract_controller/base.rb +39 -37
- data/lib/abstract_controller/callbacks.rb +101 -82
- data/lib/abstract_controller/collector.rb +7 -3
- data/lib/abstract_controller/helpers.rb +25 -13
- data/lib/abstract_controller/layouts.rb +74 -74
- data/lib/abstract_controller/logger.rb +1 -2
- data/lib/abstract_controller/rendering.rb +30 -13
- data/lib/abstract_controller/translation.rb +16 -1
- data/lib/abstract_controller/url_for.rb +6 -6
- data/lib/abstract_controller/view_paths.rb +1 -1
- data/lib/abstract_controller.rb +1 -8
- data/lib/action_controller/base.rb +46 -22
- data/lib/action_controller/caching/fragments.rb +23 -53
- data/lib/action_controller/caching.rb +46 -33
- data/lib/action_controller/deprecated/integration_test.rb +3 -0
- data/lib/action_controller/deprecated.rb +5 -1
- data/lib/action_controller/log_subscriber.rb +16 -8
- data/lib/action_controller/metal/conditional_get.rb +76 -32
- data/lib/action_controller/metal/data_streaming.rb +20 -26
- data/lib/action_controller/metal/exceptions.rb +19 -6
- data/lib/action_controller/metal/flash.rb +24 -9
- data/lib/action_controller/metal/force_ssl.rb +70 -12
- data/lib/action_controller/metal/head.rb +25 -4
- data/lib/action_controller/metal/helpers.rb +5 -9
- data/lib/action_controller/metal/hide_actions.rb +0 -1
- data/lib/action_controller/metal/http_authentication.rb +107 -83
- data/lib/action_controller/metal/implicit_render.rb +1 -1
- data/lib/action_controller/metal/instrumentation.rb +2 -1
- data/lib/action_controller/metal/live.rb +175 -0
- data/lib/action_controller/metal/mime_responds.rb +161 -47
- data/lib/action_controller/metal/params_wrapper.rb +112 -74
- data/lib/action_controller/metal/rack_delegation.rb +9 -3
- data/lib/action_controller/metal/redirecting.rb +15 -20
- data/lib/action_controller/metal/renderers.rb +11 -9
- data/lib/action_controller/metal/rendering.rb +9 -1
- data/lib/action_controller/metal/request_forgery_protection.rb +112 -19
- data/lib/action_controller/metal/responder.rb +20 -19
- data/lib/action_controller/metal/streaming.rb +12 -18
- data/lib/action_controller/metal/strong_parameters.rb +520 -0
- data/lib/action_controller/metal/testing.rb +13 -18
- data/lib/action_controller/metal/url_for.rb +28 -25
- data/lib/action_controller/metal.rb +17 -32
- data/lib/action_controller/model_naming.rb +12 -0
- data/lib/action_controller/railtie.rb +33 -17
- data/lib/action_controller/railties/helpers.rb +22 -0
- data/lib/action_controller/record_identifier.rb +18 -72
- data/lib/action_controller/test_case.rb +251 -131
- data/lib/action_controller/vendor/html-scanner.rb +4 -19
- data/lib/action_controller.rb +15 -6
- data/lib/action_dispatch/http/cache.rb +63 -11
- data/lib/action_dispatch/http/filter_parameters.rb +18 -8
- data/lib/action_dispatch/http/filter_redirect.rb +37 -0
- data/lib/action_dispatch/http/headers.rb +49 -17
- data/lib/action_dispatch/http/mime_negotiation.rb +24 -1
- data/lib/action_dispatch/http/mime_type.rb +154 -100
- data/lib/action_dispatch/http/mime_types.rb +1 -1
- data/lib/action_dispatch/http/parameter_filter.rb +44 -46
- data/lib/action_dispatch/http/parameters.rb +28 -28
- data/lib/action_dispatch/http/rack_cache.rb +2 -3
- data/lib/action_dispatch/http/request.rb +64 -18
- data/lib/action_dispatch/http/response.rb +130 -35
- data/lib/action_dispatch/http/upload.rb +63 -20
- data/lib/action_dispatch/http/url.rb +98 -35
- data/lib/action_dispatch/journey/backwards.rb +5 -0
- data/lib/action_dispatch/journey/formatter.rb +146 -0
- data/lib/action_dispatch/journey/gtg/builder.rb +162 -0
- data/lib/action_dispatch/journey/gtg/simulator.rb +44 -0
- data/lib/action_dispatch/journey/gtg/transition_table.rb +156 -0
- data/lib/action_dispatch/journey/nfa/builder.rb +76 -0
- data/lib/action_dispatch/journey/nfa/dot.rb +36 -0
- data/lib/action_dispatch/journey/nfa/simulator.rb +47 -0
- data/lib/action_dispatch/journey/nfa/transition_table.rb +163 -0
- data/lib/action_dispatch/journey/nodes/node.rb +124 -0
- data/lib/action_dispatch/journey/parser.rb +206 -0
- data/lib/action_dispatch/journey/parser.y +47 -0
- data/lib/action_dispatch/journey/parser_extras.rb +23 -0
- data/lib/action_dispatch/journey/path/pattern.rb +196 -0
- data/lib/action_dispatch/journey/route.rb +124 -0
- data/lib/action_dispatch/journey/router/strexp.rb +24 -0
- data/lib/action_dispatch/journey/router/utils.rb +54 -0
- data/lib/action_dispatch/journey/router.rb +166 -0
- data/lib/action_dispatch/journey/routes.rb +75 -0
- data/lib/action_dispatch/journey/scanner.rb +61 -0
- data/lib/action_dispatch/journey/visitors.rb +197 -0
- data/lib/action_dispatch/journey/visualizer/fsm.css +34 -0
- data/lib/action_dispatch/journey/visualizer/fsm.js +134 -0
- data/lib/action_dispatch/journey/visualizer/index.html.erb +52 -0
- data/lib/action_dispatch/journey.rb +5 -0
- data/lib/action_dispatch/middleware/callbacks.rb +9 -4
- data/lib/action_dispatch/middleware/cookies.rb +259 -114
- data/lib/action_dispatch/middleware/debug_exceptions.rb +26 -17
- data/lib/action_dispatch/middleware/exception_wrapper.rb +29 -3
- data/lib/action_dispatch/middleware/flash.rb +58 -58
- data/lib/action_dispatch/middleware/params_parser.rb +14 -29
- data/lib/action_dispatch/middleware/public_exceptions.rb +30 -14
- data/lib/action_dispatch/middleware/reloader.rb +6 -6
- data/lib/action_dispatch/middleware/remote_ip.rb +145 -39
- data/lib/action_dispatch/middleware/request_id.rb +2 -6
- data/lib/action_dispatch/middleware/session/abstract_store.rb +22 -20
- data/lib/action_dispatch/middleware/session/cookie_store.rb +82 -28
- data/lib/action_dispatch/middleware/session/mem_cache_store.rb +8 -3
- data/lib/action_dispatch/middleware/show_exceptions.rb +12 -45
- data/lib/action_dispatch/middleware/ssl.rb +70 -0
- data/lib/action_dispatch/middleware/stack.rb +6 -1
- data/lib/action_dispatch/middleware/static.rb +2 -1
- data/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb +14 -11
- data/lib/action_dispatch/middleware/templates/rescues/_source.erb +25 -0
- data/lib/action_dispatch/middleware/templates/rescues/_trace.erb +7 -9
- data/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb +15 -9
- data/lib/action_dispatch/middleware/templates/rescues/layout.erb +127 -5
- data/lib/action_dispatch/middleware/templates/rescues/missing_template.erb +7 -2
- data/lib/action_dispatch/middleware/templates/rescues/routing_error.erb +30 -15
- data/lib/action_dispatch/middleware/templates/rescues/template_error.erb +39 -13
- data/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb +6 -2
- data/lib/action_dispatch/middleware/templates/routes/_route.html.erb +16 -0
- data/lib/action_dispatch/middleware/templates/routes/_table.html.erb +144 -0
- data/lib/action_dispatch/railtie.rb +16 -6
- data/lib/action_dispatch/request/session.rb +181 -0
- data/lib/action_dispatch/routing/inspector.rb +240 -0
- data/lib/action_dispatch/routing/mapper.rb +540 -291
- data/lib/action_dispatch/routing/polymorphic_routes.rb +16 -20
- data/lib/action_dispatch/routing/redirection.rb +46 -29
- data/lib/action_dispatch/routing/route_set.rb +207 -164
- data/lib/action_dispatch/routing/routes_proxy.rb +2 -0
- data/lib/action_dispatch/routing/url_for.rb +48 -33
- data/lib/action_dispatch/routing.rb +48 -83
- data/lib/action_dispatch/testing/assertions/dom.rb +3 -13
- data/lib/action_dispatch/testing/assertions/response.rb +32 -40
- data/lib/action_dispatch/testing/assertions/routing.rb +42 -41
- data/lib/action_dispatch/testing/assertions/selector.rb +17 -22
- data/lib/action_dispatch/testing/assertions/tag.rb +20 -23
- data/lib/action_dispatch/testing/integration.rb +65 -51
- data/lib/action_dispatch/testing/test_process.rb +9 -6
- data/lib/action_dispatch/testing/test_request.rb +7 -3
- data/lib/action_dispatch.rb +21 -15
- data/lib/action_pack/version.rb +7 -6
- data/lib/action_pack.rb +1 -1
- data/lib/action_view/base.rb +15 -34
- data/lib/action_view/buffers.rb +7 -1
- data/lib/action_view/context.rb +4 -4
- data/lib/action_view/dependency_tracker.rb +93 -0
- data/lib/action_view/digestor.rb +85 -0
- data/lib/action_view/flows.rb +1 -4
- data/lib/action_view/helpers/active_model_helper.rb +3 -4
- data/lib/action_view/helpers/asset_tag_helper.rb +215 -352
- data/lib/action_view/helpers/asset_url_helper.rb +355 -0
- data/lib/action_view/helpers/atom_feed_helper.rb +13 -10
- data/lib/action_view/helpers/cache_helper.rb +150 -18
- data/lib/action_view/helpers/capture_helper.rb +44 -31
- data/lib/action_view/helpers/csrf_helper.rb +0 -2
- data/lib/action_view/helpers/date_helper.rb +269 -248
- data/lib/action_view/helpers/debug_helper.rb +10 -11
- data/lib/action_view/helpers/form_helper.rb +931 -537
- data/lib/action_view/helpers/form_options_helper.rb +341 -166
- data/lib/action_view/helpers/form_tag_helper.rb +190 -90
- data/lib/action_view/helpers/javascript_helper.rb +23 -16
- data/lib/action_view/helpers/number_helper.rb +148 -329
- data/lib/action_view/helpers/output_safety_helper.rb +3 -3
- data/lib/action_view/helpers/record_tag_helper.rb +17 -22
- data/lib/action_view/helpers/rendering_helper.rb +2 -2
- data/lib/action_view/helpers/sanitize_helper.rb +3 -6
- data/lib/action_view/helpers/tag_helper.rb +46 -33
- data/lib/action_view/helpers/tags/base.rb +147 -0
- data/lib/action_view/helpers/tags/check_box.rb +64 -0
- data/lib/action_view/helpers/tags/checkable.rb +16 -0
- data/lib/action_view/helpers/tags/collection_check_boxes.rb +43 -0
- data/lib/action_view/helpers/tags/collection_helpers.rb +83 -0
- data/lib/action_view/helpers/tags/collection_radio_buttons.rb +36 -0
- data/lib/action_view/helpers/tags/collection_select.rb +28 -0
- data/lib/action_view/helpers/tags/color_field.rb +25 -0
- data/lib/action_view/helpers/tags/date_field.rb +13 -0
- data/lib/action_view/helpers/tags/date_select.rb +72 -0
- data/lib/action_view/helpers/tags/datetime_field.rb +22 -0
- data/lib/action_view/helpers/tags/datetime_local_field.rb +19 -0
- data/lib/action_view/helpers/tags/datetime_select.rb +8 -0
- data/lib/action_view/helpers/tags/email_field.rb +8 -0
- data/lib/action_view/helpers/tags/file_field.rb +8 -0
- data/lib/action_view/helpers/tags/grouped_collection_select.rb +29 -0
- data/lib/action_view/helpers/tags/hidden_field.rb +8 -0
- data/lib/action_view/helpers/tags/label.rb +65 -0
- data/lib/action_view/helpers/tags/month_field.rb +13 -0
- data/lib/action_view/helpers/tags/number_field.rb +18 -0
- data/lib/action_view/helpers/tags/password_field.rb +12 -0
- data/lib/action_view/helpers/tags/radio_button.rb +31 -0
- data/lib/action_view/helpers/tags/range_field.rb +8 -0
- data/lib/action_view/helpers/tags/search_field.rb +24 -0
- data/lib/action_view/helpers/tags/select.rb +40 -0
- data/lib/action_view/helpers/tags/tel_field.rb +8 -0
- data/lib/action_view/helpers/tags/text_area.rb +18 -0
- data/lib/action_view/helpers/tags/text_field.rb +29 -0
- data/lib/action_view/helpers/tags/time_field.rb +13 -0
- data/lib/action_view/helpers/tags/time_select.rb +8 -0
- data/lib/action_view/helpers/tags/time_zone_select.rb +20 -0
- data/lib/action_view/helpers/tags/url_field.rb +8 -0
- data/lib/action_view/helpers/tags/week_field.rb +13 -0
- data/lib/action_view/helpers/tags.rb +39 -0
- data/lib/action_view/helpers/text_helper.rb +130 -114
- data/lib/action_view/helpers/translation_helper.rb +32 -16
- data/lib/action_view/helpers/url_helper.rb +211 -270
- data/lib/action_view/helpers.rb +2 -4
- data/lib/action_view/locale/en.yml +1 -105
- data/lib/action_view/log_subscriber.rb +6 -4
- data/lib/action_view/lookup_context.rb +15 -28
- data/lib/action_view/model_naming.rb +12 -0
- data/lib/action_view/path_set.rb +8 -20
- data/lib/action_view/railtie.rb +6 -22
- data/lib/action_view/record_identifier.rb +84 -0
- data/lib/action_view/renderer/abstract_renderer.rb +25 -19
- data/lib/action_view/renderer/partial_renderer.rb +158 -81
- data/lib/action_view/renderer/renderer.rb +8 -12
- data/lib/action_view/renderer/streaming_template_renderer.rb +2 -5
- data/lib/action_view/renderer/template_renderer.rb +12 -10
- data/lib/action_view/routing_url_for.rb +107 -0
- data/lib/action_view/template/error.rb +22 -12
- data/lib/action_view/template/handlers/builder.rb +1 -1
- data/lib/action_view/template/handlers/erb.rb +40 -19
- data/lib/action_view/template/handlers/raw.rb +11 -0
- data/lib/action_view/template/handlers.rb +12 -9
- data/lib/action_view/template/resolver.rb +107 -53
- data/lib/action_view/template/text.rb +12 -8
- data/lib/action_view/template/types.rb +57 -0
- data/lib/action_view/template.rb +25 -23
- data/lib/action_view/test_case.rb +67 -42
- data/lib/{action_controller → action_view}/vendor/html-scanner/html/document.rb +0 -0
- data/lib/{action_controller → action_view}/vendor/html-scanner/html/node.rb +12 -12
- data/lib/{action_controller → action_view}/vendor/html-scanner/html/sanitizer.rb +13 -2
- data/lib/{action_controller → action_view}/vendor/html-scanner/html/selector.rb +9 -9
- data/lib/{action_controller → action_view}/vendor/html-scanner/html/tokenizer.rb +1 -1
- data/lib/{action_controller → action_view}/vendor/html-scanner/html/version.rb +0 -0
- data/lib/action_view/vendor/html-scanner.rb +20 -0
- data/lib/action_view.rb +17 -8
- metadata +184 -214
- data/lib/action_controller/caching/actions.rb +0 -185
- data/lib/action_controller/caching/pages.rb +0 -187
- data/lib/action_controller/caching/sweeping.rb +0 -97
- data/lib/action_controller/deprecated/performance_test.rb +0 -1
- data/lib/action_controller/metal/compatibility.rb +0 -65
- data/lib/action_controller/metal/session_management.rb +0 -14
- data/lib/action_controller/railties/paths.rb +0 -25
- data/lib/action_dispatch/middleware/best_standards_support.rb +0 -30
- data/lib/action_dispatch/middleware/body_proxy.rb +0 -30
- data/lib/action_dispatch/middleware/head.rb +0 -18
- data/lib/action_dispatch/middleware/rescue.rb +0 -26
- data/lib/action_dispatch/testing/performance_test.rb +0 -10
- data/lib/action_view/asset_paths.rb +0 -142
- data/lib/action_view/helpers/asset_paths.rb +0 -7
- data/lib/action_view/helpers/asset_tag_helpers/asset_include_tag.rb +0 -146
- data/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb +0 -93
- data/lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb +0 -193
- data/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb +0 -148
- data/lib/sprockets/assets.rake +0 -99
- data/lib/sprockets/bootstrap.rb +0 -37
- data/lib/sprockets/compressors.rb +0 -83
- data/lib/sprockets/helpers/isolated_helper.rb +0 -13
- data/lib/sprockets/helpers/rails_helper.rb +0 -182
- data/lib/sprockets/helpers.rb +0 -6
- data/lib/sprockets/railtie.rb +0 -62
- data/lib/sprockets/static_compiler.rb +0 -56
metadata
CHANGED
|
@@ -1,191 +1,120 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: actionpack
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
prerelease:
|
|
6
|
-
segments:
|
|
7
|
-
- 3
|
|
8
|
-
- 2
|
|
9
|
-
- 19
|
|
10
|
-
version: 3.2.19
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 4.0.0
|
|
11
5
|
platform: ruby
|
|
12
|
-
authors:
|
|
6
|
+
authors:
|
|
13
7
|
- David Heinemeier Hansson
|
|
14
8
|
autorequire:
|
|
15
9
|
bindir: bin
|
|
16
10
|
cert_chain: []
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
dependencies:
|
|
21
|
-
- !ruby/object:Gem::Dependency
|
|
22
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
|
23
|
-
none: false
|
|
24
|
-
requirements:
|
|
25
|
-
- - "="
|
|
26
|
-
- !ruby/object:Gem::Version
|
|
27
|
-
hash: 41
|
|
28
|
-
segments:
|
|
29
|
-
- 3
|
|
30
|
-
- 2
|
|
31
|
-
- 19
|
|
32
|
-
version: 3.2.19
|
|
33
|
-
type: :runtime
|
|
34
|
-
version_requirements: *id001
|
|
35
|
-
prerelease: false
|
|
11
|
+
date: 2013-06-25 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
36
14
|
name: activesupport
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
- !ruby/object:Gem::Version
|
|
43
|
-
hash: 41
|
|
44
|
-
segments:
|
|
45
|
-
- 3
|
|
46
|
-
- 2
|
|
47
|
-
- 19
|
|
48
|
-
version: 3.2.19
|
|
49
|
-
type: :runtime
|
|
50
|
-
version_requirements: *id002
|
|
51
|
-
prerelease: false
|
|
52
|
-
name: activemodel
|
|
53
|
-
- !ruby/object:Gem::Dependency
|
|
54
|
-
requirement: &id003 !ruby/object:Gem::Requirement
|
|
55
|
-
none: false
|
|
56
|
-
requirements:
|
|
57
|
-
- - ~>
|
|
58
|
-
- !ruby/object:Gem::Version
|
|
59
|
-
hash: 11
|
|
60
|
-
segments:
|
|
61
|
-
- 1
|
|
62
|
-
- 2
|
|
63
|
-
version: "1.2"
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - '='
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 4.0.0
|
|
64
20
|
type: :runtime
|
|
65
|
-
version_requirements: *id003
|
|
66
|
-
prerelease: false
|
|
67
|
-
name: rack-cache
|
|
68
|
-
- !ruby/object:Gem::Dependency
|
|
69
|
-
requirement: &id004 !ruby/object:Gem::Requirement
|
|
70
|
-
none: false
|
|
71
|
-
requirements:
|
|
72
|
-
- - ~>
|
|
73
|
-
- !ruby/object:Gem::Version
|
|
74
|
-
hash: 7
|
|
75
|
-
segments:
|
|
76
|
-
- 3
|
|
77
|
-
- 0
|
|
78
|
-
- 0
|
|
79
|
-
version: 3.0.0
|
|
80
|
-
type: :runtime
|
|
81
|
-
version_requirements: *id004
|
|
82
21
|
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - '='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 4.0.0
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
83
28
|
name: builder
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
none: false
|
|
87
|
-
requirements:
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
88
31
|
- - ~>
|
|
89
|
-
- !ruby/object:Gem::Version
|
|
90
|
-
|
|
91
|
-
segments:
|
|
92
|
-
- 1
|
|
93
|
-
- 4
|
|
94
|
-
- 5
|
|
95
|
-
version: 1.4.5
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 3.1.0
|
|
96
34
|
type: :runtime
|
|
97
|
-
version_requirements: *id005
|
|
98
35
|
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ~>
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 3.1.0
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
99
42
|
name: rack
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
none: false
|
|
103
|
-
requirements:
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
104
45
|
- - ~>
|
|
105
|
-
- !ruby/object:Gem::Version
|
|
106
|
-
|
|
107
|
-
segments:
|
|
108
|
-
- 0
|
|
109
|
-
- 6
|
|
110
|
-
- 1
|
|
111
|
-
version: 0.6.1
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 1.5.2
|
|
112
48
|
type: :runtime
|
|
113
|
-
version_requirements: *id006
|
|
114
49
|
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ~>
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 1.5.2
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
115
56
|
name: rack-test
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
none: false
|
|
119
|
-
requirements:
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
120
59
|
- - ~>
|
|
121
|
-
- !ruby/object:Gem::Version
|
|
122
|
-
|
|
123
|
-
segments:
|
|
124
|
-
- 1
|
|
125
|
-
- 0
|
|
126
|
-
- 4
|
|
127
|
-
version: 1.0.4
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: 0.6.2
|
|
128
62
|
type: :runtime
|
|
129
|
-
version_requirements: *id007
|
|
130
63
|
prerelease: false
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
requirement: &id008 !ruby/object:Gem::Requirement
|
|
134
|
-
none: false
|
|
135
|
-
requirements:
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
136
66
|
- - ~>
|
|
137
|
-
- !ruby/object:Gem::Version
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
version: 2.2.1
|
|
144
|
-
type: :runtime
|
|
145
|
-
version_requirements: *id008
|
|
146
|
-
prerelease: false
|
|
147
|
-
name: sprockets
|
|
148
|
-
- !ruby/object:Gem::Dependency
|
|
149
|
-
requirement: &id009 !ruby/object:Gem::Requirement
|
|
150
|
-
none: false
|
|
151
|
-
requirements:
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: 0.6.2
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: erubis
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
152
73
|
- - ~>
|
|
153
|
-
- !ruby/object:Gem::Version
|
|
154
|
-
hash: 19
|
|
155
|
-
segments:
|
|
156
|
-
- 2
|
|
157
|
-
- 7
|
|
158
|
-
- 0
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
159
75
|
version: 2.7.0
|
|
160
76
|
type: :runtime
|
|
161
|
-
version_requirements: *id009
|
|
162
77
|
prerelease: false
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
requirement: &id010 !ruby/object:Gem::Requirement
|
|
166
|
-
none: false
|
|
167
|
-
requirements:
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
168
80
|
- - ~>
|
|
169
|
-
- !ruby/object:Gem::Version
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: 2.7.0
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: activemodel
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - '='
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 4.0.0
|
|
176
90
|
type: :development
|
|
177
|
-
version_requirements: *id010
|
|
178
91
|
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - '='
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: 4.0.0
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
179
98
|
name: tzinfo
|
|
180
|
-
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ~>
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: 0.3.37
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - ~>
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: 0.3.37
|
|
111
|
+
description: Web apps on Rails. Simple, battle-tested conventions for building and
|
|
112
|
+
testing MVC web applications. Works with any Rack-compatible server.
|
|
181
113
|
email: david@loudthinking.com
|
|
182
114
|
executables: []
|
|
183
|
-
|
|
184
115
|
extensions: []
|
|
185
|
-
|
|
186
116
|
extra_rdoc_files: []
|
|
187
|
-
|
|
188
|
-
files:
|
|
117
|
+
files:
|
|
189
118
|
- CHANGELOG.md
|
|
190
119
|
- README.rdoc
|
|
191
120
|
- MIT-LICENSE
|
|
@@ -203,16 +132,11 @@ files:
|
|
|
203
132
|
- lib/abstract_controller/view_paths.rb
|
|
204
133
|
- lib/abstract_controller.rb
|
|
205
134
|
- lib/action_controller/base.rb
|
|
206
|
-
- lib/action_controller/caching/actions.rb
|
|
207
135
|
- lib/action_controller/caching/fragments.rb
|
|
208
|
-
- lib/action_controller/caching/pages.rb
|
|
209
|
-
- lib/action_controller/caching/sweeping.rb
|
|
210
136
|
- lib/action_controller/caching.rb
|
|
211
137
|
- lib/action_controller/deprecated/integration_test.rb
|
|
212
|
-
- lib/action_controller/deprecated/performance_test.rb
|
|
213
138
|
- lib/action_controller/deprecated.rb
|
|
214
139
|
- lib/action_controller/log_subscriber.rb
|
|
215
|
-
- lib/action_controller/metal/compatibility.rb
|
|
216
140
|
- lib/action_controller/metal/conditional_get.rb
|
|
217
141
|
- lib/action_controller/metal/cookies.rb
|
|
218
142
|
- lib/action_controller/metal/data_streaming.rb
|
|
@@ -225,6 +149,7 @@ files:
|
|
|
225
149
|
- lib/action_controller/metal/http_authentication.rb
|
|
226
150
|
- lib/action_controller/metal/implicit_render.rb
|
|
227
151
|
- lib/action_controller/metal/instrumentation.rb
|
|
152
|
+
- lib/action_controller/metal/live.rb
|
|
228
153
|
- lib/action_controller/metal/mime_responds.rb
|
|
229
154
|
- lib/action_controller/metal/params_wrapper.rb
|
|
230
155
|
- lib/action_controller/metal/rack_delegation.rb
|
|
@@ -234,26 +159,22 @@ files:
|
|
|
234
159
|
- lib/action_controller/metal/request_forgery_protection.rb
|
|
235
160
|
- lib/action_controller/metal/rescue.rb
|
|
236
161
|
- lib/action_controller/metal/responder.rb
|
|
237
|
-
- lib/action_controller/metal/session_management.rb
|
|
238
162
|
- lib/action_controller/metal/streaming.rb
|
|
163
|
+
- lib/action_controller/metal/strong_parameters.rb
|
|
239
164
|
- lib/action_controller/metal/testing.rb
|
|
240
165
|
- lib/action_controller/metal/url_for.rb
|
|
241
166
|
- lib/action_controller/metal.rb
|
|
242
167
|
- lib/action_controller/middleware.rb
|
|
168
|
+
- lib/action_controller/model_naming.rb
|
|
243
169
|
- lib/action_controller/railtie.rb
|
|
244
|
-
- lib/action_controller/railties/
|
|
170
|
+
- lib/action_controller/railties/helpers.rb
|
|
245
171
|
- lib/action_controller/record_identifier.rb
|
|
246
172
|
- lib/action_controller/test_case.rb
|
|
247
|
-
- lib/action_controller/vendor/html-scanner/html/document.rb
|
|
248
|
-
- lib/action_controller/vendor/html-scanner/html/node.rb
|
|
249
|
-
- lib/action_controller/vendor/html-scanner/html/sanitizer.rb
|
|
250
|
-
- lib/action_controller/vendor/html-scanner/html/selector.rb
|
|
251
|
-
- lib/action_controller/vendor/html-scanner/html/tokenizer.rb
|
|
252
|
-
- lib/action_controller/vendor/html-scanner/html/version.rb
|
|
253
173
|
- lib/action_controller/vendor/html-scanner.rb
|
|
254
174
|
- lib/action_controller.rb
|
|
255
175
|
- lib/action_dispatch/http/cache.rb
|
|
256
176
|
- lib/action_dispatch/http/filter_parameters.rb
|
|
177
|
+
- lib/action_dispatch/http/filter_redirect.rb
|
|
257
178
|
- lib/action_dispatch/http/headers.rb
|
|
258
179
|
- lib/action_dispatch/http/mime_negotiation.rb
|
|
259
180
|
- lib/action_dispatch/http/mime_type.rb
|
|
@@ -265,28 +186,51 @@ files:
|
|
|
265
186
|
- lib/action_dispatch/http/response.rb
|
|
266
187
|
- lib/action_dispatch/http/upload.rb
|
|
267
188
|
- lib/action_dispatch/http/url.rb
|
|
268
|
-
- lib/action_dispatch/
|
|
269
|
-
- lib/action_dispatch/
|
|
189
|
+
- lib/action_dispatch/journey/backwards.rb
|
|
190
|
+
- lib/action_dispatch/journey/formatter.rb
|
|
191
|
+
- lib/action_dispatch/journey/gtg/builder.rb
|
|
192
|
+
- lib/action_dispatch/journey/gtg/simulator.rb
|
|
193
|
+
- lib/action_dispatch/journey/gtg/transition_table.rb
|
|
194
|
+
- lib/action_dispatch/journey/nfa/builder.rb
|
|
195
|
+
- lib/action_dispatch/journey/nfa/dot.rb
|
|
196
|
+
- lib/action_dispatch/journey/nfa/simulator.rb
|
|
197
|
+
- lib/action_dispatch/journey/nfa/transition_table.rb
|
|
198
|
+
- lib/action_dispatch/journey/nodes/node.rb
|
|
199
|
+
- lib/action_dispatch/journey/parser.rb
|
|
200
|
+
- lib/action_dispatch/journey/parser.y
|
|
201
|
+
- lib/action_dispatch/journey/parser_extras.rb
|
|
202
|
+
- lib/action_dispatch/journey/path/pattern.rb
|
|
203
|
+
- lib/action_dispatch/journey/route.rb
|
|
204
|
+
- lib/action_dispatch/journey/router/strexp.rb
|
|
205
|
+
- lib/action_dispatch/journey/router/utils.rb
|
|
206
|
+
- lib/action_dispatch/journey/router.rb
|
|
207
|
+
- lib/action_dispatch/journey/routes.rb
|
|
208
|
+
- lib/action_dispatch/journey/scanner.rb
|
|
209
|
+
- lib/action_dispatch/journey/visitors.rb
|
|
210
|
+
- lib/action_dispatch/journey/visualizer/fsm.css
|
|
211
|
+
- lib/action_dispatch/journey/visualizer/fsm.js
|
|
212
|
+
- lib/action_dispatch/journey/visualizer/index.html.erb
|
|
213
|
+
- lib/action_dispatch/journey.rb
|
|
270
214
|
- lib/action_dispatch/middleware/callbacks.rb
|
|
271
215
|
- lib/action_dispatch/middleware/cookies.rb
|
|
272
216
|
- lib/action_dispatch/middleware/debug_exceptions.rb
|
|
273
217
|
- lib/action_dispatch/middleware/exception_wrapper.rb
|
|
274
218
|
- lib/action_dispatch/middleware/flash.rb
|
|
275
|
-
- lib/action_dispatch/middleware/head.rb
|
|
276
219
|
- lib/action_dispatch/middleware/params_parser.rb
|
|
277
220
|
- lib/action_dispatch/middleware/public_exceptions.rb
|
|
278
221
|
- lib/action_dispatch/middleware/reloader.rb
|
|
279
222
|
- lib/action_dispatch/middleware/remote_ip.rb
|
|
280
223
|
- lib/action_dispatch/middleware/request_id.rb
|
|
281
|
-
- lib/action_dispatch/middleware/rescue.rb
|
|
282
224
|
- lib/action_dispatch/middleware/session/abstract_store.rb
|
|
283
225
|
- lib/action_dispatch/middleware/session/cache_store.rb
|
|
284
226
|
- lib/action_dispatch/middleware/session/cookie_store.rb
|
|
285
227
|
- lib/action_dispatch/middleware/session/mem_cache_store.rb
|
|
286
228
|
- lib/action_dispatch/middleware/show_exceptions.rb
|
|
229
|
+
- lib/action_dispatch/middleware/ssl.rb
|
|
287
230
|
- lib/action_dispatch/middleware/stack.rb
|
|
288
231
|
- lib/action_dispatch/middleware/static.rb
|
|
289
232
|
- lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb
|
|
233
|
+
- lib/action_dispatch/middleware/templates/rescues/_source.erb
|
|
290
234
|
- lib/action_dispatch/middleware/templates/rescues/_trace.erb
|
|
291
235
|
- lib/action_dispatch/middleware/templates/rescues/diagnostics.erb
|
|
292
236
|
- lib/action_dispatch/middleware/templates/rescues/layout.erb
|
|
@@ -294,7 +238,11 @@ files:
|
|
|
294
238
|
- lib/action_dispatch/middleware/templates/rescues/routing_error.erb
|
|
295
239
|
- lib/action_dispatch/middleware/templates/rescues/template_error.erb
|
|
296
240
|
- lib/action_dispatch/middleware/templates/rescues/unknown_action.erb
|
|
241
|
+
- lib/action_dispatch/middleware/templates/routes/_route.html.erb
|
|
242
|
+
- lib/action_dispatch/middleware/templates/routes/_table.html.erb
|
|
297
243
|
- lib/action_dispatch/railtie.rb
|
|
244
|
+
- lib/action_dispatch/request/session.rb
|
|
245
|
+
- lib/action_dispatch/routing/inspector.rb
|
|
298
246
|
- lib/action_dispatch/routing/mapper.rb
|
|
299
247
|
- lib/action_dispatch/routing/polymorphic_routes.rb
|
|
300
248
|
- lib/action_dispatch/routing/redirection.rb
|
|
@@ -309,25 +257,21 @@ files:
|
|
|
309
257
|
- lib/action_dispatch/testing/assertions/tag.rb
|
|
310
258
|
- lib/action_dispatch/testing/assertions.rb
|
|
311
259
|
- lib/action_dispatch/testing/integration.rb
|
|
312
|
-
- lib/action_dispatch/testing/performance_test.rb
|
|
313
260
|
- lib/action_dispatch/testing/test_process.rb
|
|
314
261
|
- lib/action_dispatch/testing/test_request.rb
|
|
315
262
|
- lib/action_dispatch/testing/test_response.rb
|
|
316
263
|
- lib/action_dispatch.rb
|
|
317
264
|
- lib/action_pack/version.rb
|
|
318
265
|
- lib/action_pack.rb
|
|
319
|
-
- lib/action_view/asset_paths.rb
|
|
320
266
|
- lib/action_view/base.rb
|
|
321
267
|
- lib/action_view/buffers.rb
|
|
322
268
|
- lib/action_view/context.rb
|
|
269
|
+
- lib/action_view/dependency_tracker.rb
|
|
270
|
+
- lib/action_view/digestor.rb
|
|
323
271
|
- lib/action_view/flows.rb
|
|
324
272
|
- lib/action_view/helpers/active_model_helper.rb
|
|
325
|
-
- lib/action_view/helpers/asset_paths.rb
|
|
326
273
|
- lib/action_view/helpers/asset_tag_helper.rb
|
|
327
|
-
- lib/action_view/helpers/
|
|
328
|
-
- lib/action_view/helpers/asset_tag_helpers/asset_paths.rb
|
|
329
|
-
- lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb
|
|
330
|
-
- lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb
|
|
274
|
+
- lib/action_view/helpers/asset_url_helper.rb
|
|
331
275
|
- lib/action_view/helpers/atom_feed_helper.rb
|
|
332
276
|
- lib/action_view/helpers/cache_helper.rb
|
|
333
277
|
- lib/action_view/helpers/capture_helper.rb
|
|
@@ -345,6 +289,40 @@ files:
|
|
|
345
289
|
- lib/action_view/helpers/rendering_helper.rb
|
|
346
290
|
- lib/action_view/helpers/sanitize_helper.rb
|
|
347
291
|
- lib/action_view/helpers/tag_helper.rb
|
|
292
|
+
- lib/action_view/helpers/tags/base.rb
|
|
293
|
+
- lib/action_view/helpers/tags/check_box.rb
|
|
294
|
+
- lib/action_view/helpers/tags/checkable.rb
|
|
295
|
+
- lib/action_view/helpers/tags/collection_check_boxes.rb
|
|
296
|
+
- lib/action_view/helpers/tags/collection_helpers.rb
|
|
297
|
+
- lib/action_view/helpers/tags/collection_radio_buttons.rb
|
|
298
|
+
- lib/action_view/helpers/tags/collection_select.rb
|
|
299
|
+
- lib/action_view/helpers/tags/color_field.rb
|
|
300
|
+
- lib/action_view/helpers/tags/date_field.rb
|
|
301
|
+
- lib/action_view/helpers/tags/date_select.rb
|
|
302
|
+
- lib/action_view/helpers/tags/datetime_field.rb
|
|
303
|
+
- lib/action_view/helpers/tags/datetime_local_field.rb
|
|
304
|
+
- lib/action_view/helpers/tags/datetime_select.rb
|
|
305
|
+
- lib/action_view/helpers/tags/email_field.rb
|
|
306
|
+
- lib/action_view/helpers/tags/file_field.rb
|
|
307
|
+
- lib/action_view/helpers/tags/grouped_collection_select.rb
|
|
308
|
+
- lib/action_view/helpers/tags/hidden_field.rb
|
|
309
|
+
- lib/action_view/helpers/tags/label.rb
|
|
310
|
+
- lib/action_view/helpers/tags/month_field.rb
|
|
311
|
+
- lib/action_view/helpers/tags/number_field.rb
|
|
312
|
+
- lib/action_view/helpers/tags/password_field.rb
|
|
313
|
+
- lib/action_view/helpers/tags/radio_button.rb
|
|
314
|
+
- lib/action_view/helpers/tags/range_field.rb
|
|
315
|
+
- lib/action_view/helpers/tags/search_field.rb
|
|
316
|
+
- lib/action_view/helpers/tags/select.rb
|
|
317
|
+
- lib/action_view/helpers/tags/tel_field.rb
|
|
318
|
+
- lib/action_view/helpers/tags/text_area.rb
|
|
319
|
+
- lib/action_view/helpers/tags/text_field.rb
|
|
320
|
+
- lib/action_view/helpers/tags/time_field.rb
|
|
321
|
+
- lib/action_view/helpers/tags/time_select.rb
|
|
322
|
+
- lib/action_view/helpers/tags/time_zone_select.rb
|
|
323
|
+
- lib/action_view/helpers/tags/url_field.rb
|
|
324
|
+
- lib/action_view/helpers/tags/week_field.rb
|
|
325
|
+
- lib/action_view/helpers/tags.rb
|
|
348
326
|
- lib/action_view/helpers/text_helper.rb
|
|
349
327
|
- lib/action_view/helpers/translation_helper.rb
|
|
350
328
|
- lib/action_view/helpers/url_helper.rb
|
|
@@ -352,66 +330,58 @@ files:
|
|
|
352
330
|
- lib/action_view/locale/en.yml
|
|
353
331
|
- lib/action_view/log_subscriber.rb
|
|
354
332
|
- lib/action_view/lookup_context.rb
|
|
333
|
+
- lib/action_view/model_naming.rb
|
|
355
334
|
- lib/action_view/path_set.rb
|
|
356
335
|
- lib/action_view/railtie.rb
|
|
336
|
+
- lib/action_view/record_identifier.rb
|
|
357
337
|
- lib/action_view/renderer/abstract_renderer.rb
|
|
358
338
|
- lib/action_view/renderer/partial_renderer.rb
|
|
359
339
|
- lib/action_view/renderer/renderer.rb
|
|
360
340
|
- lib/action_view/renderer/streaming_template_renderer.rb
|
|
361
341
|
- lib/action_view/renderer/template_renderer.rb
|
|
342
|
+
- lib/action_view/routing_url_for.rb
|
|
362
343
|
- lib/action_view/template/error.rb
|
|
363
344
|
- lib/action_view/template/handlers/builder.rb
|
|
364
345
|
- lib/action_view/template/handlers/erb.rb
|
|
346
|
+
- lib/action_view/template/handlers/raw.rb
|
|
365
347
|
- lib/action_view/template/handlers.rb
|
|
366
348
|
- lib/action_view/template/resolver.rb
|
|
367
349
|
- lib/action_view/template/text.rb
|
|
350
|
+
- lib/action_view/template/types.rb
|
|
368
351
|
- lib/action_view/template.rb
|
|
369
352
|
- lib/action_view/test_case.rb
|
|
370
353
|
- lib/action_view/testing/resolvers.rb
|
|
354
|
+
- lib/action_view/vendor/html-scanner/html/document.rb
|
|
355
|
+
- lib/action_view/vendor/html-scanner/html/node.rb
|
|
356
|
+
- lib/action_view/vendor/html-scanner/html/sanitizer.rb
|
|
357
|
+
- lib/action_view/vendor/html-scanner/html/selector.rb
|
|
358
|
+
- lib/action_view/vendor/html-scanner/html/tokenizer.rb
|
|
359
|
+
- lib/action_view/vendor/html-scanner/html/version.rb
|
|
360
|
+
- lib/action_view/vendor/html-scanner.rb
|
|
371
361
|
- lib/action_view.rb
|
|
372
|
-
- lib/sprockets/assets.rake
|
|
373
|
-
- lib/sprockets/bootstrap.rb
|
|
374
|
-
- lib/sprockets/compressors.rb
|
|
375
|
-
- lib/sprockets/helpers/isolated_helper.rb
|
|
376
|
-
- lib/sprockets/helpers/rails_helper.rb
|
|
377
|
-
- lib/sprockets/helpers.rb
|
|
378
|
-
- lib/sprockets/railtie.rb
|
|
379
|
-
- lib/sprockets/static_compiler.rb
|
|
380
|
-
has_rdoc: true
|
|
381
362
|
homepage: http://www.rubyonrails.org
|
|
382
|
-
licenses:
|
|
363
|
+
licenses:
|
|
383
364
|
- MIT
|
|
365
|
+
metadata: {}
|
|
384
366
|
post_install_message:
|
|
385
367
|
rdoc_options: []
|
|
386
|
-
|
|
387
|
-
require_paths:
|
|
368
|
+
require_paths:
|
|
388
369
|
- lib
|
|
389
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
401
|
-
none: false
|
|
402
|
-
requirements:
|
|
403
|
-
- - ">="
|
|
404
|
-
- !ruby/object:Gem::Version
|
|
405
|
-
hash: 3
|
|
406
|
-
segments:
|
|
407
|
-
- 0
|
|
408
|
-
version: "0"
|
|
409
|
-
requirements:
|
|
370
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
371
|
+
requirements:
|
|
372
|
+
- - '>='
|
|
373
|
+
- !ruby/object:Gem::Version
|
|
374
|
+
version: 1.9.3
|
|
375
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
376
|
+
requirements:
|
|
377
|
+
- - '>='
|
|
378
|
+
- !ruby/object:Gem::Version
|
|
379
|
+
version: '0'
|
|
380
|
+
requirements:
|
|
410
381
|
- none
|
|
411
382
|
rubyforge_project:
|
|
412
|
-
rubygems_version:
|
|
383
|
+
rubygems_version: 2.0.2
|
|
413
384
|
signing_key:
|
|
414
|
-
specification_version:
|
|
385
|
+
specification_version: 4
|
|
415
386
|
summary: Web-flow and rendering framework putting the VC in MVC (part of Rails).
|
|
416
387
|
test_files: []
|
|
417
|
-
|