Sha256: 38d30d6d4b756b30cbbb6a8ffe28d9ad0957bd827edd46095cde3f16b2418a56

Contents?: true

Size: 1.14 KB

Versions: 7

Compression:

Stored size: 1.14 KB

Contents

= webrobots

This is a library to help write robots.txt compliant web robots.

== Usage

  require 'webrobots'
  require 'uri'
  require 'net/http'

  robots = WebRobots.new('MyBot/1.0')

  uri = URI('http://digg.com/news/24hr')
  if robots.disallowed?(uri)
    STDERR.puts "Access disallowed: #{uri}"
    exit 1
  end
  body = Net::HTTP.get(uri)
  # ...

== Requirements

- Ruby 1.8.7 or 1.9.2+

== Contributing to webrobots

* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
* Fork the project
* Start a feature/bugfix branch
* Commit and push until you are happy with your contribution
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

== Copyright

Copyright (c) 2010, 2011, 2012 Akinori MUSHA. See LICENSE.txt for
further details.

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
frameworks-capybara-0.2.0.rc6 vendor/bundle/ruby/1.8/gems/webrobots-0.0.13/README.rdoc
frameworks-capybara-0.2.0.rc5 vendor/bundle/ruby/1.8/gems/webrobots-0.0.13/README.rdoc
frameworks-capybara-0.2.0.rc4 vendor/bundle/ruby/1.8/gems/webrobots-0.0.13/README.rdoc
frameworks-capybara-0.2.0.rc3 vendor/bundle/ruby/1.8/gems/webrobots-0.0.13/README.rdoc
frameworks-capybara-0.2.0.rc2 vendor/bundle/ruby/1.8/gems/webrobots-0.0.13/README.rdoc
domo-0.0.5 vendor/bundle/ruby/1.9.1/gems/webrobots-0.0.13/README.rdoc
webrobots-0.0.13 README.rdoc