Skip to content

Instantly share code, notes, and snippets.

@royw
royw / home_spec.rb
Created December 9, 2012 05:21
Issue where provide json handling is being invoked on rspec+capybara visit on Ramaze 2012.12.08
require 'spec_helper'
# abridged
feature "Home Page" do
background do
@session.header 'Accept', 'text/html'
end
scenario 'Accessing the home page' do
visit('/')
@royw
royw / example.html
Created August 3, 2013 02:08
Addition to CollapsibleLists.js to support expand all, collapse all.
<div id="floatingbar">
<ul>
<li><a href="#" onClick="CollapsibleLists.expand(true)">Expand All</a></li>
<li><a href="#" onClick="CollapsibleLists.expand(false)">Collapse All</a></li>
</ul>
</div>