амплифер не справился с кусками кода, там должно быть вот так:
# bad
def action(params)
service = Container['services.show']
service.call(params)
end
# also bad
def action(container = Container)
service = container['services.show']
service.call(params)
end