public
Description: Rails plugin that adds a from_param class method to ActiveRecord::Base for simple URL-based fetching.
Homepage: http://mbleigh.lighthouseapp.com/projects/10478-from-param
Clone URL: git://github.com/mbleigh/from_param.git
Updated README resources.
mbleigh (author)
Tue Apr 29 06:20:29 -0700 2008
commit  75ad9389aa1766348e8ce98aa3471359217c1457
tree    077086a509089a66f45147344541dcbc72870b68
parent  0317cb7e6e089d3bfd18546a353fc577c232a4b0
0
...
42
43
44
45
 
46
47
48
...
51
52
53
54
 
 
55
56
 
...
42
43
44
 
45
46
47
48
...
51
52
53
 
54
55
56
 
57
0
@@ -42,7 +42,7 @@ Example
0
       "#{created_at.strftime("%Y-%m-%d")}-#{title.gsub(" ","-").downcase.gsub(/[^a-z0-9-]/,"")}"
0
     end
0
   end
0
-  
0
+
0
   class PostsController < ApplicationController
0
     # GET /posts/2008-04-26-from-param-plugin-released
0
     @post = Post.from_param(params[:id]) # => <Post title="From Param: Plugin Released" created_at="2008-04-26">
0
@@ -51,6 +51,7 @@ Example
0
 Resources
0
 =========
0
 
0
-Lighthouse: 
0
+GitHub: http://github.com/mbleigh/from_param
0
+Lighthouse: http://mbleigh.lighthouseapp.com/projects/10478-from-param
0
 
0
-Copyright (c) 2008 Michael Bleigh, released under the MIT license
0
+Copyright (c) 2007 Michael Bleigh (http://mbleigh.com/) and Intridea Inc. (http://intridea.com/), released under the MIT license

Comments