diff --git a/.github/workflows/test-ruby.yml b/.github/workflows/test-ruby.yml index 91ef6990..eb215d97 100644 --- a/.github/workflows/test-ruby.yml +++ b/.github/workflows/test-ruby.yml @@ -11,6 +11,18 @@ on: workflow_call: jobs: +# TODO: LH - Implement this when ruby version for html-formatter becomes a minimum of v3.0 +# This will save a lot of aggravation +# rubocop: +# runs-on: ubuntu-latest +# steps: +# - uses: actions/checkout@v4 +# - uses: ruby/setup-ruby@v1 +# with: +# ruby-version: '2.6' +# bundler-cache: true +# - run: bundle exec rubocop + test-ruby: runs-on: ${{ matrix.os }} strategy: diff --git a/CHANGELOG.md b/CHANGELOG.md index 68d7d781..852e80f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +### Changed +- [Ruby] Alter asset template location scanner in codebase to be hardcoded (Was always only in one location) ([#329](https://github.com/cucumber/html-formatter/pull/329)) ## [21.7.0] - 2024-08-12 ### Changed diff --git a/ruby/cucumber-html-formatter.gemspec b/ruby/cucumber-html-formatter.gemspec index 02134ab6..c4f12f48 100644 --- a/ruby/cucumber-html-formatter.gemspec +++ b/ruby/cucumber-html-formatter.gemspec @@ -24,7 +24,7 @@ Gem::Specification.new do |s| 'source_code_uri' => 'https://github.com/cucumber/html-formatter' } - s.add_runtime_dependency 'cucumber-messages', '> 19', '< 27' + s.add_dependency 'cucumber-messages', '> 19', '< 28' s.add_development_dependency 'cucumber-compatibility-kit', '~> 15.2' s.add_development_dependency 'rake', '~> 13.2' diff --git a/ruby/lib/cucumber/html_formatter/formatter.rb b/ruby/lib/cucumber/html_formatter/formatter.rb index 55ad0ee8..398c78e8 100644 --- a/ruby/lib/cucumber/html_formatter/formatter.rb +++ b/ruby/lib/cucumber/html_formatter/formatter.rb @@ -58,7 +58,7 @@ def post_message end def template_writer - @template_writer ||= TemplateWriter.new(AssetsLoader.template) + @template_writer ||= TemplateWriter.new end end end diff --git a/ruby/lib/cucumber/html_formatter/template_writer.rb b/ruby/lib/cucumber/html_formatter/template_writer.rb index dbf29389..80710b84 100644 --- a/ruby/lib/cucumber/html_formatter/template_writer.rb +++ b/ruby/lib/cucumber/html_formatter/template_writer.rb @@ -4,9 +4,10 @@ module Cucumber module HTMLFormatter class TemplateWriter attr_reader :template + private :template - def initialize(template) - @template = template + def initialize + @template = AssetsLoader.template end def write_between(from, to) diff --git a/ruby/spec/cucumber/html_formatter/assets_loader_spec.rb b/ruby/spec/cucumber/html_formatter/assets_loader_spec.rb index bd6688ef..9c61e84f 100644 --- a/ruby/spec/cucumber/html_formatter/assets_loader_spec.rb +++ b/ruby/spec/cucumber/html_formatter/assets_loader_spec.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true describe Cucumber::HTMLFormatter::AssetsLoader do - describe '#template' do + describe '.template' do it 'reads the content of assets/index.mustache.html' do expect(File).to receive(:read).with(a_string_ending_with('assets/index.mustache.html')) @@ -9,7 +9,7 @@ end end - describe '#css' do + describe '.css' do it 'reads the content of assets/main.css' do expect(File).to receive(:read).with(a_string_ending_with('assets/main.css')) @@ -17,7 +17,7 @@ end end - describe '#script' do + describe '.script' do it 'reads the content of assets/main.js' do expect(File).to receive(:read).with(a_string_ending_with('assets/main.js')) diff --git a/ruby/spec/cucumber/html_formatter/template_writer_spec.rb b/ruby/spec/cucumber/html_formatter/template_writer_spec.rb index 50fb65f8..5c3e86b4 100644 --- a/ruby/spec/cucumber/html_formatter/template_writer_spec.rb +++ b/ruby/spec/cucumber/html_formatter/template_writer_spec.rb @@ -2,7 +2,11 @@ describe Cucumber::HTMLFormatter::TemplateWriter do describe '#write_between' do - subject(:template_writer) { described_class.new(template) } + subject(:template_writer) { described_class.new } + + before do + allow(Cucumber::HTMLFormatter::AssetsLoader).to receive(:template).and_return(template) + end let(:template) { 'Some template {{here}} with content after' }