basic structure Base class and Url class

This commit is contained in:
woody2shoes 2010-10-20 13:00:50 -06:00
parent 7e2cb3bf94
commit 2a70ba2366
6 changed files with 20 additions and 0 deletions

0
README.rdoc Normal file
View File

6
lib/project_honeypot.rb Normal file
View File

@ -0,0 +1,6 @@
module ProjectHoneypot
def lookup(api_key, url)
searcher = Base.new(api_key)
searcher.lookup(url)
end
end

View File

@ -0,0 +1,10 @@
class Base
def initialize(api_key)
@api_key = api_key
end
def lookup(url)
end
end

View File

@ -0,0 +1,4 @@
class Url
end

0
lib/spec/base_spec.rb Normal file
View File

0
lib/spec/url_spec.rb Normal file
View File