Skip to content
This repository has been archived by the owner on Nov 20, 2018. It is now read-only.

Commit

Permalink
Converted the list of service module names from symbols to strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorrowe committed Sep 19, 2014
1 parent d83aba9 commit 4e7520f
Showing 1 changed file with 39 additions and 39 deletions.
78 changes: 39 additions & 39 deletions aws-sdk-core/lib/aws.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,45 +10,45 @@ module Aws

# @api private
# services
SERVICE_MODULE_NAMES = [
:AutoScaling,
:CloudFormation,
:CloudFront,
:CloudSearch,
:CloudSearchDomain,
:CloudTrail,
:CloudWatch,
:CloudWatchLogs,
:CognitoIdentity,
:CognitoSync,
:DataPipeline,
:DirectConnect,
:DynamoDB,
:EC2,
:ElastiCache,
:ElasticBeanstalk,
:ElasticLoadBalancing,
:ElasticTranscoder,
:EMR,
:Glacier,
:IAM,
:ImportExport,
:Kinesis,
:OpsWorks,
:RDS,
:Redshift,
:Route53,
:Route53Domains,
:S3,
:SES,
:SimpleDB,
:SNS,
:SQS,
:StorageGateway,
:STS,
:Support,
:SWF,
]
SERVICE_MODULE_NAMES = %w(
AutoScaling
CloudFormation
CloudFront
CloudSearch
CloudSearchDomain
CloudTrail
CloudWatch
CloudWatchLogs
CognitoIdentity
CognitoSync
DataPipeline
DirectConnect
DynamoDB
EC2
ElastiCache
ElasticBeanstalk
ElasticLoadBalancing
ElasticTranscoder
EMR
Glacier
IAM
ImportExport
Kinesis
OpsWorks
RDS
Redshift
Route53
Route53Domains
S3
SES
SimpleDB
SNS
SQS
StorageGateway
STS
Support
SWF
)

@config = {}
@services = {}
Expand Down

0 comments on commit 4e7520f

Please sign in to comment.