route_downcaser 0.1.3 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +18 -0
- data/lib/route_downcaser/version.rb +1 -1
- data/test/dummy/log/test.log +4 -0
- metadata +3 -3
data/README.rdoc
CHANGED
|
@@ -74,6 +74,24 @@ At first I just made this code as a snippet and published it {on my blog}[http:/
|
|
|
74
74
|
|
|
75
75
|
All it really does is to take the path and downcase it before dispatching. Querystring parameters are NOT touched, they keep their casing, since it may have some contextual meaning.
|
|
76
76
|
|
|
77
|
+
== Changelog
|
|
78
|
+
|
|
79
|
+
=== 0.2.0
|
|
80
|
+
|
|
81
|
+
Asset urls are now ignored - important since filesystems may be case sensitive. Thanks goes to {Casey Pugh}[https://github.com/caseypugh]
|
|
82
|
+
|
|
83
|
+
=== 0.1.2
|
|
84
|
+
|
|
85
|
+
Removed silly dependencies (sqlite3, etc.)
|
|
86
|
+
|
|
87
|
+
=== 0.1.1
|
|
88
|
+
|
|
89
|
+
Added documentation README
|
|
90
|
+
|
|
91
|
+
=== 0.1.0
|
|
92
|
+
|
|
93
|
+
First version of gem
|
|
94
|
+
|
|
77
95
|
== Feedback
|
|
78
96
|
|
|
79
97
|
This is my first published gem, so bear with me, if I have missed some conventions. If you find anything wrong in documentation, code, dependencies, etc. please let me know at mailto:carsten@sarum.dk.
|
data/test/dummy/log/test.log
CHANGED
|
@@ -177,3 +177,7 @@ Started GET "/HELLO/WORLD" for 127.0.0.1 at 2013-02-16 14:33:16 +0100
|
|
|
177
177
|
Processing by HelloController#world as HTML
|
|
178
178
|
Rendered text template (0.0ms)
|
|
179
179
|
Completed 200 OK in 15ms (Views: 14.6ms)
|
|
180
|
+
Started GET "/HELLO/WORLD" for 127.0.0.1 at 2013-02-16 16:45:56 +0100
|
|
181
|
+
Processing by HelloController#world as HTML
|
|
182
|
+
Rendered text template (0.0ms)
|
|
183
|
+
Completed 200 OK in 15ms (Views: 14.5ms)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: route_downcaser
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -75,7 +75,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
version: '0'
|
|
76
76
|
segments:
|
|
77
77
|
- 0
|
|
78
|
-
hash: -
|
|
78
|
+
hash: -1435001433418053392
|
|
79
79
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
80
|
none: false
|
|
81
81
|
requirements:
|
|
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
84
84
|
version: '0'
|
|
85
85
|
segments:
|
|
86
86
|
- 0
|
|
87
|
-
hash: -
|
|
87
|
+
hash: -1435001433418053392
|
|
88
88
|
requirements: []
|
|
89
89
|
rubyforge_project:
|
|
90
90
|
rubygems_version: 1.8.24
|