[Ruby] Fix type mapping for Ruby (#2385) (#2386)

* maps 'boolean' to 'Boolean' in Ruby (#2385)

* update Ruby client samples (#2385)
This commit is contained in:
Akira Tanimura
2019-03-17 12:07:00 +09:00
committed by William Cheng
parent 94466d54b3
commit 40253a5b82
97 changed files with 156 additions and 157 deletions

View File

@@ -47,8 +47,8 @@ describe 'FakeApi' do
# unit tests for fake_outer_boolean_serialize
# Test serialization of outer boolean types
# @param [Hash] opts the optional parameters
# @option opts [BOOLEAN] :body Input boolean as post body
# @return [BOOLEAN]
# @option opts [Boolean] :body Input boolean as post body
# @return [Boolean]
describe 'fake_outer_boolean_serialize test' do
it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -174,7 +174,7 @@ describe 'FakeApi' do
# @param required_int64_group Required Integer in group parameters
# @param [Hash] opts the optional parameters
# @option opts [Integer] :string_group String in group parameters
# @option opts [BOOLEAN] :boolean_group Boolean in group parameters
# @option opts [Boolean] :boolean_group Boolean in group parameters
# @option opts [Integer] :int64_group Integer in group parameters
# @return [nil]
describe 'test_group_parameters test' do