Sha256: 51f9a4241a19ccc2ffc3139aa53ee96ac954ce02ec42d15c4f6c284b297cd127
Contents?: true
Size: 488 Bytes
Versions: 18
Compression:
Stored size: 488 Bytes
Contents
# frozen_string_literal: true describe 'GH-1082', site: true, stdio: true do before do File.write('content/a.erb', '<%= @items["/b.*"].binary? %>') File.write('content/b.dat', 'stuff') File.write('Rules', <<EOS) compile '/a.*' do filter :erb write item.identifier.without_ext + '.txt' end passthrough '/b.*' EOS end it 'requires /b to be compiled first' do Nanoc::CLI.run(%w[compile]) expect(File.read('output/a.txt')).to eql('true') end end
Version data entries
18 entries across 18 versions & 1 rubygems