File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
## Version 2
3
+ ### Version 2.2.3
4
+ * Use Marshal serializer to fix encoding error. This is a faraday-http-cache problem, as described in plataformatec/faraday-http-cache #38 (#8 )
5
+
3
6
### Version 2.2.2
4
7
* Fix LoadError by properly requiring faraday-http-cache as a dependency.
5
8
Original file line number Diff line number Diff line change 1
1
Gem ::Specification . new do |s |
2
2
s . name = 'ghuls-lib'
3
- s . version = '2.2.2 '
3
+ s . version = '2.2.3 '
4
4
s . required_ruby_version = '>= 2.0'
5
5
s . authors = [ 'Eli Foster' ]
6
6
s . description = 'The library used for and by the GHULS applications.'
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ def self.configure_stuff(opts = {})
17
17
gh = Octokit ::Client . new ( login : user , password : pass ) if token . nil?
18
18
gh = Octokit ::Client . new ( access_token : token ) unless token . nil?
19
19
stack = Faraday ::RackBuilder . new do |builder |
20
- builder . use Faraday ::HttpCache , shared_cache : false
20
+ builder . use Faraday ::HttpCache , shared_cache : false , serializer : Marshal
21
21
builder . use Octokit ::Response ::RaiseError
22
22
builder . adapter :net_http_persistent
23
23
end
You can’t perform that action at this time.
0 commit comments