summaryrefslogtreecommitdiff
path: root/lib/bitbucket/representation/base.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bitbucket/representation/base.rb')
-rw-r--r--lib/bitbucket/representation/base.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/bitbucket/representation/base.rb b/lib/bitbucket/representation/base.rb
index 94adaacc9b5..800d5a075c6 100644
--- a/lib/bitbucket/representation/base.rb
+++ b/lib/bitbucket/representation/base.rb
@@ -1,6 +1,8 @@
module Bitbucket
module Representation
class Base
+ attr_reader :raw
+
def initialize(raw)
@raw = raw
end
@@ -8,10 +10,6 @@ module Bitbucket
def self.decorate(entries)
entries.map { |entry| new(entry)}
end
-
- private
-
- attr_reader :raw
end
end
end