class TestProf::RSpecStamp::Configuration
RSpecStamp
configuration
Attributes
dry_run[RW]
ignore_files[RW]
Public Class Methods
new()
click to toggle source
# File lib/test_prof/rspec_stamp.rb, line 16 def initialize @ignore_files = [%r{spec/support}] @dry_run = ENV["RSTAMP_DRY_RUN"] == "1" self.tags = ENV["RSTAMP"] end
Public Instance Methods
dry_run?()
click to toggle source
# File lib/test_prof/rspec_stamp.rb, line 22 def dry_run? @dry_run == true end