lib/bolt.rb in marcinbunsch-bolt-0.1.4 vs lib/bolt.rb in marcinbunsch-bolt-0.1.6

- old
+ new

@@ -20,9 +20,19 @@ # Bolt::Runners # # Wrapper for specific runners # module Runners + @@noticed_files = [] + + def self.files=(arr) + @@noticed_files = arr + end + + def self.files + @@noticed_files + end + autoload :TestUnit, 'bolt/runners/test_unit' autoload :RSpec, 'bolt/runners/rspec' end # \ No newline at end of file