Skip to content

Commit

Permalink
Minor tweaks to README and lib requires.
Browse files Browse the repository at this point in the history
  • Loading branch information
bguthrie committed Apr 27, 2010
1 parent 3f59d67 commit a9f1a24
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
13 changes: 5 additions & 8 deletions README.rdoc
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
= 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
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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/resource_full.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit a9f1a24

Please sign in to comment.