Bump `representable` dependency to 3.0 (#532)

Also fixes a breaking change introduced between `representable` 2.3 and
3.0. Specifically, `:skip_undefined` is now be passed via the
`:user_options` option.
This commit is contained in:
Sai Cheemalapati 2017-02-13 12:24:14 -08:00 committed by GitHub
parent 2ea7f12106
commit 4f143ae551
5 changed files with 13 additions and 10 deletions

View File

@ -6,10 +6,13 @@ rvm:
- 2.0.0 - 2.0.0
- jruby-9000 - jruby-9000
env: env:
- RAILS_VERSION="~>3.2" global:
- RAILS_VERSION="~>4.0.0" - JRUBY_OPTS='-X-C -J-Xmx1024m -J-XX:+UseConcMarkSweepGC'
- RAILS_VERSION="~>4.1.0" matrix:
- RAILS_VERSION="~>4.2.0" - RAILS_VERSION="~>3.2"
- RAILS_VERSION="~>4.0.0"
- RAILS_VERSION="~>4.1.0"
- RAILS_VERSION="~>4.2.0"
matrix: matrix:
exclude: exclude:
- rvm: 2.0.0 - rvm: 2.0.0

View File

@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = '~> 2.0' spec.required_ruby_version = '~> 2.0'
spec.add_runtime_dependency 'representable', '~> 2.3.0' spec.add_runtime_dependency 'representable', '~> 3.0'
spec.add_runtime_dependency 'retriable', '>= 2.0', '< 4.0' spec.add_runtime_dependency 'retriable', '>= 2.0', '< 4.0'
spec.add_runtime_dependency 'addressable', '~> 2.3' spec.add_runtime_dependency 'addressable', '~> 2.3'
spec.add_runtime_dependency 'mime-types', '>= 1.6' spec.add_runtime_dependency 'mime-types', '>= 1.6'

View File

@ -55,7 +55,7 @@ module Google
query[FIELDS_PARAM] = normalize_fields_param(query[FIELDS_PARAM]) if query.key?(FIELDS_PARAM) query[FIELDS_PARAM] = normalize_fields_param(query[FIELDS_PARAM]) if query.key?(FIELDS_PARAM)
if request_representation && request_object if request_representation && request_object
header[:content_type] ||= JSON_CONTENT_TYPE header[:content_type] ||= JSON_CONTENT_TYPE
self.body = request_representation.new(request_object).to_json(skip_undefined: true) self.body = request_representation.new(request_object).to_json(user_options: { skip_undefined: true })
end end
super super
end end

View File

@ -55,7 +55,7 @@ module Google
def if_fn(name) def if_fn(name)
ivar_name = "@#{name}".to_sym ivar_name = "@#{name}".to_sym
lambda do |opts| lambda do |opts|
if opts[:skip_undefined] if opts[:options][:user_options] and opts[:options][:user_options][:skip_undefined]
if respond_to?(:key?) if respond_to?(:key?)
self.key?(name) || instance_variable_defined?(ivar_name) self.key?(name) || instance_variable_defined?(ivar_name)
else else
@ -137,7 +137,7 @@ module Google
def to_json def to_json
representation = self.class.const_get(:Representation) representation = self.class.const_get(:Representation)
representation.new(self).to_json(skip_undefined: true) representation.new(self).to_json(user_options: { skip_undefined: true })
end end
end end
end end

View File

@ -109,7 +109,7 @@ RSpec.describe Google::Apis::Core::JsonRepresentation do
end end
context 'with model object' do context 'with model object' do
let(:json) { representer_class.new(model).to_json(skip_undefined: true) } let(:json) { representer_class.new(model).to_json(user_options: { skip_undefined: true }) }
let(:model) do let(:model) do
model = model_class.new model = model_class.new
model.nil_value = nil model.nil_value = nil
@ -132,7 +132,7 @@ RSpec.describe Google::Apis::Core::JsonRepresentation do
end end
context 'with hash' do context 'with hash' do
let(:json) { representer_class.new(model).to_json(skip_undefined: true) } let(:json) { representer_class.new(model).to_json(user_options: { skip_undefined: true }) }
let(:model) do let(:model) do
{ {
nil_value: nil, nil_value: nil,