public
Description: Find some previously used domain names and check availability
Homepage:
Clone URL: git://github.com/remi/domain-finder.git
domain-finder / domain-finder.gemspec
100644 23 lines (19 sloc) 1.389 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
  s.name = "domain-finder"
  s.version = "0.1.0"
  s.date = "2008-06-14"
  s.summary = "Find available domains names"
  s.email = "remi@remitaylor.com"
  s.homepage = "http://github.com/remi/domain-finder"
  s.description = "Find some previously used domain names and check availability"
  s.has_rdoc = true
  s.rdoc_options = ["--quiet", "--title", "domain-finder", "--opname", "index.html", "--line-numbers", "--main", "README", "--inline-source"]
  s.extra_rdoc_files = ['README']
  s.authors = ["remi Taylor"]
 
  # generate using: $ ruby -e "puts Dir['**/**'].select{|x| File.file?x}.inspect"
  s.files = ["bin/domain-finder", "COPYING", "lib/domain-finder.rb", "lib/domain-finder/bin.rb", "lib/domain-finder/domaintools.rb", "lib/domain-finder/google.rb", "lib/domain-finder/daterange.rb", "lib/domain-finder/moniker.rb", "lib/domain-finder/domain.rb", "lib/domain-finder/secure_post.rb", "domain-finder.gemspec", "Rakefile", "NOTES", "README", "tmp/specdoc.html", "spec/spec_helper.rb", "spec/google_spec.rb", "spec/moniker_spec.rb", "spec/daterange_spec.rb", "spec/html/google-1.html", "spec/html/moniker-1.html", "spec/html/domaintools-1.html", "spec/domaintools_spec.rb"]
 
  s.add_dependency("remi-simplecli", ["> 0.0.0"])
  s.add_dependency("hpricot", ["> 0.0.0"])
  
  s.executables = ["domain-finder"]
  s.default_executable = "domain-finder"
end