Skip to content

Instantly share code, notes, and snippets.

D:\Projects\SAP\eod>vagrant up
[default] Importing base box 'lucid64'...
[default] The guest additions on this VM do not match the install version of
VirtualBox! This may cause things such as forwarded ports, shared
folders, and more to not work properly. If any of those things fail on
this machine, please update the guest additions and repackage the
box.
Guest Additions Version: 4.1.0
VirtualBox Version: 4.1.8
vagrant@lucid64:~$ lsmod | grep vboxsf
vagrant@lucid64:~$ lsmod
Module Size Used by
ppdev 6375 0
psmouse 65040 0
lp 9336 0
serio_raw 4950 0
parport_pc 29958 0
fbcon 39270 71
tileblit 2487 1 fbcon
D:\Projects\SAP\eod>vagrant up
INFO vagrant: `vagrant` invoked: ["up"]
DEBUG vagrant: Creating Vagrant environment
INFO environment: Environment initialized (#<Vagrant::Environment:0x28e48a8>)
INFO environment: - cwd: D:/Projects/SAP/eod
INFO environment: Home path: C:/Users/Nils/.vagrant.d
DEBUG vagrant: Loading environment
INFO environment: Loading configuration...
DEBUG loader: Set :default = "C:/dev/Ruby193/lib/ruby/gems/1.9.1/gems/vagrant-0.9.7/config/default.rb"
DEBUG loader: Populating proc cache for "C:/dev/Ruby193/lib/ruby/gems/1.9.1/gems/vagrant-0.9.7/config/default.rb"
new_user_session GET /users/sign_in(.:format) {:action=>"new", :controller=>"devise/sessions"}
user_session POST /users/sign_in(.:format) {:action=>"create", :controller=>"devise/sessions"}
destroy_user_session DELETE /users/sign_out(.:format) {:action=>"destroy", :controller=>"devise/sessions"}
user_password POST /users/password(.:format) {:action=>"create", :controller=>"devise/passwords"}
new_user_password GET /users/password/new(.:format) {:action=>"new", :controller=>"devise/passwords"}
edit_user_password GET /users/password/edit(.:format) {:action=>"edit", :controller=>"devise/passwords"}
PUT /users/password(.:format) {:action=>"update", :controller=>"devise/passwords"}
cancel_user_registration GET /users/cancel(.:format) {:action=>"cancel", :controller=>"devise/registrations"}
user_registration POST /users(.:format) {:action=>"create", :controller=>"devis
home_index GET /home/index(.:format) {:controller=>"home", :action=>"index"}
videos /videos(.:format) {:controller=>"videos", :action=>"index"}
videos_add /videos/add(.:format) {:controller=>"videos", :action=>"add"}
videos_add_url /videos/add/url(.:format) {:controller=>"videos", :action=>"add_from_url"}
/videos/:id(.:format) {:controller=>"videos", :action=>"show"}
root / {:controller=>"home", :action=>"index"}
<% @videos.in_groups_of(3) do |video_group| %>
<div class="row">
<% video_group.each do |video| %>
<% if video != nil %>
<div class="span4">
<%= link_to video_path(video) do %>
<img class="thumbnail" src="http://placehold.it/210x150" />
<% end %>
<h5><%= video.title rescue "No title" %></h5>
</div>
<% @videos.in_groups_of(3) do |video_group| %>
<div class="row">
<% video_group.each do |video| %>
<% if video != nil %>
<div class="span4">
<%= link_to video do %>
<img class="thumbnail" src="http://placehold.it/210x150" />
<% end %>
<h5><%= video.title rescue "No title" %></h5>
</div>