Sha256: 3290e54c379eb00f99ce47ed939cbb27aeb3504814e39221845330bba6da8d12
Contents?: true
Size: 1.6 KB
Versions: 8
Compression:
Stored size: 1.6 KB
Contents
require 'active_model' require 'yaml' require 'confstruct' require 'restclient' require 'nokogiri' require 'time' # RGeoServer is a Ruby client for the GeoServer RESTful Configuration interface. module RGeoServer require 'rgeoserver/version' require 'rgeoserver/config' autoload :Catalog, "rgeoserver/catalog" autoload :Coverage, "rgeoserver/coverage" autoload :CoverageStore, "rgeoserver/coveragestore" autoload :DataStore, "rgeoserver/datastore" autoload :FeatureType, "rgeoserver/featuretype" autoload :GeoServerUrlHelpers, "rgeoserver/geoserver_url_helpers" autoload :Layer, "rgeoserver/layer" autoload :LayerGroup, "rgeoserver/layergroup" autoload :Namespace, "rgeoserver/namespace" autoload :ResourceInfo, "rgeoserver/resource" autoload :RestApiClient, "rgeoserver/rest_api_client" autoload :Style, "rgeoserver/style" autoload :WmsStore, "rgeoserver/wmsstore" autoload :Workspace, "rgeoserver/workspace" autoload :BoundingBox, "rgeoserver/utils/boundingbox" autoload :Metadata, "rgeoserver/utils/metadata" autoload :ShapefileInfo, "rgeoserver/utils/shapefile_info" # @return [Catalog] the default GeoServer Catalog instance def self.catalog opts = nil @@catalog ||= RGeoServer::Catalog.new (opts.nil?? RGeoServer::Config[:geoserver] : opts) end class RGeoServerError < StandardError end class GeoServerInvalidRequest < RGeoServerError end class GeoServerArgumentError < RGeoServerError end end
Version data entries
8 entries across 8 versions & 1 rubygems