1

Thor を拡張するクラスFindXYZで HTTParty を使用しようとしていますが、機能していません。私がしたいのは、メソッドxyzで HTTParty getを使用して couchdb をクエリすることだけです

実行しようとすると、取得できないというエラーが表示されます

require 'json'
require 'httparty'
require 'thor'

class FindXyz < Thor
  include Thor::Actions

  include HTTParty
    headers 'Accept' => 'application/json'
    server = '192.168.5.50:5984'
    user = 'uname'
    password = 'passo'

    couchdb_url = "http://#{user}:#{password}@#{server}"
    basic_auth user, password
    base_uri couchdb_url
    default_params :output => 'json'
    format :json

    desc "xyz", "Find scenarios that contains SSL"
    method_option :name, :aliases => "-t", :required => true
    method_option :location, :aliases => "-s",:required => true

    def xyz
      name = options[:name]
      loc = options[:location]
      file_path = File.join(loc, name)

      t_json = JSON.parse(File.read(file_path))

     t_json["ids"].each do |temp|
       path_to_doc = "/test123/#{temp}"
       response = get(path_to_doc)
       puts "Found => #{temp}" if response.to_s.include?('Birdy')
    end #close the loop
  end #close the method xyz
end #close class
4

1 に答える 1

1

クラスの外からこのようにしてみてください

puts FindXyz.get('....').inspect

そしてHTTParty.get(...)FinXyzクラス内

于 2012-05-30T03:22:15.243 に答える