public
Description: link checking fun for sinatra websites
Homepage: http://github.com/ardekantur/shnork
Clone URL: git://github.com/ardekantur/shnork.git
shnork / shnork.gemspec
100644 35 lines (26 sloc) 0.797 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
28
29
30
31
32
33
34
35
Gem::Specification.new do |s|
  s.specification_version = 2 if s.respond_to? :specification_version=
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
 
  s.name = 'shnork'
  s.version = '0.2.1'
  s.date = "2008-12-14"
 
  s.description = s.summary = "make sure your sinatra websites are logically sound"
 
  s.author = 'ardekantur'
  s.email = 'greystone@ardekantur.com'
  
  s.files = %w[
readme.md
Rakefile
lib/shnork.rb
lib/rspec_shnork_matchers.rb
spec/shnork_spec.rb
spec/spec_helper.rb
spec/site.rb
]
 
  s.add_dependency 'nokogiri', '>= 1.0.2'
 
  s.has_rdoc = false
  s.homepage = "http://github.com/ardekantur/shnork"
  
  s.test_files = %w[
spec/shnork_spec.rb
]
  
  s.require_paths = %w[lib]
end