Sha256: f05331430350f05d2c5355ba39da9482d8ed002864c3a83881e6acf6ffc911b5

Contents?: true

Size: 952 Bytes

Versions: 10

Compression:

Stored size: 952 Bytes

Contents

#!/usr/bin/env ruby
# encoding: UTF-8

#########
##
## This file holds the routes for your application
##
## use the `host`, `route` and `shared_route` functions
##


# This is an optional re-write route for I18n.
# i.e.: `/en/home` will be rewriten as `/home`, while setting params[:locale] to "en"
route "/:locale{#{I18n.available_locales.join "|"}}/*" , false if defined? I18n

# # This is an optional re-write route response formats.
# # Response format re-write, i.e.: `/xml/home` will use .xml templates automatically
# # with :locale a request might look like `/en/json/...`
# route "/:format{html|json|xml}/*" , false

###
# add your routes here:


# remove this demo route and the SampleController once you want to feed Plezi your code.
route '/', SampleController


# this is a catch all route with a stub controller.
# un comment the following line and replace the controller if you want a catch-all route.
# route '*',  Plezi::StubRESTCtrl

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
plezi-0.12.22 resources/routes.rb
plezi-0.12.21 resources/routes.rb
plezi-0.12.20 resources/routes.rb
plezi-0.12.19 resources/routes.rb
plezi-0.12.18 resources/routes.rb
plezi-0.12.17 resources/routes.rb
plezi-0.12.16 resources/routes.rb
plezi-0.12.15 resources/routes.rb
plezi-0.12.14 resources/routes.rb
plezi-0.12.13 resources/routes.rb