roda 3.2.0 → 3.3.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 +4 -4
- data/CHANGELOG +4 -0
- data/README.rdoc +29 -1
- data/doc/release_notes/3.3.0.txt +291 -0
- data/lib/roda/plugins/class_matchers.rb +1 -1
- data/lib/roda/plugins/indifferent_params.rb +8 -1
- data/lib/roda/plugins/param_matchers.rb +11 -4
- data/lib/roda/plugins/path.rb +5 -2
- data/lib/roda/plugins/symbol_status.rb +2 -2
- data/lib/roda/plugins/typecast_params.rb +968 -0
- data/lib/roda/version.rb +1 -1
- data/spec/plugin/public_spec.rb +18 -0
- data/spec/plugin/typecast_params_spec.rb +1215 -0
- metadata +6 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: roda
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeremy Evans
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -198,6 +198,7 @@ extra_rdoc_files:
|
|
198
198
|
- doc/release_notes/3.0.0.txt
|
199
199
|
- doc/release_notes/3.1.0.txt
|
200
200
|
- doc/release_notes/3.2.0.txt
|
201
|
+
- doc/release_notes/3.3.0.txt
|
201
202
|
files:
|
202
203
|
- CHANGELOG
|
203
204
|
- MIT-LICENSE
|
@@ -242,6 +243,7 @@ files:
|
|
242
243
|
- doc/release_notes/3.0.0.txt
|
243
244
|
- doc/release_notes/3.1.0.txt
|
244
245
|
- doc/release_notes/3.2.0.txt
|
246
|
+
- doc/release_notes/3.3.0.txt
|
245
247
|
- lib/roda.rb
|
246
248
|
- lib/roda/plugins/_symbol_regexp_matchers.rb
|
247
249
|
- lib/roda/plugins/all_verbs.rb
|
@@ -322,6 +324,7 @@ files:
|
|
322
324
|
- lib/roda/plugins/symbol_views.rb
|
323
325
|
- lib/roda/plugins/timestamp_public.rb
|
324
326
|
- lib/roda/plugins/type_routing.rb
|
327
|
+
- lib/roda/plugins/typecast_params.rb
|
325
328
|
- lib/roda/plugins/unescape_path.rb
|
326
329
|
- lib/roda/plugins/view_options.rb
|
327
330
|
- lib/roda/version.rb
|
@@ -414,6 +417,7 @@ files:
|
|
414
417
|
- spec/plugin/symbol_views_spec.rb
|
415
418
|
- spec/plugin/timestamp_public_spec.rb
|
416
419
|
- spec/plugin/type_routing_spec.rb
|
420
|
+
- spec/plugin/typecast_params_spec.rb
|
417
421
|
- spec/plugin/unescape_path_spec.rb
|
418
422
|
- spec/plugin/view_options_spec.rb
|
419
423
|
- spec/plugin_spec.rb
|