Sha256: ddd4b3fb38f27e09e9c94f4a6cc0c50a73977a41aad8cb138bfb0102061b905f

Contents?: true

Size: 1.16 KB

Versions: 1

Compression:

Stored size: 1.16 KB

Contents

#!/usr/bin/env ruby
require 'optparse'
require 'pumper'
options = Hash.new

opts = OptionParser.new do |opts|
  opts.banner = %q[Pumper]

  opts.on('-p', '--project PROJECT_PATH', 'Path to ruby project where need update current gem') do |project|
    options[:project] = project
  end

  opts.on('-a', '--absolute_path', 'If project path is absolute') do
    options[:is_absolute_path] = true
  end

  opts.on('-g', '--gemset GEMSET', "Gemset's name (if you use rvm)") do |gemset|
    options[:gemset] = gemset
  end

  opts.on('-e', '--vendor', "If project's gems stored in the vendor/cache") do
    options[:is_vendor] = true
  end

  opts.on('-c', '--config', 'If you use .pumper.yml config') do
    options[:config] = true
  end

  opts.on('-l', '--list projectN[,projectN+1]', Array, 'List of projects (use with --config)') do |list|
    options[:list] = list
  end

  opts.on_tail('-h', '--help', 'Show this message') do
    puts opts
    exit
  end

  opts.on_tail('--version', 'Show version') do
    puts Pumper::VERSION
    exit
  end
end

opts.parse!
config_options = Pumper::Configuration.configure!(options)

config_options.each { |options| Pumper::Pump.new(options).perform }

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pumper-1.3.0 bin/pumper