Sha256: a25a515b242228711241031e4ba711caf66e304c7ae07c05898f8ba854b52e7f

Contents?: true

Size: 1.12 KB

Versions: 2

Compression:

Stored size: 1.12 KB

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

require 'optparse'
require 'massa'

$LOAD_PATH.push File.expand_path('../../lib', __FILE__)

options = {}

OptionParser.new do |opts|
  opts.banner = 'Usage: massa [options]'

  opts.on('-g', '--generate-config', 'Generate config file') do
    template    = File.expand_path('../../lib/massa/templates/massa.yml', __FILE__)
    config_file = 'config/massa.yml'

    FileUtils.cp(template, "#{Dir.pwd}/config_file")
    Massa::CLI.colorize :default, 'File generated: ', :green, "#{config_file}\n"
    exit
  end

  opts.on('-h', '--help', 'Display this help') do
    puts opts
    puts
    puts 'You can read the official documentation here:'
    puts 'https://github.com/lucascaton/massa#massa'
    puts
    exit
  end

  opts.on('-v', '--version', 'Display version') do
    require 'massa/version'
    puts Massa::VERSION
    exit
  end

  opts.on('-V', '--verbose', 'Run verbosely') do |v|
    options[:verbose] = v
  end
end.parse!

begin
  Massa::Analyzier.run!(options)
rescue Gem::LoadError
  Massa::CLI.colorize :red, "¯\\_(ツ)_/¯ 'massa' gem is not in your Gemfile."
  exit 1
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
massa-0.1.4 bin/massa
massa-0.1.3 bin/massa