sumo-search 2.0.2 → 2.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: 8d9076840ea716f6b4c15687d12300c5d484b975
4
- data.tar.gz: d6e883050a57e5f1d026bb8080746442b6d16b71
3
+ metadata.gz: 27b7af6b07a96c23c0583a4dea06fcfb5bf118d2
4
+ data.tar.gz: 9e5b066988e0bd14f73fb82b261ca7930a92a2e8
5
5
  SHA512:
6
- metadata.gz: 8320042419cabc9fb813c4abb57c486128f9f49eaca6892169ea747fa501fc84a332fac39d676d8f366450af8df90a3ee1058cf547b318f04670ec124d19820e
7
- data.tar.gz: 090ab6fb6f9c8420cb37e41034f946128126891dbae763eefbed1b4827e94302c2d1167e0eb302c82fc70b9f6e6a2fdc30ff462cfb5894ded72f87d5e2646f09
6
+ metadata.gz: 16a15d1e68e1ac6601bc7bd8471092bee2c744c9ffcb32c63b17e942162cad3cd6828d665d10b69ffa0b991153e9b43319b4bdd1f8a7307d23b714291c3156f2
7
+ data.tar.gz: 05fb4b9cd0ffcf642160fcdcbef91c55d88ebd7714a8b260d80c9f01b044e9e21da449fc1addb27053474798872fe7c0ef33ab0a992803170078042da91e64b6
data/.travis.yml CHANGED
@@ -1,6 +1,5 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 1.9.2
4
3
  - 1.9.3
5
4
  - 2.0.0
6
5
  - 2.1.0
data/lib/sumo/client.rb CHANGED
@@ -70,7 +70,7 @@ class Sumo::Client
70
70
  private :default_headers
71
71
 
72
72
  def encoded_creds
73
- @encoded_creds ||= Base64.urlsafe_encode64(creds).strip
73
+ @encoded_creds ||= Base64.encode64(creds).gsub(/\s+/, '')
74
74
  end
75
75
  private :encoded_creds
76
76
 
data/lib/sumo/version.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  module Sumo
3
3
  MAJOR = 2
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('.')
data/sumo-search.gemspec CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |gem|
6
6
  gem.email = %w{tomhulihan@swipely.com}
7
7
  gem.description = %q{A simple REST client for the Sumo Search Job API}
8
8
  gem.summary = %q{A simple REST client for the Sumo Search Job API}
9
- gem.homepage = 'https://github.com/swipely/sumo-job'
9
+ gem.homepage = 'https://github.com/swipely/sumo'
10
10
  gem.license = 'MIT'
11
11
  gem.files = `git ls-files`.split($\)
12
12
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sumo-search
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Swipely, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-08 00:00:00.000000000 Z
11
+ date: 2015-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: excon
@@ -176,7 +176,7 @@ files:
176
176
  - spec/vcr/Sumo_Search/_records/returns_an_Enumerator_of_each_record_in_the_search.yml
177
177
  - spec/vcr/Sumo_Search/_status/returns_the_status_of_the_search.yml
178
178
  - sumo-search.gemspec
179
- homepage: https://github.com/swipely/sumo-job
179
+ homepage: https://github.com/swipely/sumo
180
180
  licenses:
181
181
  - MIT
182
182
  metadata: {}
@@ -196,7 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
196
196
  version: '0'
197
197
  requirements: []
198
198
  rubyforge_project:
199
- rubygems_version: 2.2.2
199
+ rubygems_version: 2.4.5
200
200
  signing_key:
201
201
  specification_version: 4
202
202
  summary: A simple REST client for the Sumo Search Job API
@@ -216,3 +216,4 @@ test_files:
216
216
  - spec/vcr/Sumo_Search/_messages/returns_an_Enumerator_of_each_message_in_the_search.yml
217
217
  - spec/vcr/Sumo_Search/_records/returns_an_Enumerator_of_each_record_in_the_search.yml
218
218
  - spec/vcr/Sumo_Search/_status/returns_the_status_of_the_search.yml
219
+ has_rdoc: