Skip to content

Commit

Permalink
Merge pull request #403 from smortex/fix-ci-with-latest-yard
Browse files Browse the repository at this point in the history
Fix CI with latest yard
  • Loading branch information
jordanbreen28 authored Nov 1, 2024
2 parents a4be216 + 0eeb75d commit 2024b92
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion puppet-strings.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ Gem::Specification.new do |s|
s.files = Dir['CHANGELOG.md', 'README.md', 'LICENSE', 'lib/**/*', 'exe/**/*']

s.add_runtime_dependency 'rgen', '~> 0.9'
s.add_runtime_dependency 'yard', '~> 0.9', '< 0.9.37'
s.add_runtime_dependency 'yard', '~> 0.9'
s.requirements << 'puppet, >= 7.0.0'
end
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
require 'spec_helper'
require 'puppet-strings/yard'

class NullLogger
def write(_message); end
end

describe PuppetStrings::Yard::Handlers::Ruby::DataTypeHandler, if: TEST_PUPPET_DATATYPES do
subject(:spec_subject) do
YARD::Parser::SourceParser.parse_string(source, :ruby)
Expand All @@ -19,7 +23,7 @@
end

def suppress_yard_logging
YARD::Logger.instance.io = nil
YARD::Logger.instance.io = NullLogger.new
end

describe 'parsing source without a data type definition' do
Expand Down

0 comments on commit 2024b92

Please sign in to comment.