Class: Sord::ParlourPlugin

Inherits:
Parlour::Plugin
  • Object
show all
Defined in:
lib/sord/parlour_plugin.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ ParlourPlugin

Returns a new instance of ParlourPlugin.



10
11
12
13
14
15
16
17
18
# File 'lib/sord/parlour_plugin.rb', line 10

def initialize(options)
  @parlour = nil
  @options = options

  options[:sord_comments] = true if options[:sord_comments].nil?
  options[:regenerate] = true if options[:regenerate].nil?
  options[:replace_errors_with_untyped] ||= false
  options[:replace_unresolved_with_untyped] ||= false
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



7
8
9
# File 'lib/sord/parlour_plugin.rb', line 7

def options
  @options
end

#parlourObject

Returns the value of attribute parlour.



8
9
10
# File 'lib/sord/parlour_plugin.rb', line 8

def parlour
  @parlour
end

Class Method Details

.with_clean_env(&block) ⇒ Object



91
92
93
94
95
96
97
98
# File 'lib/sord/parlour_plugin.rb', line 91

def self.with_clean_env &block
  meth = if Bundler.respond_to?(:with_unbundled_env)
           :with_unbundled_env
         else
           :with_clean_env
        end
  Bundler.send meth, &block
end

Instance Method Details

#add_custom_tagsObject



82
83
84
85
86
87
88
89
# File 'lib/sord/parlour_plugin.rb', line 82

def add_custom_tags
  return if options[:tags].empty?

  options[:tags].each do |tag|
    name, description = tag.split(':')
    YARD::Tags::Library.define_tag(description, name)
  end
end

#generate(root) ⇒ Object



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/sord/parlour_plugin.rb', line 20

def generate(root)
  if options[:include_messages] && options[:exclude_messages]
    Sord::Logging.error('Please specify only one of --include-messages and --exclude-messages.')
    return false
  elsif options[:include_messages]
    whitelist = options[:include_messages].map { |x| x.downcase.to_sym }
    unless Sord::Logging.valid_types?(whitelist)
      Sord::Logging.error('Not all types on your --include-messages list are valid.')
      Sord::Logging.error("Valid options are: #{Sord::Logging::AVAILABLE_TYPES.map(&:to_s).join(', ')}")
      return false
    end
    Sord::Logging.enabled_types = whitelist | [:done]
  elsif options[:exclude_messages]
    blacklist = options[:exclude_messages].map { |x| x.downcase.to_sym }
    unless Sord::Logging.valid_types?(blacklist)
      Sord::Logging.error('Not all types on your --include-messages list are valid.')
      Sord::Logging.error("Valid options are: #{Sord::Logging::AVAILABLE_TYPES.map(&:to_s).join(', ')}")
      return false
    end
    Sord::Logging.enabled_types = Sord::Logging::AVAILABLE_TYPES - blacklist
  end

  if !(options[:rbi] || options[:rbs])
    Sord::Logging.error('No output format given; please specify --rbi or --rbs')
    exit 1
  end

  if (options[:rbi] && options[:rbs])
    Sord::Logging.error('You cannot specify both --rbi and --rbs; please use only one')
    exit 1
  end

  if options[:regenerate]
    begin
      Sord::Logging.info('Running YARD...')
      Sord::ParlourPlugin.with_clean_env do
        tag_param = ''
        options[:tags]&.each do |tag|
          tag_param += "--tag #{tag} "
        end
        system("bundle exec yard #{tag_param} --no-output")
      end
    rescue Errno::ENOENT
      Sord::Logging.error('The YARD tool could not be found on your PATH.')
      Sord::Logging.error('You may need to run \'gem install yard\'.')
      Sord::Logging.error('If documentation has already been generated, pass --no-regenerate to Sord.')
      return false
    end
  end

  options[:mode] = \
    if options[:rbi] then :rbi elsif options[:rbs] then :rbs end
  options[:parlour] = @parlour
  options[:root] = root

  add_custom_tags

  Sord::Generator.new(options).run

  true
end