Sha256: 972f2a15cde8ddbbeb5d11523312d20b403da43278397d6d8d535e7aaf040cc5
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 KB
Contents
Dir[File.dirname(__FILE__) + '/wikipedia/**/*.rb'].each { |f| require f } require 'uri' module Wikipedia # Examples : # page = Wikipedia.find('Rails') # => #<Wikipedia:0x123102> # page.content # => wiki content appears here # basically just a wrapper for doing # client = Wikipedia::Client.new # client.find('Rails') # def self.find( page, options = {} ) client.find( page, options ) end def self.find_image( title, options = {} ) client.find_image( title, options ) end def self.find_random( options = {} ) client.find_random( options ) end def self.configure(&block) Configuration.instance.instance_eval(&block) end # rubocop:disable Style/MethodName def self.Configure(&block) configure(&block) end configure do protocol 'https' domain 'en.wikipedia.org' path 'w/api.php' user_agent( 'wikipedia-client/1.3 (https://github.com/kenpratt/wikipedia-client)' ) end class << self private def client @client ||= Wikipedia::Client.new end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wikipedia-client-1.6.4 | lib/wikipedia.rb |