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)
Tue Apr 29 01:50:41 -0700 2008
commit  6c62013270ad852ddea1fbdf85ef70e1a228a668
tree    0bbcd3091d623d915d84cfaf261739c6bc2c3890
parent  5db64f9a322abc7ec733ee4452358a1819a65670
social_feed / init.rb
100644 10 lines (6 sloc) 0.302 kb
1
2
3
4
5
6
7
8
9
10
require 'object_extensions'
 
# configuration
require 'ostruct'
SocialFeed::Conf = OpenStruct.new YAML::load(File.read(RAILS_ROOT + '/config/social_feed.yml'))
 
 
ActionController::Base.helper(SocialFeed::SocialFeedHelper)
 
ActionController::Routing::RouteSet::Mapper.send(:include, SocialFeed::Routing)