-
Notifications
You must be signed in to change notification settings - Fork 21.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Routes specifying 'to:' must be a string that contains a "#" or a rack
application. Use of a symbol should be replaced with `action: symbol`. Use of a string without a "#" should be replaced with `controller: string`.
- Loading branch information
1 parent
9b09e60
commit cc26b6b
Showing
6 changed files
with
149 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
digraph parse_tree { | ||
size="8,5" | ||
node [shape = none]; | ||
edge [dir = none]; | ||
70293339236320 [label=""]; | ||
70293339236820 [label=""]; | ||
70293339237000 [label=""]; | ||
70293339237340 [label=""]; | ||
70293339239200 [label=""]; | ||
70293339239520 [label="/"]; | ||
70293339239300 [label="foo"]; | ||
70293339237420 [label="()"]; | ||
70293339237520 [label=""]; | ||
70293339238380 [label=""]; | ||
70293339238820 [label="/"]; | ||
70293339238520 [label=":bar"]; | ||
70293339237620 [label="()"]; | ||
70293339237860 [label=":baz"]; | ||
70293339237080 [label="/"]; | ||
70293339236920 [label=":aaron"]; | ||
70293339236360 [label="()"]; | ||
70293339236520 [label=""]; | ||
70293339236700 [label="."]; | ||
70293339236560 [label=":format"]; | ||
70293339236320 -> 70293339236820; | ||
70293339236320 -> 70293339236360; | ||
70293339236820 -> 70293339237000; | ||
70293339236820 -> 70293339236920; | ||
70293339237000 -> 70293339237340; | ||
70293339237000 -> 70293339237080; | ||
70293339237340 -> 70293339239200; | ||
70293339237340 -> 70293339237420; | ||
70293339239200 -> 70293339239520; | ||
70293339239200 -> 70293339239300; | ||
70293339237420 -> 70293339237520; | ||
70293339237520 -> 70293339238380; | ||
70293339237520 -> 70293339237620; | ||
70293339238380 -> 70293339238820; | ||
70293339238380 -> 70293339238520; | ||
70293339237620 -> 70293339237860; | ||
70293339236360 -> 70293339236520; | ||
70293339236520 -> 70293339236700; | ||
70293339236520 -> 70293339236560; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
digraph parse_tree { | ||
size="8,5" | ||
node [shape = none]; | ||
edge [dir = none]; | ||
70293330639600 [label=""]; | ||
70293330640700 [label=""]; | ||
70293330655800 [label=""]; | ||
70293330649320 [label=""]; | ||
70293330650540 [label=""]; | ||
70293330650820 [label="/"]; | ||
70293330650620 [label="foo"]; | ||
70293330649420 [label="()"]; | ||
70293330649540 [label=""]; | ||
70293330650120 [label=""]; | ||
70293330650340 [label="/"]; | ||
70293330650180 [label=":bar"]; | ||
70293330649600 [label="()"]; | ||
70293330649720 [label=""]; | ||
70293330649920 [label="/"]; | ||
70293330649760 [label=":baz"]; | ||
70293330655220 [label="/"]; | ||
70293330657120 [label=":aaron"]; | ||
70293330639740 [label="()"]; | ||
70293330639980 [label=""]; | ||
70293330640400 [label="."]; | ||
70293330640100 [label=":format"]; | ||
70293330639600 -> 70293330640700; | ||
70293330639600 -> 70293330639740; | ||
70293330640700 -> 70293330655800; | ||
70293330640700 -> 70293330657120; | ||
70293330655800 -> 70293330649320; | ||
70293330655800 -> 70293330655220; | ||
70293330649320 -> 70293330650540; | ||
70293330649320 -> 70293330649420; | ||
70293330650540 -> 70293330650820; | ||
70293330650540 -> 70293330650620; | ||
70293330649420 -> 70293330649540; | ||
70293330649540 -> 70293330650120; | ||
70293330649540 -> 70293330649600; | ||
70293330650120 -> 70293330650340; | ||
70293330650120 -> 70293330650180; | ||
70293330649600 -> 70293330649720; | ||
70293330649720 -> 70293330649920; | ||
70293330649720 -> 70293330649760; | ||
70293330639740 -> 70293330639980; | ||
70293330639980 -> 70293330640400; | ||
70293330639980 -> 70293330640100; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters