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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8bd07d8c67e818f8b050629b918f2939c85d6b43
4
- data.tar.gz: 1439d1a6f47f937886bd861affe61a38c49bee2a
3
+ metadata.gz: 092ce09db56f427904d76e1aca0b66f6adfa499a
4
+ data.tar.gz: 523c368c3d5c3fd13aa6216f1d864ffdec67ef90
5
5
  SHA512:
6
- metadata.gz: e6d3178aca6715909b44ba0e548045e3c70e752ca0ce81b8894214ac6d15ebe6612aeb85b1c35e6caffb089771b5a654c0098354ea36a31c990f3f060774c7a6
7
- data.tar.gz: 1f79b0b7fb583e0f627ac3b6dd80bde532aab476bb80b1f42e9072a09c42842b2dd874291c81479442edd202fc46fecaf9683cddc33429020e1d0726b7509266
6
+ metadata.gz: 27af19fae218886584b4bf57efcfce1236cee5b270e1b7b36e46a38f9d3a8db3ae272684b6e86aaa27febb9ed2bc7075b9667512f5f5ff81240e2dd00178f984
7
+ data.tar.gz: 2d07e190738c9f79862a971f43294d81fad809b8494cef94c5225f9c3c964e531f388dbbab59a4e8b3b32a0e96ef72f6c83f13f44c888607a247f4622c10f7fe
@@ -0,0 +1,11 @@
1
+ ## 0.0.2
2
+
3
+ **6 June 2014**
4
+
5
+ Enhancements:
6
+
7
+ * formally license under MIT
8
+
9
+ ## 0.0.1
10
+
11
+ * initial release
@@ -17,7 +17,7 @@ GIT
17
17
  PATH
18
18
  remote: .
19
19
  specs:
20
- vagrant-s3auth (0.0.1)
20
+ vagrant-s3auth (0.0.2)
21
21
 
22
22
  GEM
23
23
  remote: https://rubygems.org/
data/LICENSE CHANGED
@@ -1,3 +1,19 @@
1
1
  Copyright (c) 2014 WHOOP, Inc.
2
2
 
3
- All right reserved.
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
- %x(vagrant plugin install vagrant-s3auth) unless Vagrant.has_plugin?('vagrant-s3auth')
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
 
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module S3Auth
3
- VERSION = '0.0.1'
3
+ VERSION = '0.0.2'
4
4
  end
5
5
  end
@@ -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 = 'All rights reserved'
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.1
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-04-11 00:00:00.000000000 Z
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
- - All rights reserved
67
+ - MIT
67
68
  metadata: {}
68
69
  post_install_message:
69
70
  rdoc_options: []