├── .ci.gemfile ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── bin └── roda-parse_routes ├── lib ├── roda-route_parser.rb └── roda │ └── plugins │ └── route_list.rb ├── roda-route_list.gemspec └── spec ├── roda-route_list_spec.rb ├── routes-pretty.json ├── routes.example ├── routes.json └── routes2.json /.ci.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/roda-route_list/HEAD/.ci.gemfile -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/roda-route_list/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /rdoc 2 | /roda-route_list-*.gem 3 | /coverage 4 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/roda-route_list/HEAD/CHANGELOG -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/roda-route_list/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/roda-route_list/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/roda-route_list/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/roda-parse_routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/roda-route_list/HEAD/bin/roda-parse_routes -------------------------------------------------------------------------------- /lib/roda-route_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/roda-route_list/HEAD/lib/roda-route_parser.rb -------------------------------------------------------------------------------- /lib/roda/plugins/route_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/roda-route_list/HEAD/lib/roda/plugins/route_list.rb -------------------------------------------------------------------------------- /roda-route_list.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/roda-route_list/HEAD/roda-route_list.gemspec -------------------------------------------------------------------------------- /spec/roda-route_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/roda-route_list/HEAD/spec/roda-route_list_spec.rb -------------------------------------------------------------------------------- /spec/routes-pretty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/roda-route_list/HEAD/spec/routes-pretty.json -------------------------------------------------------------------------------- /spec/routes.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/roda-route_list/HEAD/spec/routes.example -------------------------------------------------------------------------------- /spec/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/roda-route_list/HEAD/spec/routes.json -------------------------------------------------------------------------------- /spec/routes2.json: -------------------------------------------------------------------------------- 1 | [{"path":"/foo"}] 2 | --------------------------------------------------------------------------------