Sha256: c7673dd9a0bde5c1e12768af7db66db142272ed1af81a344e96b15e1f66b7c4a
Contents?: true
Size: 546 Bytes
Versions: 9
Compression:
Stored size: 546 Bytes
Contents
require 'pra/config' module Pra class PullRequest attr_accessor :title, :from_reference, :to_reference, :author, :assignee, :link, :service_id, :repository def initialize(attributes={}) @title = attributes[:title] @from_reference = attributes[:from_reference] @to_reference = attributes[:to_reference] @author = attributes[:author] @assignee = attributes[:assignee] @link = attributes[:link] @service_id = attributes[:service_id] @repository = attributes[:repository] end end end
Version data entries
9 entries across 9 versions & 1 rubygems