Public Gists by articulatedman

Gravatar
Tue Feb 10 21:13:16 -0800 2009
1
2
3
Rails::Initializer.run do |config|
  config.gem "rspec-rails", :lib => false, :version => "1.1.12"
  config.gem "rspec", :lib => false, :version => "1.1.12"
Gravatar
Wed Nov 12 21:04:07 -0800 2008
1
2
3
resource 'posts/:id' do
  get do |id|
    # show post id
Gravatar
Wed Nov 12 19:43:05 -0800 2008
1
2
3
def it_should_return(content_type)
  it "should have content type #{content_type}" do
    @response.should have_content_type(content_type)