Sha256: 137be57a0fd5874fbbb12143d743ef2fe43c4a9c43c950872d5a704611263a80
Contents?: true
Size: 335 Bytes
Versions: 10
Compression:
Stored size: 335 Bytes
Contents
class LicenseeCLI < Thor desc 'license-path [PATH]', "Returns the path to the given project's license file" def license_path(_path) if project.license_file if remote? say project.license_file.path else say File.expand_path project.license_file.path end else exit 1 end end end
Version data entries
10 entries across 10 versions & 1 rubygems