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, 0 insertions, 24 deletions
diff --git a/lib/github/user.rb b/lib/github/user.rb
deleted file mode 100644
index f88a29e590b..00000000000
--- a/lib/github/user.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-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