Sha256: 71cdd6e6c4849158e07c991b56d364f9daa8914fdea390fe803915ef8afbb91e

Contents?: true

Size: 523 Bytes

Versions: 1

Compression:

Stored size: 523 Bytes

Contents

$:.unshift File.expand_path("../..", __FILE__)

require 'simplecov'
SimpleCov.start do
  add_group 'Docify', 'lib/docify'
end

require 'docify'

README_FILES  = {
  'README'          => 'rdoc',
  'README.rdoc'     => 'rdoc',
  'README.md'       => 'markdown',
  'README.markdown' => 'markdown',
  'README.textile'  => 'textile',
  'README.txt'      => 'rdoc',
  'README.foo'      => 'rdoc'
}

def fixture_path
  File.expand_path("../fixtures", __FILE__)
end

def fixture(file)
  File.read(File.join(fixture_path, file))
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
docify-1.0.2 spec/spec_helper.rb