Sha256: b8a04827e106d1d4cbbc3ec44193116085f6174243f395a503dbab8a2c8d5e9b

Contents?: true

Size: 1.14 KB

Versions: 5

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-2016 Akinori MUSHA. See LICENSE.txt for
further details.

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
husc-0.2.1 vendor/bundle/gems/webrobots-0.1.2/README.rdoc
husc-0.2.0 vendor/bundle/gems/webrobots-0.1.2/README.rdoc
husc-0.1.1 vendor/bundle/gems/webrobots-0.1.2/README.rdoc
husc-0.1.0 vendor/bundle/gems/webrobots-0.1.2/README.rdoc
webrobots-0.1.2 README.rdoc