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
Search Repo:
Alexander Lang (author)
Fri Apr 25 08:59:06 -0700 2008
commit  42613fb213fe912bbc1733d4b616fa9e2a0db8b9
tree    8e21f7eb843cd7e4ab76c5a6b008f8b9dc651732
parent  0ab7bbdf237aa0f8ee57bca78749eb36720b4a06
social_feed / init.rb
100644 10 lines (6 sloc) 0.276 kb
1
2
3
4
5
6
7
8
9
10
require 'if_not_nil'
 
# configuration
require 'ostruct'
SocialFeed::Conf = OpenStruct.new :sender_email => '<no-reply@mydomain.com>'
 
 
ActionController::Base.helper(SocialFeed::SocialFeedHelper)
 
ActionController::Routing::RouteSet::Mapper.send(:include, SocialFeed::Routing)