octopi 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 4
4
- :patch: 1
4
+ :patch: 2
5
5
  :build:
@@ -1,6 +1,6 @@
1
1
  module Octopi
2
2
  class IssueComment < Base
3
3
  include Resource
4
- attr_accessor :body, :user
4
+ attr_accessor :body, :user, :gravatar_id, :created_at, :updated_at, :id
5
5
  end
6
6
  end
data/octopi.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{octopi}
8
- s.version = "0.4.1"
8
+ s.version = "0.4.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Felipe Coury"]
data/test/issue_test.rb CHANGED
@@ -127,6 +127,9 @@ class IssueTest < Test::Unit::TestCase
127
127
  assert first_comment.is_a?(IssueComment)
128
128
  assert_equal "This is fixed in recent release.", first_comment.body
129
129
  assert_equal "radar", first_comment.user
130
+ assert !first_comment.created_at.blank?
131
+ assert !first_comment.updated_at.blank?
132
+ assert !first_comment.gravatar_id.blank?
130
133
  end
131
134
  end
132
135
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: octopi
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.4.1
5
+ version: 0.4.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Felipe Coury