public
Description: a ruby on rails plugin to create and display a social feed
Homepage: http://upstream-berlin.com/blog/open-source/#social_feed
Clone URL: git://github.com/langalex/social_feed.git
Alexander Lang (author)
Fri Apr 25 08:55:20 -0700 2008
commit  0ab7bbdf237aa0f8ee57bca78749eb36720b4a06
tree    67f0400cd0ae71d4eebdaa7f3003239e2f14d853
parent  96ee7079039b3c4dd4b8b5ed2b0ebf6ebb7e206b
social_feed / init.rb
100644 10 lines (6 sloc) 0.274 kb
1
2
3
4
5
6
7
8
9
10
require 'if_not_nil'
 
# configuration
require 'ostruct'
SocialFeedConf = OpenStruct.new :sender_email => '<no-reply@mydomain.com>'
 
 
ActionController::Base.helper(SocialFeed::SocialFeedHelper)
 
ActionController::Routing::RouteSet::Mapper.send(:include, SocialFeed::Routing)