stairs-steps-s3 0.0.6 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +16 -1
- data/stairs-steps-s3.gemspec +2 -2
- metadata +10 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb5cb0f55806b671723d947df3822667bd9cb691
|
4
|
+
data.tar.gz: ced935611bea74358aee6497a3cfa10661c6273b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a9787355ac119d95488dcb8dae8f0e291299fe701422b5cceae825a0fd4918b26e06582110cd5687af6b680e896c01e9ad0d7c3ec69022b3598b9543ab20d9d
|
7
|
+
data.tar.gz: 773dd6df72f2ec39b8d516237f4212abdeb776ceae91ed8aaa3efce712cdec9316b2e6c2bd9b5ae03914a5dad6bac4a4c96afea015bd68425301edff09e5f572
|
data/README.md
CHANGED
@@ -14,6 +14,21 @@ In your stairs setup script:
|
|
14
14
|
setup :s3
|
15
15
|
```
|
16
16
|
|
17
|
+
This will write the following ENV vars: `AWS_ACCESS_KEY_ID`,
|
18
|
+
`AWS_SECRET_ACCESS_KEY`, `AWS_S3_BUCKET`
|
19
|
+
|
20
|
+
### Options
|
21
|
+
|
22
|
+
You can optionally specify the names for the ENV vars this step will write to:
|
23
|
+
|
24
|
+
* `key_id`: ENV var name for AWS Access Key ID
|
25
|
+
* `key_secret`: ENV var name for AWS Access Key Secret
|
26
|
+
* `bucket`: ENV var name for the S3 Bucket name
|
27
|
+
|
28
|
+
```ruby
|
29
|
+
setup :s3, bucket: "S3_BUCKET"
|
30
|
+
```
|
31
|
+
|
17
32
|
## Contributing
|
18
33
|
|
19
34
|
1. Fork it
|
@@ -22,4 +37,4 @@ setup :s3
|
|
22
37
|
4. Push to the branch (`git push origin my-new-feature`)
|
23
38
|
5. Create new Pull Request
|
24
39
|
|
25
|
-
[stairs]: http://github.com/patbenatar/stairs
|
40
|
+
[stairs]: http://github.com/patbenatar/stairs
|
data/stairs-steps-s3.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "stairs-steps-s3"
|
7
|
-
spec.version = "0.0
|
7
|
+
spec.version = "0.1.0"
|
8
8
|
spec.authors = ["patbenatar"]
|
9
9
|
spec.email = ["nick@gophilosophie.com"]
|
10
10
|
spec.description = "Stairs plugin for setting up S3"
|
@@ -20,5 +20,5 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.add_development_dependency "bundler", "~> 1.3"
|
21
21
|
spec.add_development_dependency "rake"
|
22
22
|
|
23
|
-
spec.add_dependency "stairs", "
|
23
|
+
spec.add_dependency "stairs", ">= 0.5.0", "< 0.7.0"
|
24
24
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stairs-steps-s3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- patbenatar
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-11-
|
11
|
+
date: 2013-11-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -42,16 +42,22 @@ dependencies:
|
|
42
42
|
name: stairs
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - '>='
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: 0.5.0
|
48
|
+
- - <
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: 0.7.0
|
48
51
|
type: :runtime
|
49
52
|
prerelease: false
|
50
53
|
version_requirements: !ruby/object:Gem::Requirement
|
51
54
|
requirements:
|
52
|
-
- -
|
55
|
+
- - '>='
|
53
56
|
- !ruby/object:Gem::Version
|
54
57
|
version: 0.5.0
|
58
|
+
- - <
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: 0.7.0
|
55
61
|
description: Stairs plugin for setting up S3
|
56
62
|
email:
|
57
63
|
- nick@gophilosophie.com
|