summaryrefslogtreecommitdiff
path: root/lib/bitbucket/client.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bitbucket/client.rb')
-rw-r--r--lib/bitbucket/client.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bitbucket/client.rb b/lib/bitbucket/client.rb
index 5c2ef2a4509..f8ee7e0f9ae 100644
--- a/lib/bitbucket/client.rb
+++ b/lib/bitbucket/client.rb
@@ -1,5 +1,7 @@
module Bitbucket
class Client
+ attr_reader :connection
+
def initialize(options = {})
@connection = Connection.new(options)
end
@@ -48,8 +50,6 @@ module Bitbucket
private
- attr_reader :connection
-
def get_collection(path, type)
paginator = Paginator.new(connection, path, type)
Collection.new(paginator)