Sha256: a6a8a5cdc41e067828a9bbad27b5d135fae3a102532e4fe294715dabdb77b11b
Contents?: true
Size: 1.62 KB
Versions: 4
Compression:
Stored size: 1.62 KB
Contents
module Tay module CLI class Root < ::Thor desc 'package', 'Package the current extension' method_option 'tayfile', :type => :string, :banner => 'Use the specified tayfile instead of Tayfile' method_option 'build-directory', :type => :string, :default => 'build', :aliases => '-b', :banner => 'The directory containing the built extension' method_option 'type', :type => 'string', :default => 'zip', :aliases => '-t', :banner => 'The file type to build, zip or crx' def package unless %{zip crx} .include?(options['type']) raise InvalidPackageType.new("Invalid package type '#{options['type']}'") end packager = Packager.new(spec, base_dir, build_dir) if packager.private_key_exists? say("Using private key at #{Utils.relative_path_to(packager.full_key_path)}", :green) else say("Creating private key at #{Utils.relative_path_to(packager.full_key_path)}", :yellow) packager.write_new_key end empty_directory(base_dir.join('tmp')) empty_directory(base_dir.join('pkg')) temp_pkg_path = base_dir.join('tmp', 'package') temp_pkg_path.unlink if temp_pkg_path.exist? packager.send("write_#{options['type']}".to_sym, temp_pkg_path) filename = Utils.filesystem_name(spec.name) + '-' + spec.version + '.' + options['type'] pkg_path = base_dir.join('pkg', filename) copy_file(temp_pkg_path, pkg_path) say("Wrote #{pkg_path.size} bytes to #{Utils.relative_path_to(pkg_path)}", :green) temp_pkg_path.unlink end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
tay-0.0.5 | lib/tay/cli/package.rb |
tay-0.0.4 | lib/tay/cli/package.rb |
tay-0.0.3 | lib/tay/cli/package.rb |
tay-0.0.2 | lib/tay/cli/package.rb |