Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bitbucket/representation/base.rb')
-rw-r--r--lib/bitbucket/representation/base.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/bitbucket/representation/base.rb b/lib/bitbucket/representation/base.rb
new file mode 100644
index 00000000000..7b639492d38
--- /dev/null
+++ b/lib/bitbucket/representation/base.rb
@@ -0,0 +1,13 @@
+module Bitbucket
+ module Representation
+ class Base
+ def initialize(raw)
+ @raw = raw
+ end
+
+ private
+
+ attr_reader :raw
+ end
+ end
+end