Created
May 21, 2009 00:36
-
-
Save andion/115186 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class LifeController < ApplicationController | |
require 'rubygems' | |
require 'twitter' | |
layout 'life' | |
def show | |
@twitts = [] | |
@my_twitts = [] | |
Twitter::Search.new('bugyou').per_page(3).each do |r| | |
@twitts << r | |
end | |
Twitter::Search.new.from('bugyou').per_page(3).each do |r| | |
@my_twitts << r | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment