-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaws-cli.gemspec
66 lines (58 loc) · 1.4 KB
/
aws-cli.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Gem::Specification.new do |s|
s.name = 'aws-cli'
s.version = '0.3'
s.date = '2015-03-13'
s.summary = 'Tools for working with various Amazon Web Services'
s.description = '
aws-cli provides tools for working with various Amazon Web Services.
It includes:
- SQS: create, delete, list queues; publish a message from stdin;
receive messages to stdout; ...
- S3: create, delete, list buckets; list objects, and multipart uploads;
put object from stdin; get object to stdout; ...
- SimpleDB: create, delete, list domains; query; dump entire domain as
json; ...
Defaults to eu-west-1, or whatever $AWS_REGION is set to.
Respects $https_proxy.
'
s.homepage = 'https://github.com/rvedotrc/aws-cli'
s.authors = ['Rachel Evans']
s.email = '[email protected]'
s.executables = %w[
aws-cli-test
ec2-list-instances
s3-create-bucket
s3-delete
s3-delete-bucket
s3-empty-bucket
s3-get
s3-list-bucket
s3-list-buckets
s3-presigned-url
s3-put
s3-rm
s3-sync
sdb-backup
sdb-create-domain
sdb-delete-domain
sdb-empty-domain
sdb-list-domains
sdb-query
sdb-restore
sns-create-topic
sns-delete-topic
sns-list-subscriptions
sns-list-topics
sns-unsubscribe
sqs-create-queue
sqs-delete-queue
sqs-grep
sqs-list-queues
sqs-publish
sqs-receive
]
s.files = %w[
lib/aws-cli.rb
] + s.executables.map {|s| "bin/"+s}
s.require_paths = ["lib"]
end