hubba 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 994797c48a03ee5124ff6944fcfd739e9e4134e9
4
- data.tar.gz: 1b4b3c91652f82ff471129047feb39dc14bdb1cd
3
+ metadata.gz: 4a82adab1dd587bb3d9604b7ca60737747fe22f9
4
+ data.tar.gz: 637d4e8a7714b3a6868e070cd064ed7a9f27d233
5
5
  SHA512:
6
- metadata.gz: 98716f3b302d8a86c77c1c6dd9b6ea29e6bd9f9106d8f63197e5960f30ff78006fd92ff3114a7c60af9ff1517999af5279934165f0173c4773192db3e167e15b
7
- data.tar.gz: 2171a770f43ce878fea802d1bb2dc0345ea4aa3e0f4efaf0dda086668ad285d7117068a89944951d1820ae0309c8b3743a4322a865c1f4edaf4dd450ce8b20f0
6
+ metadata.gz: 2cef2397c74486671a6ac559e5ebe89dfe7d98efefe025c5f68694cbaa8809de279efe6bbc3aa7388426b01c198aea81214147a1f3d568ac8652d730a041e75f
7
+ data.tar.gz: d5b460db26d282e941292bc7c1d030a7ee9b3d98502a39f12f659517a744f55913c85f7dc5b093d9494e7124ff7ba0ba17e9406805ccfab0a8ec82c55dc9be33
@@ -28,7 +28,7 @@ def get( request_uri )
28
28
  ## check if credentials (user/password) present - if yes, use basic auth
29
29
  if @user && @password
30
30
  puts " using basic auth - user: #{@user}, password: ***"
31
- req.basic_auth( @user && @password )
31
+ req.basic_auth( @user, @password )
32
32
  end
33
33
 
34
34
  res = @http.request(req)
@@ -3,7 +3,7 @@
3
3
  module Hubba
4
4
  MAJOR = 0 ## todo: namespace inside version or something - why? why not??
5
5
  MINOR = 1
6
- PATCH = 1
6
+ PATCH = 2
7
7
  VERSION = [MAJOR,MINOR,PATCH].join('.')
8
8
 
9
9
  def self.version
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hubba
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gerald Bauer