Module: Pv

Defined in:
lib/pv.rb,
lib/pv/story.rb,
lib/pv/command.rb,
lib/pv/version.rb,
lib/pv/bug_tracker.rb,
lib/pv/configuration.rb

Defined Under Namespace

Classes: BugTracker, Command, Configuration, Story

Constant Summary collapse

VERSION =
"0.0.7"

Class Method Summary collapse

Class Method Details

.configObject



11
12
13
# File 'lib/pv.rb', line 11

def self.config
  @config ||= Pv::Configuration.new
end

.rootObject



19
20
21
22
23
24
# File 'lib/pv.rb', line 19

def self.root
  @root ||= begin
    spec = Gem::Specification.find_by_name 'pv'
    spec.gem_dir
  end
end

.trackerObject



15
16
17
# File 'lib/pv.rb', line 15

def self.tracker
  @tracker ||= Pv::BugTracker.new
end