sumo-search 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 62af7dc96394b1bea0a7bff6a0f92e0b7a8c9ba8
4
- data.tar.gz: e22438c39474302d64d49765e4833c7be5821eec
3
+ metadata.gz: 6c2ca2e55a6f1e001ca804fbb35fa56569b13de3
4
+ data.tar.gz: 1598ea49bf905717c927192898a0fad437df0d44
5
5
  SHA512:
6
- metadata.gz: 8cb8205eb109d953c1764cc293f4134776b882630747ca2e9ef5b46dc326a17c5e89f46ffec02ca36e1ba1d59215e66c57f81fc89ac7b41c99b5865ca10022ab
7
- data.tar.gz: 52ac1a59652216c58d6c873333605589c5621a6e221f6ccb91424fdd62a6614650b7b37873d178c36ccfc6e1fc21990999eee29d8ea5447607b0f5e3b2ad8900
6
+ metadata.gz: 6aa24fc1127346528ddf529f43c4f13c2b39207e992aab58c923f8ff80998bdb5cf38d55d763e5629ae3cf54e5e283919612d5a504c7ee55764cb139d051c334
7
+ data.tar.gz: 49e01a996c9c9995e456d5340e0b006d62dfea39face339dfc5b556c810ba99c0af72254675ca307d2d4f25d9920e96b1cb7d20f696a60f0efd08992df11aeb0
data/lib/sumo/client.rb CHANGED
@@ -69,14 +69,12 @@ class Sumo::Client
69
69
  private :default_headers
70
70
 
71
71
  def encoded_creds
72
- @encoded_creds ||= Base64.encode64(creds).strip
72
+ @encoded_creds ||= Base64.urlsafe_encode64(creds).strip
73
73
  end
74
74
  private :encoded_creds
75
75
 
76
76
  def connection
77
- @connection ||= Excon.new(
78
- 'https://api.sumologic.com'
79
- )
77
+ @connection ||= Excon.new('https://api.sumologic.com')
80
78
  end
81
79
  private :connection
82
80
  end
data/lib/sumo/version.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  module Sumo
3
3
  MAJOR = 1
4
4
  MINOR = 0
5
- PATCH = 2
5
+ PATCH = 3
6
6
  RELEASE = nil
7
7
 
8
8
  VERSION = [MAJOR, MINOR, PATCH, RELEASE].compact.join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sumo-search
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Swipely, Inc.