vagrant-s3auth 0.0.1 → 0.0.2
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/CHANGELOG.md +11 -0
- data/Gemfile.lock +1 -1
- data/LICENSE +17 -1
- data/README.md +8 -1
- data/lib/vagrant-s3auth/version.rb +1 -1
- data/vagrant-s3auth.gemspec +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 092ce09db56f427904d76e1aca0b66f6adfa499a
|
|
4
|
+
data.tar.gz: 523c368c3d5c3fd13aa6216f1d864ffdec67ef90
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27af19fae218886584b4bf57efcfce1236cee5b270e1b7b36e46a38f9d3a8db3ae272684b6e86aaa27febb9ed2bc7075b9667512f5f5ff81240e2dd00178f984
|
|
7
|
+
data.tar.gz: 2d07e190738c9f79862a971f43294d81fad809b8494cef94c5225f9c3c964e531f388dbbab59a4e8b3b32a0e96ef72f6c83f13f44c888607a247f4622c10f7fe
|
data/CHANGELOG.md
ADDED
data/Gemfile.lock
CHANGED
data/LICENSE
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
1
|
Copyright (c) 2014 WHOOP, Inc.
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
in the Software without restriction, including without limitation the rights
|
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
furnished to do so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
|
11
|
+
all copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
19
|
+
THE SOFTWARE.
|
data/README.md
CHANGED
|
@@ -171,7 +171,14 @@ install a plugin is lame.
|
|
|
171
171
|
But wait! Just stick some shell in your Vagrantfile:
|
|
172
172
|
|
|
173
173
|
```ruby
|
|
174
|
-
|
|
174
|
+
unless Vagrant.has_plugin?('vagrant-s3auth')
|
|
175
|
+
# Attempt to install ourself. Bail out on failure so we don't get stuck in an
|
|
176
|
+
# infinite loop.
|
|
177
|
+
system('vagrant plugin install vagrant-s3auth') || exit!
|
|
178
|
+
|
|
179
|
+
# Relaunch Vagrant so the plugin is detected. Exit with the same status code.
|
|
180
|
+
exit system('vagrant', *ARGV)
|
|
181
|
+
end
|
|
175
182
|
```
|
|
176
183
|
|
|
177
184
|
|
data/vagrant-s3auth.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.email = ['benesch@whoop.com']
|
|
10
10
|
spec.summary = 'Private, versioned Vagrant boxes hosted on Amazon S3.'
|
|
11
11
|
spec.homepage = 'https://github.com/WhoopInc/vagrant-s3auth'
|
|
12
|
-
spec.license = '
|
|
12
|
+
spec.license = 'MIT'
|
|
13
13
|
|
|
14
14
|
spec.files = `git ls-files -z`.split("\x0")
|
|
15
15
|
spec.test_files = spec.files.grep(/spec/)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-s3auth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nikhil Benesch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-06-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -47,6 +47,7 @@ extra_rdoc_files: []
|
|
|
47
47
|
files:
|
|
48
48
|
- .gitignore
|
|
49
49
|
- .rubocop.yml
|
|
50
|
+
- CHANGELOG.md
|
|
50
51
|
- Gemfile
|
|
51
52
|
- Gemfile.lock
|
|
52
53
|
- LICENSE
|
|
@@ -63,7 +64,7 @@ files:
|
|
|
63
64
|
- vagrant-s3auth.gemspec
|
|
64
65
|
homepage: https://github.com/WhoopInc/vagrant-s3auth
|
|
65
66
|
licenses:
|
|
66
|
-
-
|
|
67
|
+
- MIT
|
|
67
68
|
metadata: {}
|
|
68
69
|
post_install_message:
|
|
69
70
|
rdoc_options: []
|