summaryrefslogtreecommitdiff
path: root/lib/github/representation/base.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/github/representation/base.rb')
-rw-r--r--lib/github/representation/base.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/github/representation/base.rb b/lib/github/representation/base.rb
deleted file mode 100644
index f26bdbdd546..00000000000
--- a/lib/github/representation/base.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-module Github
- module Representation
- class Base
- def initialize(raw, options = {})
- @raw = raw
- @options = options
- end
-
- def id
- raw['id']
- end
-
- def url
- raw['url']
- end
-
- def created_at
- raw['created_at']
- end
-
- def updated_at
- raw['updated_at']
- end
-
- private
-
- attr_reader :raw, :options
- end
- end
-end