summaryrefslogtreecommitdiff
path: root/lib/github/labels.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/github/labels.rb')
-rw-r--r--lib/github/labels.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/github/labels.rb b/lib/github/labels.rb
deleted file mode 100644
index 0ea023888b3..00000000000
--- a/lib/github/labels.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-module Github
- class Labels
- attr_reader :owner, :repo
-
- def initialize(owner, repo)
- @owner = owner
- @repo = repo
- end
-
- def fetch
- Collection.new(labels_url).fetch
- end
-
- private
-
- def labels_url
- "/repos/#{owner}/#{repo}/labels"
- end
- end
-end