Ruby: 在另一个方法的条件语句中调用方法

Ruby: calling method within another method's conditional statement

我正在尝试在另一个名为 list_trends[ 的方法中包含的条件语句中调用方法 print_json =19=]。我这样做是因为我的代码开始看起来太嵌套了。但是,当我 运行 时出现错误:

syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
...i_key]) ? print_trends : puts "Invalid API Key, operation ab...

这是我的代码:

#!/usr/bin/ruby

require 'thor'
require 'json'

class ListTrends < Thor
  desc "list trends", "list out trends from JSON file"

  option :api_key, :aliases => "--api-key", :type => :string, :required => true

  def print_json
    json = File.read('trends_available.json')
    trends_hash = JSON.parse(json)

    trends_hash.each do |key|
      key.each do |k,v|
        puts "Trend #{k}: #{v}"
      end
      puts ""
    end
  end

  def list_trends
    re = /^(?=.*[a-zA-Z])(?=.*[0-9]).{8,}$/
    if options[:api_key]
      if re.match(options[:api_key]) ? print_json : puts "Invalid API Key, operation abort..."
    end
  end
end

ListTrends.start(ARGV)

这个

if options[:api_key]
  if re.match(options[:api_key]) ? print_json : puts "Invalid API Key, operation abort..."
end

应该就是

if options[:api_key]
  re.match(options[:api_key]) ? print_json : puts "Invalid API Key, operation abort..."
end

虽然我更喜欢:

if options[:api_key]
  if re.match(options[:api_key]) 
    print_json
  else
    puts "Invalid API Key, operation abort..."
  end
end

或者如果您必须将其放在一行中:

if options[:api_key]
  if re.match(options[:api_key]) then print_json else puts "Invalid API Key, operation abort..." end
end