module Supercamp

Constants

VERSION

Public Instance Methods

campgrounds() click to toggle source
# File lib/supercamp.rb, line 27
def campgrounds
  Supercamp::Criteria::Campground.new
end
campsites() click to toggle source
# File lib/supercamp.rb, line 23
def campsites
  Supercamp::Criteria::Campsite.new
end
config() click to toggle source
# File lib/supercamp.rb, line 15
def config
  @config ||= Configuration.new
end
configure() { |config| ... } click to toggle source
# File lib/supercamp.rb, line 19
def configure
  yield config
end
details() click to toggle source
# File lib/supercamp.rb, line 31
def details
  Supercamp::Criteria::Detail.new
end