ruby_http_client 2.1.3 → 2.1.4
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 +4 -4
- data/.travis.yml +1 -1
- data/CHANGELOG.md +5 -0
- data/ruby_http_client.gemspec +2 -3
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ab660cfe58b3b8c9201b87eab7a536e352f9bf7c
|
|
4
|
+
data.tar.gz: 043f0f3769d908282515dc4ad98b9ad36d931362
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e56122ab1cc1badbb6cce7a42fa0220ffa7eac25e4c28193027fc2734135a57b3aeaf701e420c49a735ee48d0ebbb25b3892e94f8eb72dec0df42ff7772deec
|
|
7
|
+
data.tar.gz: a703f292747205a7cea06e0dc44ed5d115bd1b7fb8869f8b0358e312feb29ddfe0a07b6ff69644376ec21f3203c2dab6a313429602c0ca31fb11eaaa2a0e98f8
|
data/.travis.yml
CHANGED
|
@@ -4,7 +4,7 @@ rvm:
|
|
|
4
4
|
notifications:
|
|
5
5
|
hipchat:
|
|
6
6
|
rooms:
|
|
7
|
-
secure:
|
|
7
|
+
secure: S0K355wxCRxwK2cOmbcVOaQitRtIEIq0OEEW7JZp8XtooupGwpmJSm22gqeo7GR6eidqlV8Tp6SUffpLE6SvS0hed3LDbJw7oWoXA7XvRp7gh/AKvLZ0e2uz/a1WPSYy0gNS3TJ72PcyoMS6rPCKR0FyDu8mQ2sW8CpZG07NDCmJPgO+dKfnpeuEmElZoh0AZxE6u1RjvUdSzxnmCVjve621ghtMaKInd0fnNPOM6tm9L0HKSbaLI/buphYhQ/DLpO+dLvt7W2yN+9BwaGqPv7X04Sn0UVAu9+EjSouLLBVNRIsdUfgRGeooStm8/Iw0c1brY4goyYJxGs0TiPkfPeWJcNmQ68YSZLDhUGoMZWCZwGq0Lm/oThJX8K777r3qt0Td4iAXNG+bVN+1KZtZRra6B/qBKBcpTTs1p4WRfIUY9D6udwyWZMcGEOFecsyt/MRlkjdmu+zSvZsadvhvQCL+m+aUmTtlUbswXu46g5NxQrHS9UKzzPkk/3mUrO1r4HLhhuuNtn3LRMbx9WVMdidMiFaAxG99VFC0Gon//FMvpTShNrRRuNSW7EJ0V8gwpx69SticfxC88pfka/MEeY9KoZc3MJdILbpgLK5oPuFMih2F/emJP1muWnk8mjaEHqHPqnSuKRr4oqO1xbh+r2ggKW58akCe08a4TihD4rg=
|
|
8
8
|
template:
|
|
9
9
|
- '<a href="https://travis-ci.org/%{repository}/builds/%{build_id}">%{repository}
|
|
10
10
|
Build %{build_number}</a> on branch <i>%{branch}</i> by %{author}: <strong>%{message}</strong>
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
|
|
|
3
3
|
|
|
4
4
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
5
5
|
|
|
6
|
+
## [2.1.4] - 2016-07-12
|
|
7
|
+
### Fix
|
|
8
|
+
- [Pull Request #2](https://github.com/sendgrid/ruby-http-client/pull/2), thanks [Billy Watson](https://github.com/billywatson)!
|
|
9
|
+
- Remove Rubygems version: http://guides.rubygems.org/specification-reference/#rubygems_version
|
|
10
|
+
|
|
6
11
|
## [2.1.3] - 2016-06-14
|
|
7
12
|
### Fix
|
|
8
13
|
- Logic error
|
data/ruby_http_client.gemspec
CHANGED
|
@@ -4,18 +4,17 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = 'ruby_http_client'
|
|
7
|
-
spec.version = '2.1.
|
|
7
|
+
spec.version = '2.1.4'
|
|
8
8
|
spec.authors = ['Elmer Thomas']
|
|
9
9
|
spec.email = 'dx@sendgrid.com'
|
|
10
10
|
spec.summary = 'A simple REST client'
|
|
11
11
|
spec.description = 'Quickly and easily access any REST or REST-like API.'
|
|
12
12
|
spec.homepage = 'http://github.com/sendgrid/ruby-http-client'
|
|
13
13
|
spec.license = 'MIT'
|
|
14
|
-
spec.required_ruby_version = '>= 2.2'
|
|
15
14
|
spec.files = `git ls-files -z`.split("\x0")
|
|
16
15
|
spec.executables = spec.files.grep(/^bin/) { |f| File.basename(f) }
|
|
17
16
|
spec.test_files = spec.files.grep(/^(test|spec|features)/)
|
|
18
17
|
spec.require_paths = ['lib']
|
|
19
18
|
|
|
20
19
|
spec.add_development_dependency 'rake', '~> 0'
|
|
21
|
-
end
|
|
20
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby_http_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elmer Thomas
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-07-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -54,7 +54,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
54
54
|
requirements:
|
|
55
55
|
- - ">="
|
|
56
56
|
- !ruby/object:Gem::Version
|
|
57
|
-
version: '
|
|
57
|
+
version: '0'
|
|
58
58
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
59
59
|
requirements:
|
|
60
60
|
- - ">="
|