Sha256: ea1871d73705951adbb24df7c7dd0683453cb1fd4fd384927959a629ba5368d3
Contents?: true
Size: 340 Bytes
Versions: 5
Compression:
Stored size: 340 Bytes
Contents
# frozen_string_literal: true module InstallGemLocal module BuildGem def build_gem puts '' puts 'Build Gem'.green file = tty_command.run('find -type f -name "*.gemspec"') file_name = file.out.strip file_name.empty? ? ap('Gemspec not exist') : tty_command.run("gem build #{file_name}") end end end
Version data entries
5 entries across 5 versions & 1 rubygems