aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/journey/backwards.rb
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused Journey codeJon Moss2016-02-171-5/+0
| | | | | | | | | | - `VERSION` shouldn't be there anymore since Journey is technically part of Action Dispatch now (and thus Action Pack, and follows the normal Rails versioning scheme) - `backwards.rb` was only in the file tree because early in the history or Journey (back in 2011!), it was moved from under the Rack namespace, to its own namespace, Journey! This file is no longer required, and is assigning constants that are no longer needed.
* :nodoc: Journey because is not part of the public API [ci skip]Francesco Rodriguez2012-12-191-1/+1
|
* Integrate Journey into Action DispatchAndrew White2012-12-191-0/+5
Move the Journey code underneath the ActionDispatch namespace so that we don't pollute the global namespace with names that may be used for models. Fixes rails/journey#49.