Sha256: 6a67278096cb49d465dd6898ca5e7b8691f49b1ca33af79244ff418d9e933860
Contents?: true
Size: 665 Bytes
Versions: 5
Compression:
Stored size: 665 Bytes
Contents
# frozen_string_literal: true module Schmersion class Formatter attr_reader :filename def initialize(filename, options = {}) @filename = filename @options = options end # Generate the output which should be included in the export. This # should return a string which will also be displayed when doing # dry-runs of a release. # rubocop:disable Lint/UnusedMethodArgument def generate(repo, version) '' end # rubocop:enable Lint/UnusedMethodArgument # Insert a given part into the given source file path # # @param part [String] # @return [void] def insert(part) end end end
Version data entries
5 entries across 5 versions & 1 rubygems