Skip to content

Commit

Permalink
PR Cleanups 2
Browse files Browse the repository at this point in the history
  • Loading branch information
alextwoods committed Sep 17, 2024
1 parent 5690ebb commit 790ddd1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def example_var_name
end

def example_operation_name
raise "no operations found for the service" if @service.api['operations'].empty?
raise 'no operations found for the service' if @service.api['operations'].empty?

underscore(@service.api['operations'].keys.first)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ module {{module_name}}

end
end

{{#types_customizations}}
require "{{.}}"
{{/types_customizations}}
1 change: 0 additions & 1 deletion gems/aws-sdk-core/spec/aws/cbor_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
require_relative '../spec_helper'
require 'aws-sdk-core/cbor'


module Aws
describe Cbor do
[:cbor].each do |engine|
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

module Aws
module Translate
module Plugins
autoload :TranslateDocumentEncoding, 'aws-sdk-translate/plugins/translate_document_encoding'
end
end
end
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# frozen_string_literal: true

require_relative 'spec_helper'
require_relative '../lib/aws-sdk-translate/plugins/translate_document_encoding'

module Aws::Translate
module Plugins
Expand Down

0 comments on commit 790ddd1

Please sign in to comment.