Sha256: 76984e5404ef18daef725b254240fb94a18799276af059f92124dfb9df8135bb

Contents?: true

Size: 360 Bytes

Versions: 15

Compression:

Stored size: 360 Bytes

Contents

module WhereTo
  class Configuration
    attr_accessor :folder_format, :tvdb_api_key

    def initialize
      @folder_format = "%series_title/Season %season_number (%season_airdate)/"
      @tvdb_api_key  = "You need to get one before you can lookup episode information automatically"
    end

    def folder_format
      @folder_format.dup
    end

  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
where_to-1.1.0 lib/where_to/configuration.rb
where_to-1.0.7 lib/where_to/configuration.rb
where_to-1.0.6 lib/where_to/configuration.rb
where_to-1.0.5 lib/where_to/configuration.rb
where_to-1.0.4 lib/where_to/configuration.rb
where_to-1.0.3 lib/where_to/configuration.rb
where_to-1.0.2 lib/where_to/configuration.rb
where_to-1.0.1 lib/where_to/configuration.rb
where_to-1.0.0 lib/where_to/configuration.rb
where_to-0.9.6 lib/where_to/configuration.rb
where_to-0.9.5 lib/where_to/configuration.rb
where_to-0.9.4 lib/where_to/configuration.rb
where_to-0.9.3 lib/where_to/configuration.rb
where_to-0.9.2 lib/where_to/configuration.rb
where_to-0.9.1 lib/where_to/configuration.rb