Class: Querly::CLI
- Inherits:
-
Thor
- Object
- Thor
- Querly::CLI
- Includes:
- Thor::Actions
- Defined in:
- lib/querly/cli.rb,
lib/querly/cli/test.rb,
lib/querly/cli/rules.rb,
lib/querly/cli/console.rb,
lib/querly/cli/formatter.rb
Defined Under Namespace
Modules: Formatter Classes: Console, Rules, Test
Class Method Summary collapse
Instance Method Summary collapse
- #check(*paths) ⇒ Object
- #console(*paths) ⇒ Object
- #init ⇒ Object
- #rules(*ids) ⇒ Object
- #test ⇒ Object
- #version ⇒ Object
Class Method Details
.source_root ⇒ Object
90 91 92 |
# File 'lib/querly/cli.rb', line 90 def self.source_root File.join(__dir__, "../..") end |
Instance Method Details
#check(*paths) ⇒ Object
11 12 13 14 15 16 17 18 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 |
# File 'lib/querly/cli.rb', line 11 def check(*paths) require 'querly/cli/formatter' formatter = case [:format] when "text" Formatter::Text.new when "json" Formatter::JSON.new end formatter.start begin unless config_path.file? STDERR.puts <<-Message Configuration file #{config_path} does not look a file. Specify configuration file by --config option. Message exit 1 end root_option = [:root] root_path = root_option ? Pathname(root_option).realpath : config_path.parent.realpath config = begin yaml = YAML.load(config_path.read) Config.load(yaml, config_path: config_path, root_dir: root_path, stderr: STDERR) rescue => exn formatter.config_error config_path, exn exit end analyzer = Analyzer.new(config: config, rule: [:rule]) ScriptEnumerator.new(paths: paths.empty? ? [Pathname.pwd] : paths.map {|path| Pathname(path) }, config: config).each do |path, script| case script when Script analyzer.scripts << script formatter.script_load script when StandardError, LoadError formatter.script_error path, script end end analyzer.run do |script, rule, pair| formatter.issue_found script, rule, pair end rescue => exn formatter.fatal_error exn exit 1 ensure formatter.finish end end |
#console(*paths) ⇒ Object
66 67 68 69 |
# File 'lib/querly/cli.rb', line 66 def console(*paths) require 'querly/cli/console' Console.new(paths: paths.empty? ? [Pathname.pwd] : paths.map {|path| Pathname(path) }).start end |
#init ⇒ Object
97 98 99 |
# File 'lib/querly/cli.rb', line 97 def init() copy_file("template.yml", "querly.yml") end |
#rules(*ids) ⇒ Object
80 81 82 83 |
# File 'lib/querly/cli.rb', line 80 def rules(*ids) require "querly/cli/rules" Rules.new(config_path: config_path, ids: ids).run end |
#test ⇒ Object
73 74 75 76 |
# File 'lib/querly/cli.rb', line 73 def test() require "querly/cli/test" exit Test.new(config_path: config_path).run end |
#version ⇒ Object
86 87 88 |
# File 'lib/querly/cli.rb', line 86 def version puts "Querly #{VERSION}" end |