espresso_path 0.1.2 → 0.1.3
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/CHANGELOG.md +5 -1
- data/README.md +4 -1
- data/espresso_path.gemspec +1 -1
- data/lib/espresso_path/version.rb +1 -1
- 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: 0b72575522e8a02c4fc38179f715f0d9d2145402
|
|
4
|
+
data.tar.gz: 9e6f15e9259f1ab7c690b9484b12fb9ebd8dee94
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27a78ea78996a1ca1fd52b779531bec2cbdf7a38a79228d875753da43079202d2303cb1273984322892a16ed265a812b39e0c1f600b44103ca3bed891cf7de36
|
|
7
|
+
data.tar.gz: 5aed84a43ce86001bc431beeaa70667ec08eaa02e3ad836735065b6c04a39cbb8ba2bf28c80c09ba4b5626b4232d91315ab74446e75bae8c2ce60052358a36f9
|
data/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
-
## [0.1.
|
|
7
|
+
## [0.1.3] - 2018-01-19
|
|
8
|
+
### Added
|
|
9
|
+
- Fixing Gemspec with potential httparty security vulnerability - @cdesch
|
|
10
|
+
|
|
11
|
+
## [0.1.1]/[0.1.2] - 2018-01-19
|
|
8
12
|
### Added
|
|
9
13
|
- Migrating to `EspressoPath::Client` instead of `EspressoPath::GeoPath`
|
|
10
14
|
- [CONTRIBUTING.md](CONTRIBUTING.md) file - @cdesch
|
data/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Welcome to your EspressoPath! Espresso Path is GeoPath API Ruby Wrapper
|
|
|
10
10
|
Add this line to your application's Gemfile:
|
|
11
11
|
|
|
12
12
|
```ruby
|
|
13
|
-
gem 'espresso_path', '~> 0.1.
|
|
13
|
+
gem 'espresso_path', '~> 0.1.3'
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
And then execute:
|
|
@@ -79,3 +79,6 @@ Please refer to the [Code of Conduct](CODE_OF_CONDUCT.md) for details
|
|
|
79
79
|
|
|
80
80
|
[EspressoPath on RubyGems](https://rubygems.org/gems/espresso_path)
|
|
81
81
|
|
|
82
|
+
## Release Process
|
|
83
|
+
|
|
84
|
+
[RELEASING.md](RELEASING.md)
|
data/espresso_path.gemspec
CHANGED
|
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
|
|
|
30
30
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
31
31
|
spec.require_paths = ["lib"]
|
|
32
32
|
#spec.add_dependency 'httparty'
|
|
33
|
-
spec.add_runtime_dependency 'httparty', '~> 0'
|
|
33
|
+
spec.add_runtime_dependency 'httparty', '~> 0.15.6'
|
|
34
34
|
|
|
35
35
|
spec.add_development_dependency 'dotenv', '~> 2.2', '>= 2.2.1'
|
|
36
36
|
spec.add_development_dependency "bundler", "~> 1.14"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: espresso_path
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- KickinEspresso
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: 0.15.6
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
26
|
+
version: 0.15.6
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: dotenv
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|