Module: StoneChecksums
- Defined in:
- lib/stone_checksums.rb,
lib/stone_checksums/version.rb
Overview
Semantic version for the StoneChecksums gem
Defined Under Namespace
Modules: Version Classes: Error
Class Method Summary collapse
-
.generate(git_dry_run: false) ⇒ void
Generate SHA-256 and SHA-512 checksums for a built .gem and commit them.
-
.install_tasks ⇒ void
Load gem-provided Rake tasks into the current Rake application.
Class Method Details
.generate(git_dry_run: false) ⇒ void
This method returns an undefined value.
Generate SHA-256 and SHA-512 checksums for a built .gem and commit them.
Behavior, options, and side effects are identical to GemChecksums.generate; this method delegates directly to it.
47 48 49 |
# File 'lib/stone_checksums.rb', line 47 def generate(git_dry_run: false) ::GemChecksums.generate(git_dry_run: git_dry_run) end |
.install_tasks ⇒ void
This method returns an undefined value.
Load gem-provided Rake tasks into the current Rake application.
This delegates to GemChecksums.install_tasks.
36 37 38 |
# File 'lib/stone_checksums.rb', line 36 def install_tasks ::GemChecksums.install_tasks end |