no_proxy_fix 0.1.1 → 0.1.2

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: 283f1bf449e389cbd23c282708c4e9481fc29a05
4
- data.tar.gz: d472e7852acfdfd5bde80300511ff18033038b43
3
+ metadata.gz: e4f2266dba65370b6cfe11fc2257d228d5f20146
4
+ data.tar.gz: 8a2a9d0138387ce7acae3576c37749b369f7605a
5
5
  SHA512:
6
- metadata.gz: 184774de7d37d5f1c8e30c0e695efd1b216617e057cebef9a4bc82f8ce5446cc68b0f49b2534adb226f99d2be14a8978ca68ec7f2ede799b6bc4a71b671fa5e2
7
- data.tar.gz: ed726314e7a5eea07bee0ba58342842eaed5a1b2e9cbdf5bf1ccb065e94c7e46e9987a3b86eb694eb814541458bac1d7ee8db2287cbac039380b689e8a5270b6
6
+ metadata.gz: 179ca0ed48efa71eb1a3010222b0fa0c26cde40f0d00d9867a67837f2956eec4712f1d2770aff3300dfdd5842162f9aafb6e52a4be4feb88fd88cf82aed0464b
7
+ data.tar.gz: 562adda3bbf238a1edd8f5f42fd26c6549c56dbf0e3b7cc0d0e872db8a7c20669725ff1fa6875dd188a3293dfecaf12e00021bb857006b7d1a759010c770f7a6
@@ -1,6 +1,7 @@
1
1
  inherit_from: .rubocop_todo.yml
2
2
 
3
3
  AllCops:
4
+ TargetRubyVersion: '2.0'
4
5
  Exclude:
5
6
  - 'lib/cext/generic_find_proxy.rb'
6
7
 
@@ -1,13 +1,13 @@
1
1
  sudo: false
2
2
  language: ruby
3
3
  rvm:
4
- - 2
5
- - 2.0
6
- - 2.1
7
- - 2.2
8
- - 2.3.1
9
- - 2.4.0
10
- - 2.4.1
4
+ - '2'
5
+ - '2.0'
6
+ - '2.1'
7
+ - '2.2'
8
+ - '2.3.1'
9
+ - '2.4.0'
10
+ - '2.4.1'
11
11
  before_install:
12
12
  - gem update --system
13
13
  - gem install bundler
@@ -20,6 +20,8 @@ module URI
20
20
  # Implements generic URI syntax as per RFC 2396.
21
21
  #
22
22
  class Generic
23
+ undef find_proxy
24
+
23
25
  # returns a proxy URI.
24
26
  # The proxy URI is obtained from environment variables such as http_proxy,
25
27
  # ftp_proxy, no_proxy, etc.
@@ -1,3 +1,3 @@
1
1
  module NoProxyFix
2
- VERSION = '0.1.1'.freeze
2
+ VERSION = '0.1.2'.freeze
3
3
  end
@@ -1,4 +1,4 @@
1
- # coding: utf-8
1
+
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'no_proxy_fix/version'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: no_proxy_fix
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
  - Minwoo Lee
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-04-06 00:00:00.000000000 Z
11
+ date: 2017-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -179,7 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
179
179
  version: '0'
180
180
  requirements: []
181
181
  rubyforge_project:
182
- rubygems_version: 2.6.8
182
+ rubygems_version: 2.6.11
183
183
  signing_key:
184
184
  specification_version: 4
185
185
  summary: A fix for a no_proxy bug on ruby 2.4.0 and 2.4.1