summaryrefslogtreecommitdiff
path: root/lib/github/user.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/github/user.rb')
-rw-r--r--lib/github/user.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/github/user.rb b/lib/github/user.rb
new file mode 100644
index 00000000000..f88a29e590b
--- /dev/null
+++ b/lib/github/user.rb
@@ -0,0 +1,24 @@
+module Github
+ class User
+ attr_reader :username, :options
+
+ def initialize(username, options)
+ @username = username
+ @options = options
+ end
+
+ def get
+ client.get(user_url).body
+ end
+
+ private
+
+ def client
+ @client ||= Github::Client.new(options)
+ end
+
+ def user_url
+ "/users/#{username}"
+ end
+ end
+end