mirror of
https://github.com/foo-dogsquared/asciidoctor-foodogsquared-extensions.git
synced 2025-01-30 22:57:56 +00:00
Gabriel Arazas
de9f3a0e9c
Also restructured how they're named in the filesystem and the class names as well.
16 lines
295 B
Ruby
16 lines
295 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'asciidoctor'
|
|
require 'asciidoctor-foodogsquared-extensions'
|
|
|
|
include Asciidoctor::Foodogsquared::Extensions
|
|
RSpec.configure do
|
|
def fixtures_dir
|
|
File.join __dir__, 'fixtures'
|
|
end
|
|
|
|
def fixtures_file path
|
|
File.join fixtures_dir, path
|
|
end
|
|
end
|