Sha256: 432ddbd2f49ffc3a35ec46c51fb4db0b890fc56799260af0b26a870498dd0251
Contents?: true
Size: 810 Bytes
Versions: 18
Compression:
Stored size: 810 Bytes
Contents
# frozen_string_literal: true describe 'GH-1035', site: true, stdio: true do before do File.write('content/foo.md', '[<%= @items["/bar.*"].compiled_content(snapshot: :raw) %>]') File.write('content/bar.md', 'I am bar!') File.write('lib/stuff.rb', <<~EOS) Class.new(Nanoc::Filter) do identifier :gh_1031_text2bin type :text => :binary def run(content, params = {}) File.write(output_filename, content) end end EOS File.write('Rules', <<EOS) compile '/bar.*' do filter :gh_1031_text2bin end compile '/foo.*' do filter :erb write '/foo.txt' end EOS end it 'can access textual content of now-binary item' do Nanoc::CLI.run(%w[compile]) expect(File.read('output/foo.txt')).to eql('[I am bar!]') end end
Version data entries
18 entries across 18 versions & 1 rubygems