Skip to content

Instantly share code, notes, and snippets.

@rwjblue
Forked from rondale-sc/create_route_tests.rb
Last active December 12, 2015 08:08
Show Gist options
  • Save rwjblue/4741324 to your computer and use it in GitHub Desktop.
Save rwjblue/4741324 to your computer and use it in GitHub Desktop.
require 'routes' # from routes.rb file below
class CreateRouteTests
def initialize(routes_file)
self.routes = ROUTES
end
def routes
@routes ||= ROUTES
end
def create_it_blocks
routes.collect do |route|
"it { #{route[:method]}(#{route[:url]}).should route_to(#{route[:action]}) }"
end
end
private
attr_accessor :routes, :it_blocks
attr_writer :parsed_routes
end
ROUTES = {:method=>"ticket_types", :url=>"GET", :action=>"/ticket_types(.:format)"}
{:method=>"POST", :url=>"/ticket_types(.:format)", :action=>"ticket_types#create"}
{:method=>"new_ticket_type", :url=>"GET", :action=>"/ticket_types/new(.:format)"}
{:method=>"edit_ticket_type", :url=>"GET", :action=>"/ticket_types/:id/edit(.:format)"}
{:method=>"ticket_type", :url=>"GET", :action=>"/ticket_types/:id(.:format)"}
{:method=>"PUT", :url=>"/ticket_types/:id(.:format)", :action=>"ticket_types#update"}
{:method=>"DELETE", :url=>"/ticket_types/:id(.:format)", :action=>"ticket_types#destroy"}
{:method=>"faye_images", :url=>"GET", :action=>"/faye_images(.:format)"}
{:method=>"POST", :url=>"/faye_images(.:format)", :action=>"faye_images#create"}
{:method=>"new_faye_image", :url=>"GET", :action=>"/faye_images/new(.:format)"}
{:method=>"edit_faye_image", :url=>"GET", :action=>"/faye_images/:id/edit(.:format)"}
{:method=>"faye_image", :url=>"GET", :action=>"/faye_images/:id(.:format)"}
{:method=>"PUT", :url=>"/faye_images/:id(.:format)", :action=>"faye_images#update"}
{:method=>"DELETE", :url=>"/faye_images/:id(.:format)", :action=>"faye_images#destroy"}
{:method=>"payment_types", :url=>"GET", :action=>"/payment_types(.:format)"}
{:method=>"POST", :url=>"/payment_types(.:format)", :action=>"payment_types#create"}
{:method=>"new_payment_type", :url=>"GET", :action=>"/payment_types/new(.:format)"}
{:method=>"edit_payment_type", :url=>"GET", :action=>"/payment_types/:id/edit(.:format)"}
{:method=>"payment_type", :url=>"GET", :action=>"/payment_types/:id(.:format)"}
{:method=>"PUT", :url=>"/payment_types/:id(.:format)", :action=>"payment_types#update"}
{:method=>"DELETE", :url=>"/payment_types/:id(.:format)", :action=>"payment_types#destroy"}
{:method=>"next_manage_ticket", :url=>"GET", :action=>"/manage_tickets/:id/next(.:format)"}
{:method=>"previous_manage_ticket", :url=>"GET", :action=>"/manage_tickets/:id/previous(.:format)"}
{:method=>"manage_tickets", :url=>"GET", :action=>"/manage_tickets(.:format)"}
{:method=>"POST", :url=>"/manage_tickets(.:format)", :action=>"manage_tickets#create"}
{:method=>"new_manage_ticket", :url=>"GET", :action=>"/manage_tickets/new(.:format)"}
{:method=>"edit_manage_ticket", :url=>"GET", :action=>"/manage_tickets/:id/edit(.:format)"}
{:method=>"manage_ticket", :url=>"GET", :action=>"/manage_tickets/:id(.:format)"}
{:method=>"PUT", :url=>"/manage_tickets/:id(.:format)", :action=>"manage_tickets#update"}
{:method=>"DELETE", :url=>"/manage_tickets/:id(.:format)", :action=>"manage_tickets#destroy"}
{:method=>"record_requests", :url=>"GET", :action=>"/record_requests(.:format)"}
{:method=>"POST", :url=>"/record_requests(.:format)", :action=>"record_requests#create"}
{:method=>"new_record_request", :url=>"GET", :action=>"/record_requests/new(.:format)"}
{:method=>"edit_record_request", :url=>"GET", :action=>"/record_requests/:id/edit(.:format)"}
{:method=>"record_request", :url=>"GET", :action=>"/record_requests/:id(.:format)"}
{:method=>"PUT", :url=>"/record_requests/:id(.:format)", :action=>"record_requests#update"}
{:method=>"DELETE", :url=>"/record_requests/:id(.:format)", :action=>"record_requests#destroy"}
{:method=>"encounter_images", :url=>"GET", :action=>"/encounter_images(.:format)"}
{:method=>"POST", :url=>"/encounter_images(.:format)", :action=>"encounter_images#create"}
{:method=>"new_encounter_image", :url=>"GET", :action=>"/encounter_images/new(.:format)"}
{:method=>"edit_encounter_image", :url=>"GET", :action=>"/encounter_images/:id/edit(.:format)"}
{:method=>"encounter_image", :url=>"GET", :action=>"/encounter_images/:id(.:format)"}
{:method=>"PUT", :url=>"/encounter_images/:id(.:format)", :action=>"encounter_images#update"}
{:method=>"DELETE", :url=>"/encounter_images/:id(.:format)", :action=>"encounter_images#destroy"}
{:method=>"division_division_locations", :url=>"GET", :action=>"/divisions/:division_id/division_locations(.:format)"}
{:method=>"POST", :url=>"/divisions/:division_id/division_locations(.:format)", :action=>"division_locations#create"}
{:method=>"new_division_division_location", :url=>"GET", :action=>"/divisions/:division_id/division_locations/new(.:format)"}
{:method=>"edit_division_division_location", :url=>"GET", :action=>"/divisions/:division_id/division_locations/:id/edit(.:format)"}
{:method=>"division_division_location", :url=>"GET", :action=>"/divisions/:division_id/division_locations/:id(.:format)"}
{:method=>"PUT", :url=>"/divisions/:division_id/division_locations/:id(.:format)", :action=>"division_locations#update"}
{:method=>"DELETE", :url=>"/divisions/:division_id/division_locations/:id(.:format)", :action=>"division_locations#destroy"}
{:method=>"divisions", :url=>"GET", :action=>"/divisions(.:format)"}
{:method=>"POST", :url=>"/divisions(.:format)", :action=>"divisions#create"}
{:method=>"new_division", :url=>"GET", :action=>"/divisions/new(.:format)"}
{:method=>"edit_division", :url=>"GET", :action=>"/divisions/:id/edit(.:format)"}
{:method=>"division", :url=>"GET", :action=>"/divisions/:id(.:format)"}
{:method=>"PUT", :url=>"/divisions/:id(.:format)", :action=>"divisions#update"}
{:method=>"DELETE", :url=>"/divisions/:id(.:format)", :action=>"divisions#destroy"}
{:method=>"form_type_fields", :url=>"GET", :action=>"/form_types/:form_type_id/fields(.:format)"}
{:method=>"POST", :url=>"/form_types/:form_type_id/fields(.:format)", :action=>"fields#create"}
{:method=>"new_form_type_field", :url=>"GET", :action=>"/form_types/:form_type_id/fields/new(.:format)"}
{:method=>"edit_form_type_field", :url=>"GET", :action=>"/form_types/:form_type_id/fields/:id/edit(.:format)"}
{:method=>"form_type_field", :url=>"GET", :action=>"/form_types/:form_type_id/fields/:id(.:format)"}
{:method=>"PUT", :url=>"/form_types/:form_type_id/fields/:id(.:format)", :action=>"fields#update"}
{:method=>"DELETE", :url=>"/form_types/:form_type_id/fields/:id(.:format)", :action=>"fields#destroy"}
{:method=>"form_types", :url=>"GET", :action=>"/form_types(.:format)"}
{:method=>"POST", :url=>"/form_types(.:format)", :action=>"form_types#create"}
{:method=>"new_form_type", :url=>"GET", :action=>"/form_types/new(.:format)"}
{:method=>"edit_form_type", :url=>"GET", :action=>"/form_types/:id/edit(.:format)"}
{:method=>"form_type", :url=>"GET", :action=>"/form_types/:id(.:format)"}
{:method=>"PUT", :url=>"/form_types/:id(.:format)", :action=>"form_types#update"}
{:method=>"DELETE", :url=>"/form_types/:id(.:format)", :action=>"form_types#destroy"}
{:method=>"locations", :url=>"GET", :action=>"/locations(.:format)"}
{:method=>"POST", :url=>"/locations(.:format)", :action=>"locations#create"}
{:method=>"new_location", :url=>"GET", :action=>"/locations/new(.:format)"}
{:method=>"edit_location", :url=>"GET", :action=>"/locations/:id/edit(.:format)"}
{:method=>"location", :url=>"GET", :action=>"/locations/:id(.:format)"}
{:method=>"PUT", :url=>"/locations/:id(.:format)", :action=>"locations#update"}
{:method=>"DELETE", :url=>"/locations/:id(.:format)", :action=>"locations#destroy"}
{:method=>"next_encounter_chargesheet_outcome", :url=>"GET", :action=>"/chargesheet_outcomes/:id/next_encounter(.:format)"}
{:method=>"previous_encounter_chargesheet_outcome", :url=>"GET", :action=>"/chargesheet_outcomes/:id/previous_encounter(.:format)"}
{:method=>"field_filled_chargesheet_outcome", :url=>"POST", :action=>"/chargesheet_outcomes/:id/field_filled(.:format)"}
{:method=>"remove_field_filled_selection_chargesheet_outcome", :url=>"POST", :action=>"/chargesheet_outcomes/:id/remove_field_filled_selection(.:format)"}
{:method=>"chargesheet_outcomes", :url=>"GET", :action=>"/chargesheet_outcomes(.:format)"}
{:method=>"POST", :url=>"/chargesheet_outcomes(.:format)", :action=>"chargesheet_outcomes#create"}
{:method=>"new_chargesheet_outcome", :url=>"GET", :action=>"/chargesheet_outcomes/new(.:format)"}
{:method=>"edit_chargesheet_outcome", :url=>"GET", :action=>"/chargesheet_outcomes/:id/edit(.:format)"}
{:method=>"chargesheet_outcome", :url=>"GET", :action=>"/chargesheet_outcomes/:id(.:format)"}
{:method=>"PUT", :url=>"/chargesheet_outcomes/:id(.:format)", :action=>"chargesheet_outcomes#update"}
{:method=>"DELETE", :url=>"/chargesheet_outcomes/:id(.:format)", :action=>"chargesheet_outcomes#destroy"}
{:method=>"batch_comments", :url=>"GET", :action=>"/batches/:batch_id/comments(.:format)"}
{:method=>"POST", :url=>"/batches/:batch_id/comments(.:format)", :action=>"comments#create"}
{:method=>"new_batch_comment", :url=>"GET", :action=>"/batches/:batch_id/comments/new(.:format)"}
{:method=>"edit_batch_comment", :url=>"GET", :action=>"/batches/:batch_id/comments/:id/edit(.:format)"}
{:method=>"batch_comment", :url=>"GET", :action=>"/batches/:batch_id/comments/:id(.:format)"}
{:method=>"PUT", :url=>"/batches/:batch_id/comments/:id(.:format)", :action=>"comments#update"}
{:method=>"DELETE", :url=>"/batches/:batch_id/comments/:id(.:format)", :action=>"comments#destroy"}
{:method=>"batch_tickets", :url=>"GET", :action=>"/batches/:batch_id/tickets(.:format)"}
{:method=>"POST", :url=>"/batches/:batch_id/tickets(.:format)", :action=>"tickets#create"}
{:method=>"new_batch_ticket", :url=>"GET", :action=>"/batches/:batch_id/tickets/new(.:format)"}
{:method=>"edit_batch_ticket", :url=>"GET", :action=>"/batches/:batch_id/tickets/:id/edit(.:format)"}
{:method=>"batch_ticket", :url=>"GET", :action=>"/batches/:batch_id/tickets/:id(.:format)"}
{:method=>"PUT", :url=>"/batches/:batch_id/tickets/:id(.:format)", :action=>"tickets#update"}
{:method=>"DELETE", :url=>"/batches/:batch_id/tickets/:id(.:format)", :action=>"tickets#destroy"}
{:method=>"batch_batch_images", :url=>"GET", :action=>"/batches/:batch_id/batch_images(.:format)"}
{:method=>"POST", :url=>"/batches/:batch_id/batch_images(.:format)", :action=>"batch_images#create"}
{:method=>"new_batch_batch_image", :url=>"GET", :action=>"/batches/:batch_id/batch_images/new(.:format)"}
{:method=>"edit_batch_batch_image", :url=>"GET", :action=>"/batches/:batch_id/batch_images/:id/edit(.:format)"}
{:method=>"batch_batch_image", :url=>"GET", :action=>"/batches/:batch_id/batch_images/:id(.:format)"}
{:method=>"PUT", :url=>"/batches/:batch_id/batch_images/:id(.:format)", :action=>"batch_images#update"}
{:method=>"DELETE", :url=>"/batches/:batch_id/batch_images/:id(.:format)", :action=>"batch_images#destroy"}
{:method=>"search_batches", :url=>"POST", :action=>"/batches/search(.:format)"}
{:method=>"GET", :url=>"/batches/search(.:format)", :action=>"batches#search"}
{:method=>"set_schedule_status_batch", :url=>"POST", :action=>"/batches/:id/set_schedule_status(.:format)"}
{:method=>"regenerate_pdf_batch", :url=>"POST", :action=>"/batches/:id/regenerate_pdf(.:format)"}
{:method=>"upload_images_batch", :url=>"POST", :action=>"/batches/:id/upload_images(.:format)"}
{:method=>"case_log_batch", :url=>"GET", :action=>"/batches/:id/case_log(.:format)"}
{:method=>"batch_incoming_logs", :url=>"GET", :action=>"/batches/:batch_id/incoming_logs(.:format)"}
{:method=>"POST", :url=>"/batches/:batch_id/incoming_logs(.:format)", :action=>"incoming_logs#create"}
{:method=>"new_batch_incoming_log", :url=>"GET", :action=>"/batches/:batch_id/incoming_logs/new(.:format)"}
{:method=>"edit_batch_incoming_log", :url=>"GET", :action=>"/batches/:batch_id/incoming_logs/:id/edit(.:format)"}
{:method=>"batch_incoming_log", :url=>"GET", :action=>"/batches/:batch_id/incoming_logs/:id(.:format)"}
{:method=>"PUT", :url=>"/batches/:batch_id/incoming_logs/:id(.:format)", :action=>"incoming_logs#update"}
{:method=>"DELETE", :url=>"/batches/:batch_id/incoming_logs/:id(.:format)", :action=>"incoming_logs#destroy"}
{:method=>"batch_encounter_tickets", :url=>"GET", :action=>"/batches/:batch_id/encounters/:encounter_id/tickets(.:format)"}
{:method=>"POST", :url=>"/batches/:batch_id/encounters/:encounter_id/tickets(.:format)", :action=>"tickets#create"}
{:method=>"new_batch_encounter_ticket", :url=>"GET", :action=>"/batches/:batch_id/encounters/:encounter_id/tickets/new(.:format)"}
{:method=>"edit_batch_encounter_ticket", :url=>"GET", :action=>"/batches/:batch_id/encounters/:encounter_id/tickets/:id/edit(.:format)"}
{:method=>"batch_encounter_ticket", :url=>"GET", :action=>"/batches/:batch_id/encounters/:encounter_id/tickets/:id(.:format)"}
{:method=>"PUT", :url=>"/batches/:batch_id/encounters/:encounter_id/tickets/:id(.:format)", :action=>"tickets#update"}
{:method=>"DELETE", :url=>"/batches/:batch_id/encounters/:encounter_id/tickets/:id(.:format)", :action=>"tickets#destroy"}
{:method=>"collection_delete_batch_encounter_payment_images", :url=>"POST", :action=>"/batches/:batch_id/encounters/:encounter_id/payment_images/collection_delete(.:format)"}
{:method=>"collection_add_batch_encounter_payment_images", :url=>"POST", :action=>"/batches/:batch_id/encounters/:encounter_id/payment_images/collection_add(.:format)"}
{:method=>"batch_encounter_payment_images", :url=>"GET", :action=>"/batches/:batch_id/encounters/:encounter_id/payment_images(.:format)"}
{:method=>"POST", :url=>"/batches/:batch_id/encounters/:encounter_id/payment_images(.:format)", :action=>"payment_images#create"}
{:method=>"new_batch_encounter_payment_image", :url=>"GET", :action=>"/batches/:batch_id/encounters/:encounter_id/payment_images/new(.:format)"}
{:method=>"edit_batch_encounter_payment_image", :url=>"GET", :action=>"/batches/:batch_id/encounters/:encounter_id/payment_images/:id/edit(.:format)"}
{:method=>"batch_encounter_payment_image", :url=>"GET", :action=>"/batches/:batch_id/encounters/:encounter_id/payment_images/:id(.:format)"}
{:method=>"PUT", :url=>"/batches/:batch_id/encounters/:encounter_id/payment_images/:id(.:format)", :action=>"payment_images#update"}
{:method=>"DELETE", :url=>"/batches/:batch_id/encounters/:encounter_id/payment_images/:id(.:format)", :action=>"payment_images#destroy"}
{:method=>"print_barcode_batch_encounter", :url=>"GET", :action=>"/batches/:batch_id/encounters/:id/print_barcode(.:format)"}
{:method=>"found_batch_encounter", :url=>"POST", :action=>"/batches/:batch_id/encounters/:id/found(.:format)"}
{:method=>"remove_schedule_item_batch_encounter", :url=>"POST", :action=>"/batches/:batch_id/encounters/:id/remove_schedule_item(.:format)"}
{:method=>"move_batch_encounter", :url=>"POST", :action=>"/batches/:batch_id/encounters/:id/move(.:format)"}
{:method=>"upload_images_batch_encounter", :url=>"POST", :action=>"/batches/:batch_id/encounters/:id/upload_images(.:format)"}
{:method=>"escalate_batch_encounter", :url=>"POST", :action=>"/batches/:batch_id/encounters/:id/escalate(.:format)"}
{:method=>"regenerate_pdf_batch_encounter", :url=>"POST", :action=>"/batches/:batch_id/encounters/:id/regenerate_pdf(.:format)"}
{:method=>"missing_batch_encounters", :url=>"POST", :action=>"/batches/:batch_id/encounters/missing(.:format)"}
{:method=>"batch_encounters", :url=>"GET", :action=>"/batches/:batch_id/encounters(.:format)"}
{:method=>"POST", :url=>"/batches/:batch_id/encounters(.:format)", :action=>"encounters#create"}
{:method=>"new_batch_encounter", :url=>"GET", :action=>"/batches/:batch_id/encounters/new(.:format)"}
{:method=>"edit_batch_encounter", :url=>"GET", :action=>"/batches/:batch_id/encounters/:id/edit(.:format)"}
{:method=>"batch_encounter", :url=>"GET", :action=>"/batches/:batch_id/encounters/:id(.:format)"}
{:method=>"PUT", :url=>"/batches/:batch_id/encounters/:id(.:format)", :action=>"encounters#update"}
{:method=>"DELETE", :url=>"/batches/:batch_id/encounters/:id(.:format)", :action=>"encounters#destroy"}
{:method=>"batch_payment_tickets", :url=>"GET", :action=>"/batches/:batch_id/payments/:payment_id/tickets(.:format)"}
{:method=>"POST", :url=>"/batches/:batch_id/payments/:payment_id/tickets(.:format)", :action=>"tickets#create"}
{:method=>"new_batch_payment_ticket", :url=>"GET", :action=>"/batches/:batch_id/payments/:payment_id/tickets/new(.:format)"}
{:method=>"edit_batch_payment_ticket", :url=>"GET", :action=>"/batches/:batch_id/payments/:payment_id/tickets/:id/edit(.:format)"}
{:method=>"batch_payment_ticket", :url=>"GET", :action=>"/batches/:batch_id/payments/:payment_id/tickets/:id(.:format)"}
{:method=>"PUT", :url=>"/batches/:batch_id/payments/:payment_id/tickets/:id(.:format)", :action=>"tickets#update"}
{:method=>"DELETE", :url=>"/batches/:batch_id/payments/:payment_id/tickets/:id(.:format)", :action=>"tickets#destroy"}
{:method=>"collection_delete_batch_payment_encounter_images", :url=>"POST", :action=>"/batches/:batch_id/payments/:payment_id/encounter_images/collection_delete(.:format)"}
{:method=>"collection_add_batch_payment_encounter_images", :url=>"POST", :action=>"/batches/:batch_id/payments/:payment_id/encounter_images/collection_add(.:format)"}
{:method=>"batch_payment_encounter_images", :url=>"GET", :action=>"/batches/:batch_id/payments/:payment_id/encounter_images(.:format)"}
{:method=>"POST", :url=>"/batches/:batch_id/payments/:payment_id/encounter_images(.:format)", :action=>"encounter_images#create"}
{:method=>"new_batch_payment_encounter_image", :url=>"GET", :action=>"/batches/:batch_id/payments/:payment_id/encounter_images/new(.:format)"}
{:method=>"edit_batch_payment_encounter_image", :url=>"GET", :action=>"/batches/:batch_id/payments/:payment_id/encounter_images/:id/edit(.:format)"}
{:method=>"batch_payment_encounter_image", :url=>"GET", :action=>"/batches/:batch_id/payments/:payment_id/encounter_images/:id(.:format)"}
{:method=>"PUT", :url=>"/batches/:batch_id/payments/:payment_id/encounter_images/:id(.:format)", :action=>"encounter_images#update"}
{:method=>"DELETE", :url=>"/batches/:batch_id/payments/:payment_id/encounter_images/:id(.:format)", :action=>"encounter_images#destroy"}
{:method=>"print_barcode_batch_payment", :url=>"GET", :action=>"/batches/:batch_id/payments/:id/print_barcode(.:format)"}
{:method=>"found_batch_payment", :url=>"POST", :action=>"/batches/:batch_id/payments/:id/found(.:format)"}
{:method=>"remove_schedule_item_batch_payment", :url=>"POST", :action=>"/batches/:batch_id/payments/:id/remove_schedule_item(.:format)"}
{:method=>"move_batch_payment", :url=>"POST", :action=>"/batches/:batch_id/payments/:id/move(.:format)"}
{:method=>"upload_images_batch_payment", :url=>"POST", :action=>"/batches/:batch_id/payments/:id/upload_images(.:format)"}
{:method=>"escalate_batch_payment", :url=>"POST", :action=>"/batches/:batch_id/payments/:id/escalate(.:format)"}
{:method=>"regenerate_pdf_batch_payment", :url=>"POST", :action=>"/batches/:batch_id/payments/:id/regenerate_pdf(.:format)"}
{:method=>"missing_batch_payments", :url=>"POST", :action=>"/batches/:batch_id/payments/missing(.:format)"}
{:method=>"batch_payments", :url=>"GET", :action=>"/batches/:batch_id/payments(.:format)"}
{:method=>"POST", :url=>"/batches/:batch_id/payments(.:format)", :action=>"payments#create"}
{:method=>"new_batch_payment", :url=>"GET", :action=>"/batches/:batch_id/payments/new(.:format)"}
{:method=>"edit_batch_payment", :url=>"GET", :action=>"/batches/:batch_id/payments/:id/edit(.:format)"}
{:method=>"batch_payment", :url=>"GET", :action=>"/batches/:batch_id/payments/:id(.:format)"}
{:method=>"PUT", :url=>"/batches/:batch_id/payments/:id(.:format)", :action=>"payments#update"}
{:method=>"DELETE", :url=>"/batches/:batch_id/payments/:id(.:format)", :action=>"payments#destroy"}
{:method=>"batches", :url=>"GET", :action=>"/batches(.:format)"}
{:method=>"POST", :url=>"/batches(.:format)", :action=>"batches#create"}
{:method=>"new_batch", :url=>"GET", :action=>"/batches/new(.:format)"}
{:method=>"edit_batch", :url=>"GET", :action=>"/batches/:id/edit(.:format)"}
{:method=>"batch", :url=>"GET", :action=>"/batches/:id(.:format)"}
{:method=>"PUT", :url=>"/batches/:id(.:format)", :action=>"batches#update"}
{:method=>"DELETE", :url=>"/batches/:id(.:format)", :action=>"batches#destroy"}
{:method=>"payment_batch_comments", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/comments(.:format)"}
{:method=>"POST", :url=>"/payment_batches/:payment_batch_id/comments(.:format)", :action=>"comments#create"}
{:method=>"new_payment_batch_comment", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/comments/new(.:format)"}
{:method=>"edit_payment_batch_comment", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/comments/:id/edit(.:format)"}
{:method=>"payment_batch_comment", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/comments/:id(.:format)"}
{:method=>"PUT", :url=>"/payment_batches/:payment_batch_id/comments/:id(.:format)", :action=>"comments#update"}
{:method=>"DELETE", :url=>"/payment_batches/:payment_batch_id/comments/:id(.:format)", :action=>"comments#destroy"}
{:method=>"payment_batch_tickets", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/tickets(.:format)"}
{:method=>"POST", :url=>"/payment_batches/:payment_batch_id/tickets(.:format)", :action=>"tickets#create"}
{:method=>"new_payment_batch_ticket", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/tickets/new(.:format)"}
{:method=>"edit_payment_batch_ticket", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/tickets/:id/edit(.:format)"}
{:method=>"payment_batch_ticket", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/tickets/:id(.:format)"}
{:method=>"PUT", :url=>"/payment_batches/:payment_batch_id/tickets/:id(.:format)", :action=>"tickets#update"}
{:method=>"DELETE", :url=>"/payment_batches/:payment_batch_id/tickets/:id(.:format)", :action=>"tickets#destroy"}
{:method=>"payment_batch_batch_images", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/batch_images(.:format)"}
{:method=>"POST", :url=>"/payment_batches/:payment_batch_id/batch_images(.:format)", :action=>"batch_images#create"}
{:method=>"new_payment_batch_batch_image", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/batch_images/new(.:format)"}
{:method=>"edit_payment_batch_batch_image", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/batch_images/:id/edit(.:format)"}
{:method=>"payment_batch_batch_image", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/batch_images/:id(.:format)"}
{:method=>"PUT", :url=>"/payment_batches/:payment_batch_id/batch_images/:id(.:format)", :action=>"batch_images#update"}
{:method=>"DELETE", :url=>"/payment_batches/:payment_batch_id/batch_images/:id(.:format)", :action=>"batch_images#destroy"}
{:method=>"search_payment_batches", :url=>"POST", :action=>"/payment_batches/search(.:format)"}
{:method=>"GET", :url=>"/payment_batches/search(.:format)", :action=>"payment_batches#search"}
{:method=>"set_schedule_status_payment_batch", :url=>"POST", :action=>"/payment_batches/:id/set_schedule_status(.:format)"}
{:method=>"regenerate_pdf_payment_batch", :url=>"POST", :action=>"/payment_batches/:id/regenerate_pdf(.:format)"}
{:method=>"upload_images_payment_batch", :url=>"POST", :action=>"/payment_batches/:id/upload_images(.:format)"}
{:method=>"case_log_payment_batch", :url=>"GET", :action=>"/payment_batches/:id/case_log(.:format)"}
{:method=>"payment_batch_incoming_logs", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/incoming_logs(.:format)"}
{:method=>"POST", :url=>"/payment_batches/:payment_batch_id/incoming_logs(.:format)", :action=>"incoming_logs#create"}
{:method=>"new_payment_batch_incoming_log", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/incoming_logs/new(.:format)"}
{:method=>"edit_payment_batch_incoming_log", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/incoming_logs/:id/edit(.:format)"}
{:method=>"payment_batch_incoming_log", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/incoming_logs/:id(.:format)"}
{:method=>"PUT", :url=>"/payment_batches/:payment_batch_id/incoming_logs/:id(.:format)", :action=>"incoming_logs#update"}
{:method=>"DELETE", :url=>"/payment_batches/:payment_batch_id/incoming_logs/:id(.:format)", :action=>"incoming_logs#destroy"}
{:method=>"payment_batch_payment_tickets", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/payments/:payment_id/tickets(.:format)"}
{:method=>"POST", :url=>"/payment_batches/:payment_batch_id/payments/:payment_id/tickets(.:format)", :action=>"tickets#create"}
{:method=>"new_payment_batch_payment_ticket", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/payments/:payment_id/tickets/new(.:format)"}
{:method=>"edit_payment_batch_payment_ticket", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/payments/:payment_id/tickets/:id/edit(.:format)"}
{:method=>"payment_batch_payment_ticket", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/payments/:payment_id/tickets/:id(.:format)"}
{:method=>"PUT", :url=>"/payment_batches/:payment_batch_id/payments/:payment_id/tickets/:id(.:format)", :action=>"tickets#update"}
{:method=>"DELETE", :url=>"/payment_batches/:payment_batch_id/payments/:payment_id/tickets/:id(.:format)", :action=>"tickets#destroy"}
{:method=>"collection_delete_payment_batch_payment_payment_images", :url=>"POST", :action=>"/payment_batches/:payment_batch_id/payments/:payment_id/payment_images/collection_delete(.:format)"}
{:method=>"collection_add_payment_batch_payment_payment_images", :url=>"POST", :action=>"/payment_batches/:payment_batch_id/payments/:payment_id/payment_images/collection_add(.:format)"}
{:method=>"payment_batch_payment_payment_images", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/payments/:payment_id/payment_images(.:format)"}
{:method=>"POST", :url=>"/payment_batches/:payment_batch_id/payments/:payment_id/payment_images(.:format)", :action=>"payment_images#create"}
{:method=>"new_payment_batch_payment_payment_image", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/payments/:payment_id/payment_images/new(.:format)"}
{:method=>"edit_payment_batch_payment_payment_image", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/payments/:payment_id/payment_images/:id/edit(.:format)"}
{:method=>"payment_batch_payment_payment_image", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/payments/:payment_id/payment_images/:id(.:format)"}
{:method=>"PUT", :url=>"/payment_batches/:payment_batch_id/payments/:payment_id/payment_images/:id(.:format)", :action=>"payment_images#update"}
{:method=>"DELETE", :url=>"/payment_batches/:payment_batch_id/payments/:payment_id/payment_images/:id(.:format)", :action=>"payment_images#destroy"}
{:method=>"print_barcode_payment_batch_payment", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/payments/:id/print_barcode(.:format)"}
{:method=>"found_payment_batch_payment", :url=>"POST", :action=>"/payment_batches/:payment_batch_id/payments/:id/found(.:format)"}
{:method=>"remove_schedule_item_payment_batch_payment", :url=>"POST", :action=>"/payment_batches/:payment_batch_id/payments/:id/remove_schedule_item(.:format)"}
{:method=>"move_payment_batch_payment", :url=>"POST", :action=>"/payment_batches/:payment_batch_id/payments/:id/move(.:format)"}
{:method=>"upload_images_payment_batch_payment", :url=>"POST", :action=>"/payment_batches/:payment_batch_id/payments/:id/upload_images(.:format)"}
{:method=>"escalate_payment_batch_payment", :url=>"POST", :action=>"/payment_batches/:payment_batch_id/payments/:id/escalate(.:format)"}
{:method=>"regenerate_pdf_payment_batch_payment", :url=>"POST", :action=>"/payment_batches/:payment_batch_id/payments/:id/regenerate_pdf(.:format)"}
{:method=>"missing_payment_batch_payments", :url=>"POST", :action=>"/payment_batches/:payment_batch_id/payments/missing(.:format)"}
{:method=>"payment_batch_payments", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/payments(.:format)"}
{:method=>"POST", :url=>"/payment_batches/:payment_batch_id/payments(.:format)", :action=>"payments#create"}
{:method=>"new_payment_batch_payment", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/payments/new(.:format)"}
{:method=>"edit_payment_batch_payment", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/payments/:id/edit(.:format)"}
{:method=>"payment_batch_payment", :url=>"GET", :action=>"/payment_batches/:payment_batch_id/payments/:id(.:format)"}
{:method=>"PUT", :url=>"/payment_batches/:payment_batch_id/payments/:id(.:format)", :action=>"payments#update"}
{:method=>"DELETE", :url=>"/payment_batches/:payment_batch_id/payments/:id(.:format)", :action=>"payments#destroy"}
{:method=>"payment_batches", :url=>"GET", :action=>"/payment_batches(.:format)"}
{:method=>"POST", :url=>"/payment_batches(.:format)", :action=>"payment_batches#create"}
{:method=>"new_payment_batch", :url=>"GET", :action=>"/payment_batches/new(.:format)"}
{:method=>"edit_payment_batch", :url=>"GET", :action=>"/payment_batches/:id/edit(.:format)"}
{:method=>"payment_batch", :url=>"GET", :action=>"/payment_batches/:id(.:format)"}
{:method=>"PUT", :url=>"/payment_batches/:id(.:format)", :action=>"payment_batches#update"}
{:method=>"DELETE", :url=>"/payment_batches/:id(.:format)", :action=>"payment_batches#destroy"}
{:method=>"charge_batch_comments", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/comments(.:format)"}
{:method=>"POST", :url=>"/charge_batches/:charge_batch_id/comments(.:format)", :action=>"comments#create"}
{:method=>"new_charge_batch_comment", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/comments/new(.:format)"}
{:method=>"edit_charge_batch_comment", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/comments/:id/edit(.:format)"}
{:method=>"charge_batch_comment", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/comments/:id(.:format)"}
{:method=>"PUT", :url=>"/charge_batches/:charge_batch_id/comments/:id(.:format)", :action=>"comments#update"}
{:method=>"DELETE", :url=>"/charge_batches/:charge_batch_id/comments/:id(.:format)", :action=>"comments#destroy"}
{:method=>"charge_batch_tickets", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/tickets(.:format)"}
{:method=>"POST", :url=>"/charge_batches/:charge_batch_id/tickets(.:format)", :action=>"tickets#create"}
{:method=>"new_charge_batch_ticket", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/tickets/new(.:format)"}
{:method=>"edit_charge_batch_ticket", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/tickets/:id/edit(.:format)"}
{:method=>"charge_batch_ticket", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/tickets/:id(.:format)"}
{:method=>"PUT", :url=>"/charge_batches/:charge_batch_id/tickets/:id(.:format)", :action=>"tickets#update"}
{:method=>"DELETE", :url=>"/charge_batches/:charge_batch_id/tickets/:id(.:format)", :action=>"tickets#destroy"}
{:method=>"charge_batch_batch_images", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/batch_images(.:format)"}
{:method=>"POST", :url=>"/charge_batches/:charge_batch_id/batch_images(.:format)", :action=>"batch_images#create"}
{:method=>"new_charge_batch_batch_image", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/batch_images/new(.:format)"}
{:method=>"edit_charge_batch_batch_image", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/batch_images/:id/edit(.:format)"}
{:method=>"charge_batch_batch_image", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/batch_images/:id(.:format)"}
{:method=>"PUT", :url=>"/charge_batches/:charge_batch_id/batch_images/:id(.:format)", :action=>"batch_images#update"}
{:method=>"DELETE", :url=>"/charge_batches/:charge_batch_id/batch_images/:id(.:format)", :action=>"batch_images#destroy"}
{:method=>"search_charge_batches", :url=>"POST", :action=>"/charge_batches/search(.:format)"}
{:method=>"GET", :url=>"/charge_batches/search(.:format)", :action=>"charge_batches#search"}
{:method=>"set_schedule_status_charge_batch", :url=>"POST", :action=>"/charge_batches/:id/set_schedule_status(.:format)"}
{:method=>"regenerate_pdf_charge_batch", :url=>"POST", :action=>"/charge_batches/:id/regenerate_pdf(.:format)"}
{:method=>"upload_images_charge_batch", :url=>"POST", :action=>"/charge_batches/:id/upload_images(.:format)"}
{:method=>"case_log_charge_batch", :url=>"GET", :action=>"/charge_batches/:id/case_log(.:format)"}
{:method=>"charge_batch_incoming_logs", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/incoming_logs(.:format)"}
{:method=>"POST", :url=>"/charge_batches/:charge_batch_id/incoming_logs(.:format)", :action=>"incoming_logs#create"}
{:method=>"new_charge_batch_incoming_log", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/incoming_logs/new(.:format)"}
{:method=>"edit_charge_batch_incoming_log", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/incoming_logs/:id/edit(.:format)"}
{:method=>"charge_batch_incoming_log", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/incoming_logs/:id(.:format)"}
{:method=>"PUT", :url=>"/charge_batches/:charge_batch_id/incoming_logs/:id(.:format)", :action=>"incoming_logs#update"}
{:method=>"DELETE", :url=>"/charge_batches/:charge_batch_id/incoming_logs/:id(.:format)", :action=>"incoming_logs#destroy"}
{:method=>"charge_batch_encounter_tickets", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/tickets(.:format)"}
{:method=>"POST", :url=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/tickets(.:format)", :action=>"tickets#create"}
{:method=>"new_charge_batch_encounter_ticket", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/tickets/new(.:format)"}
{:method=>"edit_charge_batch_encounter_ticket", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/tickets/:id/edit(.:format)"}
{:method=>"charge_batch_encounter_ticket", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/tickets/:id(.:format)"}
{:method=>"PUT", :url=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/tickets/:id(.:format)", :action=>"tickets#update"}
{:method=>"DELETE", :url=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/tickets/:id(.:format)", :action=>"tickets#destroy"}
{:method=>"collection_delete_charge_batch_encounter_encounter_images", :url=>"POST", :action=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/encounter_images/collection_delete(.:format)"}
{:method=>"collection_add_charge_batch_encounter_encounter_images", :url=>"POST", :action=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/encounter_images/collection_add(.:format)"}
{:method=>"charge_batch_encounter_encounter_images", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/encounter_images(.:format)"}
{:method=>"POST", :url=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/encounter_images(.:format)", :action=>"encounter_images#create"}
{:method=>"new_charge_batch_encounter_encounter_image", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/encounter_images/new(.:format)"}
{:method=>"edit_charge_batch_encounter_encounter_image", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/encounter_images/:id/edit(.:format)"}
{:method=>"charge_batch_encounter_encounter_image", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/encounter_images/:id(.:format)"}
{:method=>"PUT", :url=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/encounter_images/:id(.:format)", :action=>"encounter_images#update"}
{:method=>"DELETE", :url=>"/charge_batches/:charge_batch_id/encounters/:encounter_id/encounter_images/:id(.:format)", :action=>"encounter_images#destroy"}
{:method=>"print_barcode_charge_batch_encounter", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/encounters/:id/print_barcode(.:format)"}
{:method=>"found_charge_batch_encounter", :url=>"POST", :action=>"/charge_batches/:charge_batch_id/encounters/:id/found(.:format)"}
{:method=>"remove_schedule_item_charge_batch_encounter", :url=>"POST", :action=>"/charge_batches/:charge_batch_id/encounters/:id/remove_schedule_item(.:format)"}
{:method=>"move_charge_batch_encounter", :url=>"POST", :action=>"/charge_batches/:charge_batch_id/encounters/:id/move(.:format)"}
{:method=>"upload_images_charge_batch_encounter", :url=>"POST", :action=>"/charge_batches/:charge_batch_id/encounters/:id/upload_images(.:format)"}
{:method=>"escalate_charge_batch_encounter", :url=>"POST", :action=>"/charge_batches/:charge_batch_id/encounters/:id/escalate(.:format)"}
{:method=>"regenerate_pdf_charge_batch_encounter", :url=>"POST", :action=>"/charge_batches/:charge_batch_id/encounters/:id/regenerate_pdf(.:format)"}
{:method=>"missing_charge_batch_encounters", :url=>"POST", :action=>"/charge_batches/:charge_batch_id/encounters/missing(.:format)"}
{:method=>"charge_batch_encounters", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/encounters(.:format)"}
{:method=>"POST", :url=>"/charge_batches/:charge_batch_id/encounters(.:format)", :action=>"encounters#create"}
{:method=>"new_charge_batch_encounter", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/encounters/new(.:format)"}
{:method=>"edit_charge_batch_encounter", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/encounters/:id/edit(.:format)"}
{:method=>"charge_batch_encounter", :url=>"GET", :action=>"/charge_batches/:charge_batch_id/encounters/:id(.:format)"}
{:method=>"PUT", :url=>"/charge_batches/:charge_batch_id/encounters/:id(.:format)", :action=>"encounters#update"}
{:method=>"DELETE", :url=>"/charge_batches/:charge_batch_id/encounters/:id(.:format)", :action=>"encounters#destroy"}
{:method=>"charge_batches", :url=>"GET", :action=>"/charge_batches(.:format)"}
{:method=>"POST", :url=>"/charge_batches(.:format)", :action=>"charge_batches#create"}
{:method=>"new_charge_batch", :url=>"GET", :action=>"/charge_batches/new(.:format)"}
{:method=>"edit_charge_batch", :url=>"GET", :action=>"/charge_batches/:id/edit(.:format)"}
{:method=>"charge_batch", :url=>"GET", :action=>"/charge_batches/:id(.:format)"}
{:method=>"PUT", :url=>"/charge_batches/:id(.:format)", :action=>"charge_batches#update"}
{:method=>"DELETE", :url=>"/charge_batches/:id(.:format)", :action=>"charge_batches#destroy"}
{:method=>"edi_payment_select_index", :url=>"/edi_payment_select(.:format)", :action=>"payment_select#edi_index"}
{:method=>"encounter_summary_report", :url=>"/encounter_summary_report(.:format)", :action=>"encounter_summary_report#show"}
{:method=>"help", :url=>"/help(.:format)", :action=>"static_pages#help"}
{:method=>"get_items", :url=>"/get_items(.:format)", :action=>"manage_tickets#get_items"}
{:method=>"encounter_comments", :url=>"/encounters/:encounter_id/comments(.:format)", :action=>"comments#create"}
{:method=>"payment_comments", :url=>"/payments/:payment_id/comments(.:format)", :action=>"comments#create"}
{:method=>"schedule", :url=>"/schedules/:id(.:format)", :action=>"schedules#schedule_show"}
{:method=>"schedules", :url=>"/schedules(.:format)", :action=>"schedules#index"}
{:method=>"schedule_comparison_print", :url=>"/schedules/:id/print(.:format)", :action=>"schedules#print"}
{:method=>"edit_incoming_log", :url=>"GET", :action=>"/incoming_logs/:id/edit(.:format)"}
{:method=>"update_incoming_log_batch_id", :url=>"PUT", :action=>"/incoming_logs/:id(.:format)"}
{:method=>"new_ticket_record_request", :url=>"/tickets/:ticket_id/record_request/new(.:format)", :action=>"record_requests#new"}
{:method=>"edit_ticket_record_request", :url=>"/tickets/:ticket_id/record_request/:id/edit(.:format)", :action=>"record_requests#edit"}
{:method=>"ticket_record_request", :url=>"/tickets/:ticket_id/record_request/:id(.:format)", :action=>"record_requests#show"}
{:method=>"create_payment_payment_select", :url=>"POST", :action=>"/payment_select/:id/create_payment(.:format)"}
{:method=>"create_batch_images_payment_select", :url=>"POST", :action=>"/payment_select/:id/create_batch_images(.:format)"}
{:method=>"payment_select_index", :url=>"GET", :action=>"/payment_select(.:format)"}
{:method=>"POST", :url=>"/payment_select(.:format)", :action=>"payment_select#create"}
{:method=>"new_payment_select", :url=>"GET", :action=>"/payment_select/new(.:format)"}
{:method=>"edit_payment_select", :url=>"GET", :action=>"/payment_select/:id/edit(.:format)"}
{:method=>"payment_select", :url=>"GET", :action=>"/payment_select/:id(.:format)"}
{:method=>"PUT", :url=>"/payment_select/:id(.:format)", :action=>"payment_select#update"}
{:method=>"DELETE", :url=>"/payment_select/:id(.:format)", :action=>"payment_select#destroy"}
{:method=>"create_encounter_encounter_select", :url=>"POST", :action=>"/encounter_select/:id/create_encounter(.:format)"}
{:method=>"create_batch_images_encounter_select", :url=>"POST", :action=>"/encounter_select/:id/create_batch_images(.:format)"}
{:method=>"encounter_select_index", :url=>"GET", :action=>"/encounter_select(.:format)"}
{:method=>"POST", :url=>"/encounter_select(.:format)", :action=>"encounter_select#create"}
{:method=>"new_encounter_select", :url=>"GET", :action=>"/encounter_select/new(.:format)"}
{:method=>"edit_encounter_select", :url=>"GET", :action=>"/encounter_select/:id/edit(.:format)"}
{:method=>"encounter_select", :url=>"GET", :action=>"/encounter_select/:id(.:format)"}
{:method=>"PUT", :url=>"/encounter_select/:id(.:format)", :action=>"encounter_select#update"}
{:method=>"DELETE", :url=>"/encounter_select/:id(.:format)", :action=>"encounter_select#destroy"}
{:method=>"users", :url=>"GET", :action=>"/users(.:format)"}
{:method=>"POST", :url=>"/users(.:format)", :action=>"users#create"}
{:method=>"new_user", :url=>"GET", :action=>"/users/new(.:format)"}
{:method=>"edit_user", :url=>"GET", :action=>"/users/:id/edit(.:format)"}
{:method=>"user", :url=>"GET", :action=>"/users/:id(.:format)"}
{:method=>"PUT", :url=>"/users/:id(.:format)", :action=>"users#update"}
{:method=>"DELETE", :url=>"/users/:id(.:format)", :action=>"users#destroy"}
{:method=>"roles", :url=>"GET", :action=>"/roles(.:format)"}
{:method=>"POST", :url=>"/roles(.:format)", :action=>"roles#create"}
{:method=>"new_role", :url=>"GET", :action=>"/roles/new(.:format)"}
{:method=>"edit_role", :url=>"GET", :action=>"/roles/:id/edit(.:format)"}
{:method=>"role", :url=>"GET", :action=>"/roles/:id(.:format)"}
{:method=>"PUT", :url=>"/roles/:id(.:format)", :action=>"roles#update"}
{:method=>"DELETE", :url=>"/roles/:id(.:format)", :action=>"roles#destroy"}
{:method=>"auth_index", :url=>"GET", :action=>"/auth(.:format)"}
{:method=>"POST", :url=>"/auth(.:format)", :action=>"auth#create"}
{:method=>"signin", :url=>"/signin(.:format)", :action=>"auth#auth"}
{:method=>"signout", :url=>"/signout(.:format)", :action=>"auth#destroy"}
{:method=>"pending_user", :url=>"/pending(.:format)", :action=>"auth#pending"}
{:method=>"/auth/:provider/callback(.:format)", :url=>"auth#create", :action=>nil}
{:method=>"auth_failure", :url=>"/auth/failure(.:format)", :action=>"auth#failure"}
{:method=>"root", :url=>"/", :action=>"charge_batches#index"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment