Sha256: 602817461c687c7f7e23a7d50c6e7d712dfab4bd2fc3a14b431d61d722bcb168

Contents?: true

Size: 441 Bytes

Versions: 4

Compression:

Stored size: 441 Bytes

Contents

require 'where_to/version'
require 'where_to/locator'
require 'where_to/location'
require 'where_to/configuration'
require 'where_to/episode_formatter'
require 'where_to/tvdb'

module WhereTo
  class << self
    attr_accessor :configuration
  end

  def self.configuration
    @configuration ||= Configuration.new
  end

  def self.reset
    @configuration = Configuration.new
  end

  def self.configure
    yield configuration
  end

end 

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
where_to-0.9.6 lib/where_to.rb
where_to-0.9.5 lib/where_to.rb
where_to-0.9.4 lib/where_to.rb
where_to-0.9.3 lib/where_to.rb