no_proxy_fix 0.1.0 → 0.1.1

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: 8c0dc4449d7c7c03d699bbcd65104f86cfadf1bf
4
- data.tar.gz: 9d2d52834f50440a76de641f8758ff85b99f2eb0
3
+ metadata.gz: 283f1bf449e389cbd23c282708c4e9481fc29a05
4
+ data.tar.gz: d472e7852acfdfd5bde80300511ff18033038b43
5
5
  SHA512:
6
- metadata.gz: 95cca4964fe8480a4c8c24d99152914edc473ff188dc443d709b4f56fe519b6f397307946b2ab1b30b12a6b0fb256a5346d82479f466ee63d4e411955b4923c0
7
- data.tar.gz: d94366169343b0197a3b8d6d9b1f178972eb885acce63c8957de58920ac9026a42165fd2c05397476f43c4cdb6c6caf149af50be96c9285b324cb51e47db35a3
6
+ metadata.gz: 184774de7d37d5f1c8e30c0e695efd1b216617e057cebef9a4bc82f8ce5446cc68b0f49b2534adb226f99d2be14a8978ca68ec7f2ede799b6bc4a71b671fa5e2
7
+ data.tar.gz: ed726314e7a5eea07bee0ba58342842eaed5a1b2e9cbdf5bf1ccb065e94c7e46e9987a3b86eb694eb814541458bac1d7ee8db2287cbac039380b689e8a5270b6
data/.travis.yml CHANGED
@@ -7,6 +7,7 @@ rvm:
7
7
  - 2.2
8
8
  - 2.3.1
9
9
  - 2.4.0
10
+ - 2.4.1
10
11
  before_install:
11
12
  - gem update --system
12
13
  - gem install bundler
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [![Dependency Status](https://gemnasium.com/ermaker/no_proxy_fix.svg)](https://gemnasium.com/ermaker/no_proxy_fix)
6
6
 
7
7
 
8
- This fixes https://github.com/ruby/ruby/commit/556e3da4216c926e71dea9ce4ea4a08dcfdc1275 for ruby 2.4.0.
8
+ This fixes https://github.com/ruby/ruby/commit/556e3da4216c926e71dea9ce4ea4a08dcfdc1275 for ruby 2.4.0 and ruby 2.4.1.
9
9
 
10
10
  ## Installation
11
11
 
data/lib/no_proxy_fix.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'no_proxy_fix/version'
2
2
 
3
3
  module NoProxyFix
4
- require 'cext/generic_find_proxy' if RUBY_VERSION.start_with?('2.4.0')
4
+ require 'cext/generic_find_proxy' if RUBY_VERSION =~ /\A2\.4\.[10]/
5
5
  end
@@ -1,3 +1,3 @@
1
1
  module NoProxyFix
2
- VERSION = '0.1.0'.freeze
2
+ VERSION = '0.1.1'.freeze
3
3
  end
data/no_proxy_fix.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ['Minwoo Lee']
10
10
  spec.email = ['ermaker@gmail.com']
11
11
 
12
- spec.summary = 'A fix for a no_proxy bug on ruby 2.4.0'
12
+ spec.summary = 'A fix for a no_proxy bug on ruby 2.4.0 and 2.4.1'
13
13
  spec.description = 'A fix for a no_proxy bug: https://github.com/ruby/ruby/commit/556e3da4216c926e71dea9ce4ea4a08dcfdc1275'
14
14
  spec.homepage = 'https://github.com/ermaker/no_proxy_fix'
15
15
  spec.license = 'MIT'
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.0
4
+ version: 0.1.1
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-02-06 00:00:00.000000000 Z
11
+ date: 2017-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -182,5 +182,5 @@ rubyforge_project:
182
182
  rubygems_version: 2.6.8
183
183
  signing_key:
184
184
  specification_version: 4
185
- summary: A fix for a no_proxy bug on ruby 2.4.0
185
+ summary: A fix for a no_proxy bug on ruby 2.4.0 and 2.4.1
186
186
  test_files: []