lib/aws/core/configuration.rb in aws-sdk-1.9.0 vs lib/aws/core/configuration.rb in aws-sdk-1.9.1
- old
+ new
@@ -303,11 +303,11 @@
def eql? other
other.is_a?(self.class) and self.supplied == other.supplied
end
alias_method :==, :eql?
- # @private
+ # @api private
def inspect
"<#{self.class.name}>"
end
protected
@@ -316,16 +316,16 @@
@supplied ||= {}
end
class << self
- # @private
+ # @api private
def accepted_options
@options ||= Set.new
end
- # @private
+ # @api private
def add_option name, default_value = nil, options = {}, &transform
accepted_options << name
define_method(name) do |&default_override|
@@ -348,10 +348,10 @@
end
# Configuration options that have dependencies are re-recreated
# anytime one of their dependent configuration values are
# changed.
- # @private
+ # @api private
def add_option_with_needs name, needs, &create_block
accepted_options << name
define_method(name) do