Sha256: 88df8f537999513ca51c96a9e34f1716cfd0adbf9b958feaaf3160d99001a438

Contents?: true

Size: 847 Bytes

Versions: 1

Compression:

Stored size: 847 Bytes

Contents

#!/usr/bin/env ruby

require File.join(File.dirname(__FILE__), '..', '/lib/rawler.rb')
require File.join(File.dirname(__FILE__), '..', '/vendor/lib-trollop.rb')

opts = Trollop::options do
  version "rawler 0.0.3 (c) 2011 Oscar Del Ben"
  banner <<-EOS
Rawler is a command line utility for parsing links on a website

Usage:
      rawler http://example.com [options]

where [options] are:
EOS
  
  # opt :domain, "domain that you want to test", :type => :string
  opt :username, "HTT Basic Username", :type => :string
  opt :password, "HTT Basic Password", :type => :string
end

domain = ARGV.shift

if domain.nil?
  Trollop::die "Domain name is mandatory. Type --help for help"
else
  Trollop::options do
    opt :domain, "Domain address", :type => :string
  end
end

Rawler::Base.new(domain, $stdout, opts[:username], opts[:password]).validate

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rawler-0.0.3 bin/rawler