public
Description: Adds a helper method to your controller and integration tests that automatically opens the response body in the default browser.
Homepage: http://adeptware.com
Clone URL: git://github.com/adeptware/lindo.git
Click here to lend your support to: lindo and make a donation at www.pledgie.com !
lindo / lindo.gemspec
100644 27 lines (26 sloc) 0.893 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Gem::Specification.new do |s|
  s.name = "lindo"
  s.version = "0.6"
  s.date = "2009-06-30"
  s.summary = "Enables rendering of the body of an HTTP response from inside a functional test."
  s.email = "contact@adeptware.com"
  s.homepage = "http://github.com/adeptware/lindo"
  s.description = "Enables rendering of the body of an HTTP response from inside a functional test. " <<
                  "This makes it easy to diagnose problems when building assert_select statements " <<
                  "or just sanity check the output of the test."
  s.has_rdoc = true
  s.authors = ["Adeptware"]
  s.files = [
    "CHANGELOG",
    "MIT-LICENSE",
    "Rakefile",
"README",
"lindo.gemspec",
"lib/lindo.rb",
"lib/lindo/browser.rb",
"test/lindo_test.rb",
"test/lindo/browser_test.rb"
]
  s.rdoc_options = ["--main", "README"]
  s.extra_rdoc_files = ["README"]
end