integration-diff 0.0.1 → 0.0.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: 1a238c08a8c42c20475b99d034b2560c1d97fdf8
4
- data.tar.gz: 5e49985f73ffc19895cb45de6088716e7917547b
3
+ metadata.gz: 02c429447679f324211bb8fc6dd8f6b0ededa462
4
+ data.tar.gz: fa9acec0cc1f55ad7e5b258f9453dc9be7c7cb71
5
5
  SHA512:
6
- metadata.gz: 8f558f62dc340c5d0cc9b5d12b0aacac6a8733f9607c8040d27e11e77e3bff44c1ca59b127d701dc0f3f4059401dbc11db6ae82e7fa397b30eb180282d134142
7
- data.tar.gz: 42f96558e1982174434c2a15dbee7af0cd00b082d2e69866f3091b404669581fe1026010d00e29bee2d571ed904455fb292c49370ef63b815dc526c0fe3c077a
6
+ metadata.gz: 661bed2fff8991b58d100142a892fb43ce917acf08d5f195e0170cc6f223551f4caccde8cac0c57d693539a1c990608fb1b354dcc8ad4428e95aa198b11fe588
7
+ data.tar.gz: 8b13946dc473347a79d3af43a46e86a17beedee68279cd48886fa5b447adb4484eaeff7944eaa8f2b4512f0ed9862333d3df7f1a71dc8c481c058f8e766c3d37
data/Readme.md CHANGED
@@ -5,7 +5,7 @@ Currently this supports only RSpec.
5
5
  ### Installation
6
6
 
7
7
  ```rb
8
- gem "integration-diff-rails", git: "git@github.com:code-mancers/integration-diff-rails"
8
+ gem 'integration-diff'
9
9
  ```
10
10
 
11
11
  ### Configuration
@@ -80,7 +80,7 @@ module IntegrationDiff
80
80
  end
81
81
 
82
82
  def connection
83
- @conn ||= Faraday.new(@base_uri) do |f|
83
+ @conn ||= Faraday.new(@base_uri, request: { timeout: 120, open_timeout: 120 }) do |f|
84
84
  f.request :basic_auth, IntegrationDiff.api_key, 'X'
85
85
  f.request :multipart
86
86
  f.request :url_encoded
@@ -1,3 +1,3 @@
1
1
  module IntegrationDiff
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: integration-diff
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuva
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-03 00:00:00.000000000 Z
11
+ date: 2016-02-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday