Skip to content

Instantly share code, notes, and snippets.

View FatihDurmus's full-sized avatar
🤡
Happy for now

Fatih Durmuş FatihDurmus

🤡
Happy for now
View GitHub Profile
@chebyte
chebyte / upload_youtube_it.rb
Created June 28, 2011 13:24
upload video with youtube_it from web
#application_controller.rb
class ApplicationController < ActionController::Base
helper_method :yt_client
private
def yt_client
@yt_client ||= YouTubeIt::Client.new(:username => user, :password => password, :dev_key => dev_key)
#you can use the auth method that you want.
end
end