module TweetWatch

Constants

VERSION

Attributes

config[W]

Public Class Methods

config() click to toggle source
# File lib/tweet_watch.rb, line 18
def self.config
  @config ||= Config.new
end
configure() { |config| ... } click to toggle source
# File lib/tweet_watch.rb, line 26
def self.configure
  yield(config)
end
reset() click to toggle source
# File lib/tweet_watch.rb, line 22
def self.reset
  @config = Config.new
end
root() click to toggle source
# File lib/tweet_watch.rb, line 30
def self.root
    File.dirname __dir__
end