Fix inflection for teamdrives, better logging for conflicting names

This commit is contained in:
Steve Bazyl 2017-03-31 11:09:40 -07:00
parent cc80d64a75
commit bdc903776d
1 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,8 @@ module Google
# where algorithmic approaches produce poor APIs.
class Names
ActiveSupport::Inflector.inflections do |inflections|
u = inflections.uncountable('send_as', 'as')
inflections.uncountable('send_as', 'as')
inflections.irregular('teamdrive', 'teamdrives')
end
include Google::Apis::Core::Logging