Sha256: 46d15755a9f69d915f4d61c741bfda4d7eee902460b584f7d2b39a3193ac2c17
Contents?: true
Size: 567 Bytes
Versions: 10
Compression:
Stored size: 567 Bytes
Contents
class ::RSpec::Core::Configuration # This needs to be implemented if/when we allow the Opal side to decide what files to run def files_or_directories_to_run=(*files) @files_or_directories_to_run = [] @files_to_run = nil end def requires=(paths) # can't change requires @ this stage, this method calls RubyProject which will crash on Opal end end class ::RSpec::Core::ConfigurationOptions def options_file_as_erb_string(path) # ERB.new(File.read(path), nil, '-').result(binding) # ERB.new(File.read(path), nil, '-') '' end end
Version data entries
10 entries across 10 versions & 1 rubygems