File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change
1
+ === 3.0.0 2018-02-09
2
+
3
+ * Require use of ruby ~> 2.0 and TLSv1.2
4
+
5
+
1
6
=== 2.7.3 2017-05-25
2
7
3
8
* Fix bug with introduced around certain JSON objects with IDs (thanks vladvinnikov!)
Original file line number Diff line number Diff line change 1
- 2.7.3
1
+ 3.0.0
Original file line number Diff line number Diff line change @@ -17,8 +17,9 @@ Gem::Specification.new do |spec|
17
17
spec . executables = spec . files . grep ( %r{^bin/} ) { |f | File . basename ( f ) }
18
18
spec . test_files = spec . files . grep ( %r{^(test|spec|features)/} )
19
19
spec . require_paths = [ 'lib' ]
20
+ spec . required_ruby_version = '~> 2.0'
20
21
21
- spec . add_dependency 'rest-client' , '>= 1.4 '
22
+ spec . add_dependency 'rest-client' , '>= 1.7 '
22
23
spec . add_dependency 'multi_json' , '>= 1.3.0'
23
24
spec . add_development_dependency 'bundler' , '~> 1.7'
24
25
spec . add_development_dependency 'rake' , '~> 10.0'
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ def self.http_config
75
75
timeout : 60 ,
76
76
open_timeout : 30 ,
77
77
verify_ssl : false ,
78
- ssl_version : "TLSv1" ,
78
+ ssl_version : :TLSv1_2 ,
79
79
}
80
80
end
81
81
You can’t perform that action at this time.
0 commit comments