ocean-rails 2.11.5 → 2.11.6

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: 1a8bad0a8e46d2f3570e5f07061b9ebabfd877f6
4
- data.tar.gz: 52025ca7debadedd060faacb86cb89fefd84aa34
3
+ metadata.gz: f58e347b481f9358e53120685469b9d165264544
4
+ data.tar.gz: 0d327d008703fd2a37dc0e71504e0af97b7cee49
5
5
  SHA512:
6
- metadata.gz: a72866c4f7dfae39f8cc9ee1b1c25ed0afc2e94c99b0f688bb36e1b9b34709293c91cd3345eb41e4102f54a13e61d65d7aefa1718e23dc71e5e1207be8e98a34
7
- data.tar.gz: d0b54eeaae9fc520203622c2a92d91e8c2a0960eff231ff8d2fc9694b3a768f5709a44d58eaed262a851b9a1a6e4034136b550726e12f001dbfbb18f3075d831
6
+ metadata.gz: 484f59b7ac5b17c1344acdf6c165ab8a9bab3bab31d80d6eec6d635658c08822900c296e2ec847e29991ff0180ab08854bb5f5fa4a4612a77695abf86d69c3d3
7
+ data.tar.gz: 30201ed7b641c786031d6675ee84eaa56659e33d0c28c5146c072d85f80f42e44698ce7e64d1277cec0bd18d0efe00866e611c33872504896752d03573fbfc02
data/lib/ocean/api.rb CHANGED
@@ -130,9 +130,10 @@ class Api
130
130
  # +headers+, if given, is a hash of extra HTTP headers for the request.
131
131
  # +body+, if given, is the body of the request (:post, :put) as a string.
132
132
  # +x_api_token+, if given, is a string which will be used as an X-API-Token header.
133
+ # +ssl_verifypeer+ (true by default), controls SSL peer verification.
133
134
  #
134
135
  def self.request(url, http_method, args: nil, headers: {}, body: nil,
135
- x_api_token: headers['X-API-Token'])
136
+ x_api_token: headers['X-API-Token'], ssl_verifypeer: true)
136
137
  # Set up the request
137
138
  headers['Accept'] = "application/json"
138
139
  headers['Content-Type'] = "application/json"
@@ -140,8 +141,12 @@ class Api
140
141
  headers['X-API-Token'] = x_api_token if x_api_token
141
142
 
142
143
  while (true) do
143
- request = Typhoeus::Request.new(url, method: http_method, headers: headers,
144
- params: args, body: body)
144
+ request = Typhoeus::Request.new(url,
145
+ method: http_method,
146
+ headers: headers,
147
+ params: args,
148
+ body: body,
149
+ ssl_verifypeer: ssl_verifypeer)
145
150
  # Run it
146
151
  response = Response.new(request.run)
147
152
  # If successful, return
data/lib/ocean/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Ocean
2
- VERSION = "2.11.5"
2
+ VERSION = "2.11.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ocean-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.5
4
+ version: 2.11.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Bengtson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-04 00:00:00.000000000 Z
11
+ date: 2014-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus