sqlite-robotstxt 0.0.1-alpha.3

A SQLite extension for parsing robots.txt files
Documentation
1
2
3
4
5
6
7
8
9
10
11
require "version"

module Sqliterobotstxt
  class Error < StandardError; end
  def self.loadable_path
    File.expand_path('../robotstxt0', __FILE__)
  end
  def self.load(db)
    db.load_extension(self.loadable_path)
  end
end