Sha256: 3d3411ecb71a7e6274610ba7af508b36a80ec5b03f179cc63aee99acb211d023
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true require 'thor' module BundledGem class Cli < Thor desc "install [BUNDLED_GEM]", "install [BUNDLED_GEM] from `Gemfile.lock`" option "lockfile", type: :string, default: LOCKFILE, desc: "Use the specified gemfile.lock instead of Gemfile.lock" def install(bundled_gem) reader = LockfileReader.new(lockfile: options[:lockfile]) if reader.gem_listed?(bundled_gem) version = reader.get_version(bundled_gem) system "gem install #{bundled_gem} --version #{version}" else abort "`#{bundled_gem}` is not listed in Gemfile.lock." end end desc "list", "bundle list without `bundle install`" option "lockfile", type: :string, default: LOCKFILE, desc: "Use the specified gemfile.lock instead of Gemfile.lock" def list puts "Gems included in `#{options[:lockfile]}`:" LockfileReader.new(lockfile: options[:lockfile]).lockfile_specs.each do |s| puts " * #{s.name}, #{s.version}" end end desc "version", "bundled_gems version" def version puts ::BundledGem::VERSION end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bundled_gems-0.0.5 | lib/bundled_gem/cli.rb |