Skip to content

Commit

Permalink
add some properties to sifter
Browse files Browse the repository at this point in the history
  • Loading branch information
tyraeltong committed Dec 19, 2012
1 parent b399051 commit d48a3b5
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions lib/sifter.rb
Expand Up @@ -22,29 +22,32 @@ class Issue < Hashie::Dash
property :opener_name property :opener_name
property :url property :url
property :api_url property :api_url

property :created_at
property :updated_at
property :comment_count
property :attachment_count
end end


# Wrapper around a milestone. # Wrapper around a milestone.
class Milestone < Hashie::Dash class Milestone < Hashie::Dash

property :name property :name
property :due_date property :due_date
property :url property :url
property :api_url property :api_url
property :issues_url property :issues_url
property :api_issues_url property :api_issues_url

end end


# Wrapper around a person. # Wrapper around a person.
class Person < Hashie::Dash class Person < Hashie::Dash

property :username property :username
property :first_name property :first_name
property :last_name property :last_name
property :email property :email

end end


end end

0 comments on commit d48a3b5

Please sign in to comment.