diff --git a/README.rdoc b/README.rdoc index 8950978..bea2022 100644 --- a/README.rdoc +++ b/README.rdoc @@ -1,8 +1,4 @@ -= ResourceFull 0.7.5 - -* http://github.com/bguthrie/resource_full/ - -== DESCRIPTION += ResourceFull ResourceFull provides a fully-compliant ActiveResource server implementation built on ActionController. Additionally, it provides RESTful parameter @@ -10,8 +6,9 @@ queryability, paging, sorting, separation of controller concerns, multiple formats (HTML, XML, JSON), CRUD access permissions, and API metadata surrounding the resource itself. It's opinionated but is intended to provide you with as much as possible without limiting your ability to customize its -behavior. It uses Rails' default to_xml and to_json methods to support object -serialization, which ActiveResource expects but many REST clients will not. +behavior. Unless overridden, it uses Rails' default to_xml and to_json methods +to provide object serialization, which ActiveResource expects but many REST +clients will not. == GOALS @@ -79,7 +76,7 @@ add +map.api+ to your +routes.rb+ file. (The MIT License) -Copyright (c) 2009 Brian Guthrie +Copyright (c) 2010 Brian Guthrie Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/lib/resource_full.rb b/lib/resource_full.rb index 9104eef..813965b 100644 --- a/lib/resource_full.rb +++ b/lib/resource_full.rb @@ -22,6 +22,6 @@ require File.dirname(__FILE__) + '/resource_full/base' # REST API -require File.dirname(__FILE__) + '/resource_full/models/resourced_route.rb' +require File.dirname(__FILE__) + '/resource_full/models/resourced_route' require File.dirname(__FILE__) + '/resource_full/controllers/resources_controller' require File.dirname(__FILE__) + '/resource_full/controllers/routes_controller'