module MediaWiktory::Wikipedia::Modules::Wikibase

Get information about the Wikibase client and the associated Wikibase repository.

The “submodule” (MediaWiki API term) is included in action after setting some param, providing additional tweaking for this param. Example (for {MediaWiktory::Wikipedia::Actions::Query} and its submodules):

“`ruby api.query # returns Actions::Query

.prop(:revisions)  # adds prop=revisions to action URL, and includes Modules::Revisions into action
.limit(10)         # method of Modules::Revisions, adds rvlimit=10 to URL

“`

All submodule's parameters are documented as its public methods, see below.

Public Instance Methods

_prop(value) click to toggle source

@private

Calls superclass method
# File lib/mediawiktory/wikipedia/modules/wikibase.rb, line 30
def _prop(value)
  defined?(super) && super || ["url", "siteid"].include?(value.to_s) && merge(wbprop: value.to_s, replace: false)
end
prop(*values) click to toggle source

Which properties to get:

@param values [Array<String>] Allowed values: “url” ( Base URL, script path and article path of the Wikibase repository), “siteid” ( The siteid of this site). @return [self]

# File lib/mediawiktory/wikipedia/modules/wikibase.rb, line 25
def prop(*values)
  values.inject(self) { |res, val| res._prop(val) or fail ArgumentError, "Unknown value for prop: #{val}" }
end