paul_diagnostic 0.0.3 → 0.0.4
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 +7 -3
- data/lib/paul_diagnostic/version.rb +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
paul_diagnostic
|
|
1
|
+
This is an engine gem for Paul's diagnostic tool "paul_diagnostic" written by Andrew Kim.
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The diagnostic page can be accessed via /diagnostic.
|
|
4
4
|
|
|
5
|
-
The
|
|
5
|
+
NOTE FOR REFINERY APPS: The 'mount Refinery::Core::Engine' line in the routes.rb file of a Refinery CMS application gobbles up everything in its path, leaving no room for gem routes which are loaded after. Therefore, the line
|
|
6
|
+
|
|
7
|
+
match '/diagnostic', to: 'diagnostic#diagnostic'
|
|
8
|
+
|
|
9
|
+
must be inserted BEFORE the mount occurs in the applications routes.rb file if running Refinery CMS. (in general, any route must be named before the mount in a Refinery app, and I do not think this is possible in a gem.)
|