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.



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

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.



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

def options
  @options
end

#parlourObject

Returns the value of attribute parlour.



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

def parlour
  @parlour
end

Class Method Details

.with_clean_env(&block) ⇒ Object



75
76
77
78
79
80
81
82
# File 'lib/sord/parlour_plugin.rb', line 75

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

#generate(root) ⇒ Object



19
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
# File 'lib/sord/parlour_plugin.rb', line 19

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
        system('bundle exec yard')
      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

  Sord::Generator.new(options).run

  true
end