module Mecha

Constants

RAILS_VERSION
RUBY_VERSION
VERSION

Public Class Methods

opts() click to toggle source
# File lib/mecha.rb, line 21
def self.opts
  Slop.parse do |o|
    o.bool '--webpack', 'pass the webpack option for rails'
    o.bool '--bitbucket-pipelines', 'config Bitbucket Pipelines'
    o.bool '--circleci', 'config CircleCI'
    o.bool '--cpf_cnpj', 'install and config CPF/CNPJ'
    o.bool '--danger', 'install and config Danger'
    o.bool '--devise', 'install and config Devise'
    o.bool '--pronto', 'install and config Pronto'
    o.bool '--rspec', 'install and config RSpec'
    o.bool '--sentry', 'install and config Sentry'
    o.bool '--simplecov', 'install and config Simplecov'
    o.on '--version', 'print the gem version' do
      puts Mecha::VERSION
      exit
    end
    o.on '--help', 'list options' do
      puts o
      exit
    end
  end
end
start() click to toggle source
# File lib/mecha.rb, line 44
def self.start
  arguments = []
  arguments << ARGV.first
  arguments << '--simplecov' if Mecha.opts.simplecov?
  arguments << '--rspec' if Mecha.opts.rspec?
  arguments << '--pronto' if Mecha.opts.pronto?
  arguments << '--danger' if Mecha.opts.danger?

  Mecha::Generators::AppGenerator.start
  Mecha::Generators::AssetsGenerator.start
  Mecha::Generators::GithubGenerator.start
  Mecha::Generators::GuardGenerator.start
  Mecha::Generators::RubocopGenerator.start
  Mecha::Generators::I18nGenerator.start
  Mecha::Generators::TestsGenerator.start(arguments)
  Mecha::Generators::SimplecovGenerator.start if Mecha.opts.simplecov?
  Mecha::Generators::BitbucketPipelinesGenerator.start if Mecha.opts.bitbucket_pipelines?
  Mecha::Generators::DeviseGenerator.start if Mecha.opts.devise?
  Mecha::Generators::SentryGenerator.start if Mecha.opts.sentry?
  Mecha::Generators::CpfCnpjGenerator.start if Mecha.opts.cpf_cnpj?
  Mecha::Generators::DangerGenerator.start(arguments) if Mecha.opts.danger?
  Mecha::Generators::ProntoGenerator.start(arguments) if Mecha.opts.pronto?
  Mecha::Generators::CircleciGenerator.start(arguments) if Mecha.opts.circleci?
end