vagrant-omnibus 1.4.1 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fbae26bb2578c8365aa975504631802baa655471
4
- data.tar.gz: 3135aa853c1dd0b902cf1a18bc4b4bcd3b224436
3
+ metadata.gz: e325f5bc0c626e1edba6c5068b1034d3bdc3dc85
4
+ data.tar.gz: 9fb90e995737bd3360c2fe286b233d97c98395a7
5
5
  SHA512:
6
- metadata.gz: bc51cfb50ab270b05b899f93cae8cc624fc4723f857beff4d348cdc089144fc2ea4df2b1b175892c08e4937db66f31a50e2ebdcc436e69043284b242ce289c02
7
- data.tar.gz: 0989b2ad1530a5a5a3346129f7d05a3b14707eb5fc623180063f1f186f5d2f66d101ccaf12036270261b716883d8281805813a33a00fea9b0393e240e1fdf952
6
+ metadata.gz: 573694d4f627168a27ef72043d78ae046df1a3ccbc7ed19ab2926b8776e17e27ce4dda6d54ddfc9ee8497efed250fbd4a7c182da1cc288aa3abaa68599307b56
7
+ data.tar.gz: 8a0b491252755e1628c255ed67893abd602c70ae12ae926aa8f31c7d530d14a74f2727b1d82ef328d6ce9066efc03b884d709f0fd54fe419fcefc8b6dde96783
data/.gitignore CHANGED
@@ -1,19 +1,19 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
18
- bin/
19
- .vagrant/
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ bin/
19
+ .vagrant/
data/.rspec CHANGED
@@ -1 +1 @@
1
- --default_path test/unit
1
+ --default-path test/unit
@@ -1,8 +1,18 @@
1
- rvm:
2
- - 2.0.0
3
- - 2.1.0
4
-
5
- bundler_args: --jobs 7 --without=acceptance
6
-
7
- script:
8
- - bundle exec rake travis:ci
1
+ rvm:
2
+ - 2.1.9
3
+ - 2.2.5
4
+ - 2.3.1
5
+
6
+ branches:
7
+ only:
8
+ - master
9
+
10
+ before_install:
11
+ - rvm @global do gem uninstall bundler --all --executables
12
+ - gem uninstall bundler --all --executables
13
+ - gem install bundler --version '1.12.5'
14
+
15
+ bundler_args: --jobs 7 --without=acceptance
16
+
17
+ script:
18
+ - bundle exec rake travis:ci
data/.yardopts CHANGED
@@ -1,7 +1,7 @@
1
- --markup=markdown
2
- --markup-provider=redcarpet
3
- --readme=README.md
4
- -
5
- CHANGELOG.md
6
- LICENSE
7
- TODO.md
1
+ --markup=markdown
2
+ --markup-provider=redcarpet
3
+ --readme=README.md
4
+ -
5
+ CHANGELOG.md
6
+ LICENSE
7
+ TODO.md
@@ -1,196 +1,98 @@
1
- vagrant-omnibus Changelog
2
- =========================
3
- This file is used to list changes made in each version of the vagrant-omnibus plugin.
4
-
5
- 1.4.1 (April 26, 2014)
6
- ----------------------
7
- ### Bug Fixes
8
-
9
- - Issue [#79][]: Install command not idempotent on Windows. ([@schisamo][])
10
-
11
- 1.4.0 (April 25, 2014)
12
- -------------------------
13
- ### New Features
14
-
15
- - PR [#73][]: Full caching of omnibus package downloads! Huge thanks to [@tknerr][] for all all his Herculean effort coordinating this fix in [vagrant-cachier/#13](https://github.com/fgrehm/vagrant-cachier/issues/13) and [opscode-omnitruck/#3](https://github.com/opscode/opscode-omnitruck/pull/33).
16
-
17
- ### Bug Fixes
18
-
19
- - PR [#67][]: No-op validation if `config.omnibus.chef_version` is `nil`. ([@skv-headless][])
20
-
21
- 1.3.1 (March 12, 2014)
22
- ----------------------
23
- ### Improvements
24
-
25
- - PR [#66][]: Run install.sh with `sh` rather than `bash`. ([@tknerr][])
26
-
27
- ### Bug Fixes
28
-
29
- - PR [#65][]: Make unlinking the install.sh reliably work on windows hosts. ([@tknerr][])
30
- - Issue [#69][]: Ensure all remote commands are executed with `sh`. ([@schisamo][])
31
-
32
- 1.3.0 (February 24, 2014)
33
- -------------------------
34
- ### New Features
35
-
36
- - PR [#59][], PR [#60][]: Windows guest support! ([@jarig][])([@schisamo][])
37
-
38
- ### Improvements
39
-
40
- - PR [#61][]: Make detection of currently installed Chef version more robust. ([@ampedandwired][])
41
- - Create explicit tasks for supported provider acceptance tests. ([@schisamo][])
42
- - Add Ruby 2.1.0 to the Travis CI test matrix. ([@schisamo][])
43
-
44
- ### Bug Fixes
45
-
46
- - Issue [#13][]: Perform config validation at action execution time. ([@schisamo][])
47
-
48
- 1.2.1 (December 17, 2013)
49
- -------------------------
50
- ### Improvements
51
-
52
- - Acceptance test coverage that verifies Chef is not reinstalled into a system where the desired version of Chef already exists. ([@schisamo][])
53
-
54
- ### Bug Fixes
55
-
56
- - PR [#57][]: Filter `stdin is not a tty` when querying installed Chef version. ([@scalp42][])
57
-
58
- 1.2.0 (December 17, 2013)
59
- -------------------------
60
- ### New Features
61
-
62
- - PR [#52][]: Change plugin name to correspond to gem name. ([@tmatilai][])
63
-
64
- ### Improvements
65
-
66
- - PR [#48][]: Don't install Chef if `--no-provision` is specified. ([@tmatilai][])
67
- - PR [#50][]: Update README.md with vagrant-parallels compatibility. ([@wizonesolutions][])
68
- - PR [#56][]: Add Rubocop support and fix style errors. ([@schisamo][])
69
-
70
- ### Bug Fixes
71
-
72
- - Issue [#12][]: Ensure plugin is no-op on Windows guests. ([@schisamo][])
73
- - PR [#53][]: Ensure installed version check works on all platforms. ([@comutt][])
74
-
75
- 1.1.2 (October 17, 2013)
76
- ------------------------
77
- ### Improvements
78
-
79
- - PR [#41][]: Add vagrant-digitalocean to the list of supported providers. ([@tmatilai][])
80
- - PR [#45][]: Compatibility with vagrant-aws v0.4.0 ([@tmatilai][])
81
- - Use Vagrant's built in `Vagrant::Util::Downloader` class; removes requirement of the
82
- guest OS having `wget` or `curl` installed. ([@schisamo][])
83
-
84
- ### Bug Fixes
85
-
86
- - PR [#43][]: Fix development dependencies and Travis tests. ([@tmatilai][])
87
- - Issue [#33][] Split fetching of `install.sh` from the actual execution ([@schisamo][])
88
-
89
- 1.1.1 (September 4, 2013)
90
- -------------------------
91
- ### Bug Fixes
92
-
93
- - PR [#28][]: Include OpenStack provider into the list of working providers. ([@srenatus][])
94
- - PR [#32][], Issue [#31][]: No need to do sudo in sudo ([@matsu911][])
95
- - PR [#32][], Issue [#32][]: Fix the curl line to install the requested Chef version ([@tmatilai][])
96
- - PR [#37][]: Document that newer than v1.1.x Vagrant is fine, too. ([@tmatilai][])
97
- - PR [#38][]: Drop unneeded ConfigValidate action call ([@tmatilai][])
98
- - Issue [#27][]: Properly shell escape version strings ([@schisamo][])
99
-
100
- 1.1.0 (June 21, 2013)
101
- ---------------------
102
- ### New Features
103
-
104
- - PR [#23][], Issue [#17][], Issue [#19][], Issue [#21][], Issue [#23][]: Support for all Vagrant providers that hook into `Vagrant::Action::Builtin::Provision` for provisioning. ([@smdahlen][], [@michfield][], [@rjocoleman][])
105
- - Issue [#15][]: Multi-VM Vagrantfiles are now fully supported. A global `omnibus.chef_version` will install the same version of Chef on all VMs OR declare a separate Chef version in the config block for each individual VM! ([@smdahlen][], [@schisamo][])
106
- - PR [#10][]: Optionally change the location of `install.sh` via the `OMNIBUS_INSTALL_URL` environment variable. Default is still https://www.opscode.com/chef/install.sh. , ([@petecheslock][])
107
-
108
- 1.0.2 (April 20, 2013)
109
- ----------------------
110
- ### Improvements
111
-
112
- - Unit test coverage for `VagrantPlugins::Omnibus::Config` ([@schisamo][])
113
- - Add Rackspace provider acceptance test. ([@schisamo][])
114
- - Parameterize the acceptance test Rake task, this allows you test run acceptance tests against a single provider. ([@schisamo][])
115
-
116
- ### Bug Fixes
117
-
118
- - Issue [#2][]: Convert `Gem::Version` returned by `#retrieve_latest_chef_version` to a string. ([@schisamo][])
119
- - Issue [#6][]: RubyGems 2.0 compat: use #empty? to check for results. ([@schisamo][])
120
- - Issue [#7][]: Ensure 'vagrant-rackspace/action' is loaded. ([@schisamo][])
121
- - Issue [#8][]: Trigger plugin if machine state is `:active`. ([@schisamo][])
122
-
123
- 1.0.1 (April 17, 2013)
124
- ----------------------
125
- ### Improvements
126
-
127
- - Issue [#2][]: Resolve `latest` to a real Chef version. This ensures the plugin does not attempt to re-install Chef on subsequent provisions. ([@schisamo][])
128
- - Issue [#4][]: Validate user provided value for omnibus.chef_version is in fact a real Chef version. ([@schisamo][])
129
- - Retrieve omnibus.chef_version directly from global config. ([@schisamo][])
130
- - Update development dependencies to vagrant (1.2.1) and vagrant-aws (0.2.1). ([@schisamo][])
131
-
132
- ### Bug Fixes
133
-
134
- - Issue [#3][]: Plugin now correctly operates in "no-op" node if now `omnibus.chef_version` is not present in the Vagrantfile. ([@schisamo][])
135
- - Use Ubuntu 12.04 release AMI for acceptance testing. ([@schisamo][])
136
-
137
- 1.0.0 (April 1, 2013)
138
- ---------------------
139
-
140
- - The initial release.
141
-
142
- <!--- The following link definition list is generated by PimpMyChangelog --->
143
- [#2]: https://github.com/schisamo/vagrant-omnibus/issues/2
144
- [#3]: https://github.com/schisamo/vagrant-omnibus/issues/3
145
- [#4]: https://github.com/schisamo/vagrant-omnibus/issues/4
146
- [#6]: https://github.com/schisamo/vagrant-omnibus/issues/6
147
- [#7]: https://github.com/schisamo/vagrant-omnibus/issues/7
148
- [#8]: https://github.com/schisamo/vagrant-omnibus/issues/8
149
- [#10]: https://github.com/schisamo/vagrant-omnibus/issues/10
150
- [#12]: https://github.com/schisamo/vagrant-omnibus/issues/12
151
- [#13]: https://github.com/schisamo/vagrant-omnibus/issues/13
152
- [#15]: https://github.com/schisamo/vagrant-omnibus/issues/15
153
- [#17]: https://github.com/schisamo/vagrant-omnibus/issues/17
154
- [#19]: https://github.com/schisamo/vagrant-omnibus/issues/19
155
- [#21]: https://github.com/schisamo/vagrant-omnibus/issues/21
156
- [#23]: https://github.com/schisamo/vagrant-omnibus/issues/23
157
- [#27]: https://github.com/schisamo/vagrant-omnibus/issues/27
158
- [#28]: https://github.com/schisamo/vagrant-omnibus/issues/28
159
- [#31]: https://github.com/schisamo/vagrant-omnibus/issues/31
160
- [#32]: https://github.com/schisamo/vagrant-omnibus/issues/32
161
- [#33]: https://github.com/schisamo/vagrant-omnibus/issues/33
162
- [#37]: https://github.com/schisamo/vagrant-omnibus/issues/37
163
- [#38]: https://github.com/schisamo/vagrant-omnibus/issues/38
164
- [#41]: https://github.com/schisamo/vagrant-omnibus/issues/41
165
- [#43]: https://github.com/schisamo/vagrant-omnibus/issues/43
166
- [#45]: https://github.com/schisamo/vagrant-omnibus/issues/45
167
- [#48]: https://github.com/schisamo/vagrant-omnibus/issues/48
168
- [#50]: https://github.com/schisamo/vagrant-omnibus/issues/50
169
- [#52]: https://github.com/schisamo/vagrant-omnibus/issues/52
170
- [#53]: https://github.com/schisamo/vagrant-omnibus/issues/53
171
- [#56]: https://github.com/schisamo/vagrant-omnibus/issues/56
172
- [#57]: https://github.com/schisamo/vagrant-omnibus/issues/57
173
- [#59]: https://github.com/schisamo/vagrant-omnibus/issues/59
174
- [#60]: https://github.com/schisamo/vagrant-omnibus/issues/60
175
- [#61]: https://github.com/schisamo/vagrant-omnibus/issues/61
176
- [#65]: https://github.com/schisamo/vagrant-omnibus/issues/65
177
- [#66]: https://github.com/schisamo/vagrant-omnibus/issues/66
178
- [#67]: https://github.com/schisamo/vagrant-omnibus/issues/67
179
- [#69]: https://github.com/schisamo/vagrant-omnibus/issues/69
180
- [#73]: https://github.com/schisamo/vagrant-omnibus/issues/73
181
- [#79]: https://github.com/schisamo/vagrant-omnibus/issues/79
182
- [@ampedandwired]: https://github.com/ampedandwired
183
- [@comutt]: https://github.com/comutt
184
- [@jarig]: https://github.com/jarig
185
- [@matsu911]: https://github.com/matsu911
186
- [@michfield]: https://github.com/michfield
187
- [@petecheslock]: https://github.com/petecheslock
188
- [@rjocoleman]: https://github.com/rjocoleman
189
- [@scalp42]: https://github.com/scalp42
190
- [@schisamo]: https://github.com/schisamo
191
- [@skv-headless]: https://github.com/skv-headless
192
- [@smdahlen]: https://github.com/smdahlen
193
- [@srenatus]: https://github.com/srenatus
194
- [@tknerr]: https://github.com/tknerr
195
- [@tmatilai]: https://github.com/tmatilai
196
- [@wizonesolutions]: https://github.com/wizonesolutions
1
+ # Change Log
2
+
3
+ ## [1.5.0](https://github.com/chef/vagrant-omnibus/tree/1.5.0) (2016-08-31)
4
+ [Full Changelog](https://github.com/chef/vagrant-omnibus/compare/v1.4.1...1.5.0)
5
+
6
+ **Merged pull requests:**
7
+
8
+ - Convert specs to rspec 3 format [\#138](https://github.com/chef/vagrant-omnibus/pull/138) ([tas50](https://github.com/tas50))
9
+ - Testing improvements, dep bumps, and fixes [\#137](https://github.com/chef/vagrant-omnibus/pull/137) ([tas50](https://github.com/tas50))
10
+ - Fix installing chef on windows in vagrant 1.8.3 and up [\#135](https://github.com/chef/vagrant-omnibus/pull/135) ([mwrock](https://github.com/mwrock))
11
+ - Fixed Travis CI image and link. [\#115](https://github.com/chef/vagrant-omnibus/pull/115) ([mbrukman](https://github.com/mbrukman))
12
+ - Update README.md to point to current Travis location [\#101](https://github.com/chef/vagrant-omnibus/pull/101) ([petems](https://github.com/petems))
13
+ - Change :latest to not hit rubygems [\#97](https://github.com/chef/vagrant-omnibus/pull/97) ([lamont-granquist](https://github.com/lamont-granquist))
14
+ - README: added info about Windows support [\#94](https://github.com/chef/vagrant-omnibus/pull/94) ([docwhat](https://github.com/docwhat))
15
+ - Fix string to use Ruby variables in tests [\#93](https://github.com/chef/vagrant-omnibus/pull/93) ([petems](https://github.com/petems))
16
+ - Add plugin spec [\#92](https://github.com/chef/vagrant-omnibus/pull/92) ([petems](https://github.com/petems))
17
+
18
+ ## [v1.4.1](https://github.com/chef/vagrant-omnibus/tree/v1.4.1) (2014-04-26)
19
+ [Full Changelog](https://github.com/chef/vagrant-omnibus/compare/v1.4.0...v1.4.1)
20
+
21
+ ## [v1.4.0](https://github.com/chef/vagrant-omnibus/tree/v1.4.0) (2014-04-25)
22
+ [Full Changelog](https://github.com/chef/vagrant-omnibus/compare/v1.3.1...v1.4.0)
23
+
24
+ **Merged pull requests:**
25
+
26
+ - Cache omnibus download, expose config options [\#73](https://github.com/chef/vagrant-omnibus/pull/73) ([tknerr](https://github.com/tknerr))
27
+ - Fix not specified chef version without internet connection [\#67](https://github.com/chef/vagrant-omnibus/pull/67) ([skv-headless](https://github.com/skv-headless))
28
+
29
+ ## [v1.3.1](https://github.com/chef/vagrant-omnibus/tree/v1.3.1) (2014-03-12)
30
+ [Full Changelog](https://github.com/chef/vagrant-omnibus/compare/v1.3.0...v1.3.1)
31
+
32
+ **Merged pull requests:**
33
+
34
+ - run install.sh with `sh` rather than `bash`... [\#66](https://github.com/chef/vagrant-omnibus/pull/66) ([tknerr](https://github.com/tknerr))
35
+ - make unlinking the install.sh reliably work on windows hosts [\#65](https://github.com/chef/vagrant-omnibus/pull/65) ([tknerr](https://github.com/tknerr))
36
+
37
+ ## [v1.3.0](https://github.com/chef/vagrant-omnibus/tree/v1.3.0) (2014-02-24)
38
+ [Full Changelog](https://github.com/chef/vagrant-omnibus/compare/v1.2.1...v1.3.0)
39
+
40
+ **Merged pull requests:**
41
+
42
+ - Make detection of currently installed Chef version more robust [\#61](https://github.com/chef/vagrant-omnibus/pull/61) ([ampedandwired](https://github.com/ampedandwired))
43
+ - Windows Support Part Deux [\#60](https://github.com/chef/vagrant-omnibus/pull/60) ([schisamo](https://github.com/schisamo))
44
+
45
+ ## [v1.2.1](https://github.com/chef/vagrant-omnibus/tree/v1.2.1) (2013-12-18)
46
+ [Full Changelog](https://github.com/chef/vagrant-omnibus/compare/v1.2.0...v1.2.1)
47
+
48
+ **Merged pull requests:**
49
+
50
+ - filder 'stdin is not a tty' when trying to figure installed Chef version [\#57](https://github.com/chef/vagrant-omnibus/pull/57) ([scalp42](https://github.com/scalp42))
51
+
52
+ ## [v1.2.0](https://github.com/chef/vagrant-omnibus/tree/v1.2.0) (2013-12-17)
53
+ [Full Changelog](https://github.com/chef/vagrant-omnibus/compare/v1.1.2...v1.2.0)
54
+
55
+ **Merged pull requests:**
56
+
57
+ - Ruby linting with Rubocop [\#56](https://github.com/chef/vagrant-omnibus/pull/56) ([schisamo](https://github.com/schisamo))
58
+ - Fix installed version check to be more robust [\#53](https://github.com/chef/vagrant-omnibus/pull/53) ([comutt](https://github.com/comutt))
59
+ - Change plugin name to correspond gem name [\#52](https://github.com/chef/vagrant-omnibus/pull/52) ([tmatilai](https://github.com/tmatilai))
60
+ - Update README.md with vagrant-parallels compatibility [\#50](https://github.com/chef/vagrant-omnibus/pull/50) ([wizonesolutions](https://github.com/wizonesolutions))
61
+ - Don't install Chef if `--no-provision` is specified [\#48](https://github.com/chef/vagrant-omnibus/pull/48) ([tmatilai](https://github.com/tmatilai))
62
+
63
+ ## [v1.1.2](https://github.com/chef/vagrant-omnibus/tree/v1.1.2) (2013-10-17)
64
+ [Full Changelog](https://github.com/chef/vagrant-omnibus/compare/v1.1.1...v1.1.2)
65
+
66
+ **Merged pull requests:**
67
+
68
+ - Compatibility with vagrant-aws v0.4.0 [\#45](https://github.com/chef/vagrant-omnibus/pull/45) ([tmatilai](https://github.com/tmatilai))
69
+ - Fix development dependencies and Travis tests [\#43](https://github.com/chef/vagrant-omnibus/pull/43) ([tmatilai](https://github.com/tmatilai))
70
+ - Add vagrant-digitalocean to the list of supported providers [\#41](https://github.com/chef/vagrant-omnibus/pull/41) ([tmatilai](https://github.com/tmatilai))
71
+
72
+ ## [v1.1.1](https://github.com/chef/vagrant-omnibus/tree/v1.1.1) (2013-09-04)
73
+ [Full Changelog](https://github.com/chef/vagrant-omnibus/compare/v1.1.0...v1.1.1)
74
+
75
+ **Merged pull requests:**
76
+
77
+ - Document that newer than v1.1.x Vagrant is fine, too [\#37](https://github.com/chef/vagrant-omnibus/pull/37) ([tmatilai](https://github.com/tmatilai))
78
+ - Fix the curl line to install the requested Chef version [\#32](https://github.com/chef/vagrant-omnibus/pull/32) ([tmatilai](https://github.com/tmatilai))
79
+ - no need to do sudo in sudo [\#31](https://github.com/chef/vagrant-omnibus/pull/31) ([matsu911](https://github.com/matsu911))
80
+ - include OpenStack provider into the list of working providers [\#28](https://github.com/chef/vagrant-omnibus/pull/28) ([srenatus](https://github.com/srenatus))
81
+
82
+ ## [v1.1.0](https://github.com/chef/vagrant-omnibus/tree/v1.1.0) (2013-06-21)
83
+ [Full Changelog](https://github.com/chef/vagrant-omnibus/compare/v1.0.2...v1.1.0)
84
+
85
+ **Merged pull requests:**
86
+
87
+ - add support for vmware\_fusion [\#17](https://github.com/chef/vagrant-omnibus/pull/17) ([rjocoleman](https://github.com/rjocoleman))
88
+
89
+ ## [v1.0.2](https://github.com/chef/vagrant-omnibus/tree/v1.0.2) (2013-04-20)
90
+ [Full Changelog](https://github.com/chef/vagrant-omnibus/compare/v1.0.1...v1.0.2)
91
+
92
+ ## [v1.0.1](https://github.com/chef/vagrant-omnibus/tree/v1.0.1) (2013-04-18)
93
+ [Full Changelog](https://github.com/chef/vagrant-omnibus/compare/v1.0.0...v1.0.1)
94
+
95
+ ## [v1.0.0](https://github.com/chef/vagrant-omnibus/tree/v1.0.0) (2013-04-02)
96
+
97
+
98
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
data/Gemfile CHANGED
@@ -1,23 +1,28 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec
4
-
5
- group :development do
6
- # We depend on Vagrant for development, but we don't add it as a
7
- # gem dependency because we expect to be installed within the
8
- # Vagrant environment itself using `vagrant plugin`.
9
- gem 'vagrant', git: 'git://github.com/mitchellh/vagrant.git', tag: 'v1.5.4'
10
- gem 'vagrant-windows', '~> 1.6.0'
11
- end
12
-
13
- group :acceptance do
14
- gem 'vagrant-digitalocean', '~> 0.5'
15
- gem 'vagrant-aws', '~> 0.4'
16
- gem 'vagrant-rackspace', '~> 0.1'
17
- end
18
-
19
- group :docs do
20
- gem 'yard', '~> 0.8'
21
- gem 'redcarpet', '~> 2.2'
22
- gem 'github-markup', '~> 0.7'
23
- end
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ group :development do
6
+ # We depend on Vagrant for development, but we don't add it as a
7
+ # gem dependency because we expect to be installed within the
8
+ # Vagrant environment itself using `vagrant plugin`.
9
+ gem "vagrant", git: "git://github.com/mitchellh/vagrant.git", tag: "v1.8.4"
10
+ gem "listen", "~> 3.0.8"
11
+ end
12
+
13
+ group :acceptance do
14
+ gem "vagrant-digitalocean", "~> 0.5"
15
+ gem "vagrant-aws", "~> 0.4"
16
+ gem "vagrant-rackspace", "~> 0.1"
17
+ end
18
+
19
+ group :docs do
20
+ gem "yard", "~> 0.8"
21
+ gem "redcarpet", "~> 2.2"
22
+ gem "github-markup", "~> 0.7"
23
+ end
24
+
25
+ group :changelog do
26
+ gem "github_changelog_generator"
27
+ gem "rack", "< 2" if Gem::Version.new(RUBY_VERSION) <= Gem::Version.new("2.2.2") # allows for Ruby 2.1.9 compatibility
28
+ end
data/LICENSE CHANGED
@@ -1,201 +1,201 @@
1
- Apache License
2
- Version 2.0, January 2004
3
- http://www.apache.org/licenses/
4
-
5
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
-
7
- 1. Definitions.
8
-
9
- "License" shall mean the terms and conditions for use, reproduction,
10
- and distribution as defined by Sections 1 through 9 of this document.
11
-
12
- "Licensor" shall mean the copyright owner or entity authorized by
13
- the copyright owner that is granting the License.
14
-
15
- "Legal Entity" shall mean the union of the acting entity and all
16
- other entities that control, are controlled by, or are under common
17
- control with that entity. For the purposes of this definition,
18
- "control" means (i) the power, direct or indirect, to cause the
19
- direction or management of such entity, whether by contract or
20
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
- outstanding shares, or (iii) beneficial ownership of such entity.
22
-
23
- "You" (or "Your") shall mean an individual or Legal Entity
24
- exercising permissions granted by this License.
25
-
26
- "Source" form shall mean the preferred form for making modifications,
27
- including but not limited to software source code, documentation
28
- source, and configuration files.
29
-
30
- "Object" form shall mean any form resulting from mechanical
31
- transformation or translation of a Source form, including but
32
- not limited to compiled object code, generated documentation,
33
- and conversions to other media types.
34
-
35
- "Work" shall mean the work of authorship, whether in Source or
36
- Object form, made available under the License, as indicated by a
37
- copyright notice that is included in or attached to the work
38
- (an example is provided in the Appendix below).
39
-
40
- "Derivative Works" shall mean any work, whether in Source or Object
41
- form, that is based on (or derived from) the Work and for which the
42
- editorial revisions, annotations, elaborations, or other modifications
43
- represent, as a whole, an original work of authorship. For the purposes
44
- of this License, Derivative Works shall not include works that remain
45
- separable from, or merely link (or bind by name) to the interfaces of,
46
- the Work and Derivative Works thereof.
47
-
48
- "Contribution" shall mean any work of authorship, including
49
- the original version of the Work and any modifications or additions
50
- to that Work or Derivative Works thereof, that is intentionally
51
- submitted to Licensor for inclusion in the Work by the copyright owner
52
- or by an individual or Legal Entity authorized to submit on behalf of
53
- the copyright owner. For the purposes of this definition, "submitted"
54
- means any form of electronic, verbal, or written communication sent
55
- to the Licensor or its representatives, including but not limited to
56
- communication on electronic mailing lists, source code control systems,
57
- and issue tracking systems that are managed by, or on behalf of, the
58
- Licensor for the purpose of discussing and improving the Work, but
59
- excluding communication that is conspicuously marked or otherwise
60
- designated in writing by the copyright owner as "Not a Contribution."
61
-
62
- "Contributor" shall mean Licensor and any individual or Legal Entity
63
- on behalf of whom a Contribution has been received by Licensor and
64
- subsequently incorporated within the Work.
65
-
66
- 2. Grant of Copyright License. Subject to the terms and conditions of
67
- this License, each Contributor hereby grants to You a perpetual,
68
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
- copyright license to reproduce, prepare Derivative Works of,
70
- publicly display, publicly perform, sublicense, and distribute the
71
- Work and such Derivative Works in Source or Object form.
72
-
73
- 3. Grant of Patent License. Subject to the terms and conditions of
74
- this License, each Contributor hereby grants to You a perpetual,
75
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
- (except as stated in this section) patent license to make, have made,
77
- use, offer to sell, sell, import, and otherwise transfer the Work,
78
- where such license applies only to those patent claims licensable
79
- by such Contributor that are necessarily infringed by their
80
- Contribution(s) alone or by combination of their Contribution(s)
81
- with the Work to which such Contribution(s) was submitted. If You
82
- institute patent litigation against any entity (including a
83
- cross-claim or counterclaim in a lawsuit) alleging that the Work
84
- or a Contribution incorporated within the Work constitutes direct
85
- or contributory patent infringement, then any patent licenses
86
- granted to You under this License for that Work shall terminate
87
- as of the date such litigation is filed.
88
-
89
- 4. Redistribution. You may reproduce and distribute copies of the
90
- Work or Derivative Works thereof in any medium, with or without
91
- modifications, and in Source or Object form, provided that You
92
- meet the following conditions:
93
-
94
- (a) You must give any other recipients of the Work or
95
- Derivative Works a copy of this License; and
96
-
97
- (b) You must cause any modified files to carry prominent notices
98
- stating that You changed the files; and
99
-
100
- (c) You must retain, in the Source form of any Derivative Works
101
- that You distribute, all copyright, patent, trademark, and
102
- attribution notices from the Source form of the Work,
103
- excluding those notices that do not pertain to any part of
104
- the Derivative Works; and
105
-
106
- (d) If the Work includes a "NOTICE" text file as part of its
107
- distribution, then any Derivative Works that You distribute must
108
- include a readable copy of the attribution notices contained
109
- within such NOTICE file, excluding those notices that do not
110
- pertain to any part of the Derivative Works, in at least one
111
- of the following places: within a NOTICE text file distributed
112
- as part of the Derivative Works; within the Source form or
113
- documentation, if provided along with the Derivative Works; or,
114
- within a display generated by the Derivative Works, if and
115
- wherever such third-party notices normally appear. The contents
116
- of the NOTICE file are for informational purposes only and
117
- do not modify the License. You may add Your own attribution
118
- notices within Derivative Works that You distribute, alongside
119
- or as an addendum to the NOTICE text from the Work, provided
120
- that such additional attribution notices cannot be construed
121
- as modifying the License.
122
-
123
- You may add Your own copyright statement to Your modifications and
124
- may provide additional or different license terms and conditions
125
- for use, reproduction, or distribution of Your modifications, or
126
- for any such Derivative Works as a whole, provided Your use,
127
- reproduction, and distribution of the Work otherwise complies with
128
- the conditions stated in this License.
129
-
130
- 5. Submission of Contributions. Unless You explicitly state otherwise,
131
- any Contribution intentionally submitted for inclusion in the Work
132
- by You to the Licensor shall be under the terms and conditions of
133
- this License, without any additional terms or conditions.
134
- Notwithstanding the above, nothing herein shall supersede or modify
135
- the terms of any separate license agreement you may have executed
136
- with Licensor regarding such Contributions.
137
-
138
- 6. Trademarks. This License does not grant permission to use the trade
139
- names, trademarks, service marks, or product names of the Licensor,
140
- except as required for reasonable and customary use in describing the
141
- origin of the Work and reproducing the content of the NOTICE file.
142
-
143
- 7. Disclaimer of Warranty. Unless required by applicable law or
144
- agreed to in writing, Licensor provides the Work (and each
145
- Contributor provides its Contributions) on an "AS IS" BASIS,
146
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
- implied, including, without limitation, any warranties or conditions
148
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
- PARTICULAR PURPOSE. You are solely responsible for determining the
150
- appropriateness of using or redistributing the Work and assume any
151
- risks associated with Your exercise of permissions under this License.
152
-
153
- 8. Limitation of Liability. In no event and under no legal theory,
154
- whether in tort (including negligence), contract, or otherwise,
155
- unless required by applicable law (such as deliberate and grossly
156
- negligent acts) or agreed to in writing, shall any Contributor be
157
- liable to You for damages, including any direct, indirect, special,
158
- incidental, or consequential damages of any character arising as a
159
- result of this License or out of the use or inability to use the
160
- Work (including but not limited to damages for loss of goodwill,
161
- work stoppage, computer failure or malfunction, or any and all
162
- other commercial damages or losses), even if such Contributor
163
- has been advised of the possibility of such damages.
164
-
165
- 9. Accepting Warranty or Additional Liability. While redistributing
166
- the Work or Derivative Works thereof, You may choose to offer,
167
- and charge a fee for, acceptance of support, warranty, indemnity,
168
- or other liability obligations and/or rights consistent with this
169
- License. However, in accepting such obligations, You may act only
170
- on Your own behalf and on Your sole responsibility, not on behalf
171
- of any other Contributor, and only if You agree to indemnify,
172
- defend, and hold each Contributor harmless for any liability
173
- incurred by, or claims asserted against, such Contributor by reason
174
- of your accepting any such warranty or additional liability.
175
-
176
- END OF TERMS AND CONDITIONS
177
-
178
- APPENDIX: How to apply the Apache License to your work.
179
-
180
- To apply the Apache License to your work, attach the following
181
- boilerplate notice, with the fields enclosed by brackets "[]"
182
- replaced with your own identifying information. (Don't include
183
- the brackets!) The text should be enclosed in the appropriate
184
- comment syntax for the file format. We also recommend that a
185
- file or class name and description of purpose be included on the
186
- same "printed page" as the copyright notice for easier
187
- identification within third-party archives.
188
-
189
- Copyright [yyyy] [name of copyright owner]
190
-
191
- Licensed under the Apache License, Version 2.0 (the "License");
192
- you may not use this file except in compliance with the License.
193
- You may obtain a copy of the License at
194
-
195
- http://www.apache.org/licenses/LICENSE-2.0
196
-
197
- Unless required by applicable law or agreed to in writing, software
198
- distributed under the License is distributed on an "AS IS" BASIS,
199
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
- See the License for the specific language governing permissions and
201
- limitations under the License.
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.