Skip to content

Instantly share code, notes, and snippets.

@mdarby
Created January 4, 2009 16:12
Show Gist options
  • Save mdarby/43092 to your computer and use it in GitHub Desktop.
Save mdarby/43092 to your computer and use it in GitHub Desktop.
./script/generate scaffold Video title:string video_url:string
#video.rb
class Video < ActiveRecord::Base
acts_as_video_fu
end
Video.create!(:title => "Some Title", :video_url => "http://www.youtube.com/watch?v=gEILFf2XSrM")
#show.html.erb
<%= display_video(@video) %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment