Sha256: fe6411af8f71039450f7781694b042f63653435376aabd359067b0ec61ef24f7
Contents?: true
Size: 525 Bytes
Versions: 10
Compression:
Stored size: 525 Bytes
Contents
# encoding: UTF-8 module Tetra # tetra patch class PatchSubcommand < Tetra::Subcommand option %w(-n --new-tarball), :flag, "suppress patch creation, roll all changes so far in the tarball" parameter "[MESSAGE]", "a short patch description", default: "Sources updated" def execute checking_exceptions do project = Tetra::Project.new(".") ensure_dry_running(:is_not_in_progress, project) do project.commit_sources(message, new_tarball?) end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems