class GhInspector::Issue

Attributes

body[RW]
comments[RW]
html_url[RW]
number[RW]
state[RW]
title[RW]
updated_at[RW]

Public Class Methods

new(*h) click to toggle source

Hash -> public attributes

# File lib/gh_inspector/sidekick.rb, line 132
def initialize(*h)
  if h.length == 1 && h.first.kind_of?(Hash)
    h.first.each { |k, v| send("#{k}=", v) if public_methods.include?("#{k}=".to_sym) }
  end
end