Class: Danger::DangerfileGem

Inherits:
DangerfileCommand show all
Defined in:
lib/danger/commands/dangerfile/gem.rb

Instance Attribute Summary

Attributes inherited from Runner

#cork

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DangerfileCommand

options

Methods inherited from Runner

options

Constructor Details

#initialize(argv) ⇒ DangerfileGem

Returns a new instance of DangerfileGem.



18
19
20
21
22
23
24
25
26
# File 'lib/danger/commands/dangerfile/gem.rb', line 18

def initialize(argv)
  @name = argv.shift_argument
  prefix = "dangerfile" + "-"
  unless @name.nil? || @name.empty? || @name.start_with?(prefix)
    @name = prefix + @name.dup
  end
  @template_url = argv.shift_argument
  super
end

Class Method Details

.descriptionObject



7
8
9
10
11
12
# File 'lib/danger/commands/dangerfile/gem.rb', line 7

def self.description
  <<-DESC
            Creates a scaffold for the development of a new gem based Dangerfile
            named `NAME` according to the best practices.
  DESC
end

Instance Method Details

#runObject



37
38
39
40
41
# File 'lib/danger/commands/dangerfile/gem.rb', line 37

def run
  runner = CLAide::TemplateRunner.new(@name, "https://github.com/danger/dangerfile-gem-template")
  runner.clone_template
  runner.configure_template
end

#validate!Object



28
29
30
31
32
33
34
35
# File 'lib/danger/commands/dangerfile/gem.rb', line 28

def validate!
  super
  if @name.nil? || @name.empty?
    help! "A name for the plugin is required."
  end

  help! "The plugin name cannot contain spaces." if @name =~ /\s/
end