freshsales 0.0.3 → 0.0.4

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: 67c9817c0617a6ee3f16a69c72e0af9fbf6b1a37
4
- data.tar.gz: f084907f2a605712069f8f24d379ba8c5dcee7f7
3
+ metadata.gz: 3528cb6f47d5a90f0e68aa2d5ffd921227fadc96
4
+ data.tar.gz: a5e6d05b0fe1b794c981642c125f87443835ac03
5
5
  SHA512:
6
- metadata.gz: 3dcb15b5c1061e54ebabc2f6e43e193055ef729e8f009423ea083fff9c8c77bb19991fa48aa7e05c086c7f357b5659c0f6c857dcd94718ace2169596ff22f2c5
7
- data.tar.gz: ab2381a0b28bde81dcac3ec7029b65bb288db4c29204d963acb4046256af80a791939654d210f8421e0f35ebeda6fcd505b8f3e93eaf10593272457ffa544257
6
+ metadata.gz: e1e5be774b3868dceebb7367cc284494bacff1493a9b6bf6e4024e7907d06693f369f0ff34d968f2521ddcdb071469fe7f802c0805a5284ec13e1d49a860d5c7
7
+ data.tar.gz: 1b74e477b0c616f4a09b9c2cb3f133e05516d84b92457137495caba046a534265a31d3117205100038b70fb262e1e926c2f8efa42c7f08998abba7a6dc2929fd
@@ -1,2 +1,2 @@
1
- future-release=v0.0.3
1
+ future-release=v0.0.4
2
2
  exclude-labels=nochangelog,question
data/CHANGELOG.md ADDED
@@ -0,0 +1,25 @@
1
+ # Change Log
2
+
3
+ ## [v0.0.4](https://github.com/DragonBox/freshsales/tree/v0.0.4) (2018-04-11)
4
+ [Full Changelog](https://github.com/DragonBox/freshsales/compare/v0.0.3...v0.0.4)
5
+
6
+ **Closed issues:**
7
+
8
+ - Relax dependencies [\#5](https://github.com/DragonBox/freshsales/issues/5)
9
+
10
+ ## [v0.0.3](https://github.com/DragonBox/freshsales/tree/v0.0.3) (2018-04-10)
11
+ [Full Changelog](https://github.com/DragonBox/freshsales/compare/v0.0.2...v0.0.3)
12
+
13
+ ## [v0.0.2](https://github.com/DragonBox/freshsales/tree/v0.0.2) (2018-04-10)
14
+ [Full Changelog](https://github.com/DragonBox/freshsales/compare/v0.0.1...v0.0.2)
15
+
16
+ **Implemented enhancements:**
17
+
18
+ - add more configuration options [\#4](https://github.com/DragonBox/freshsales/issues/4)
19
+ - handle errors \(Faraday::Error::ClientError\) [\#3](https://github.com/DragonBox/freshsales/issues/3)
20
+ - Clean pagination API [\#2](https://github.com/DragonBox/freshsales/issues/2)
21
+
22
+ ## [v0.0.1](https://github.com/DragonBox/freshsales/tree/v0.0.1) (2018-04-07)
23
+
24
+
25
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- freshsales (0.0.3)
5
- faraday (~> 0.9.1)
6
- multi_json (~> 1.11.0)
4
+ freshsales (0.0.4)
5
+ faraday (>= 0.9.1)
6
+ multi_json (>= 1.11.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (5.1.6)
11
+ activesupport (5.2.0)
12
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
13
13
  i18n (>= 0.7, < 2)
14
14
  minitest (~> 5.1)
@@ -31,7 +31,7 @@ GEM
31
31
  safe_yaml (~> 1.0.0)
32
32
  diff-lcs (1.3)
33
33
  docile (1.1.5)
34
- faraday (0.9.2)
34
+ faraday (0.14.0)
35
35
  multipart-post (>= 1.2, < 3)
36
36
  faraday-http-cache (2.0.0)
37
37
  faraday (~> 0.8)
@@ -50,7 +50,7 @@ GEM
50
50
  json (2.1.0)
51
51
  method_source (0.9.0)
52
52
  minitest (5.11.3)
53
- multi_json (1.11.3)
53
+ multi_json (1.13.1)
54
54
  multipart-post (2.0.0)
55
55
  octokit (4.8.0)
56
56
  sawyer (~> 0.8.0, >= 0.5.3)
data/freshsales.gemspec CHANGED
@@ -22,8 +22,8 @@ Gem::Specification.new do |spec|
22
22
  spec.require_paths = ["lib"]
23
23
 
24
24
  # using same minimal dependencies as gibbon, for the sake of compatibility
25
- spec.add_dependency 'faraday', '~> 0.9.1'
26
- spec.add_dependency 'multi_json', '~> 1.11.0'
25
+ spec.add_dependency 'faraday', '>= 0.9.1'
26
+ spec.add_dependency 'multi_json', '>= 1.11.0'
27
27
 
28
28
  # Development only
29
29
  spec.add_development_dependency "bundler", "~> 1.13"
@@ -1,3 +1,3 @@
1
1
  module Freshsales
2
- VERSION = "0.0.3".freeze
2
+ VERSION = "0.0.4".freeze
3
3
  end
metadata CHANGED
@@ -1,41 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: freshsales
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jerome Lacoste
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-10 00:00:00.000000000 Z
11
+ date: 2018-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 0.9.1
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
26
  version: 0.9.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: multi_json
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: 1.11.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: 1.11.0
41
41
  - !ruby/object:Gem::Dependency
@@ -211,6 +211,7 @@ files:
211
211
  - ".gitignore"
212
212
  - ".rspec"
213
213
  - ".rubocop.yml"
214
+ - CHANGELOG.md
214
215
  - CODE_OF_CONDUCT.md
215
216
  - Gemfile
216
217
  - Gemfile.lock