vagrant-templated 0.1.4 → 0.1.5
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 +7 -0
- data/CONTRIBUTING.md +17 -0
- data/Gemfile.lock +1 -1
- data/README.md +4 -1
- data/Vagrantfile +2 -1
- data/config/templates/attributes/rails5.yml +4 -4
- data/lib/vagrant-templated/version.rb +1 -1
- metadata +3 -4
- data/spec/tmp/basic/Berksfile.lock +0 -7
- data/spec/tmp/django1.11/Berksfile.lock +0 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 196467dafc7d0fb838929cfdfebc9052cd810801
|
|
4
|
+
data.tar.gz: 25537cefd79b74d9b6ca8111c909daa2c8750891
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 68e1887a3e31f12cde65436d300b8a211df90f13f328e63ee9792a3fa758d04c31c4f472f7aa26700819bd1999e332090fcd2247077f8a483892149265450767
|
|
7
|
+
data.tar.gz: 74df6feaef448cf17bdf717e3dcd4655449f4dda4f8f58807b4ec1a8684db77d30b52338c32a62f2a2da62cc923858f9b4e9eed47eed65a2d967d9a6e3679fea
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.5] - 2017-08-07
|
|
10
|
+
### Added
|
|
11
|
+
- Update Vagrantfile from vagrant-templated
|
|
12
|
+
- Moving from timezone-ii to timezone_iii recipe
|
|
13
|
+
- Add badges at readme
|
|
14
|
+
- Add contributing guide
|
|
15
|
+
|
|
9
16
|
## [0.1.4] - 2017-08-05
|
|
10
17
|
### Added
|
|
11
18
|
- Test all templates
|
data/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Contributing
|
|
2
|
+
|
|
3
|
+
When contributing to this repository, please first discuss the change you wish to make via issue,
|
|
4
|
+
email, or any other method with the owners of this repository before making a change.
|
|
5
|
+
|
|
6
|
+
Please note we have a [code of conduct](CODE_OF_CONDUCT.md), please follow it in all your interactions with the project.
|
|
7
|
+
|
|
8
|
+
## Pull Request Process
|
|
9
|
+
|
|
10
|
+
1. Ensure any install or build dependencies are removed before the end of the layer when doing a
|
|
11
|
+
build.
|
|
12
|
+
2. Update the README.md with details of changes to the interface, this includes new environment
|
|
13
|
+
variables, exposed ports, useful file locations and container parameters.
|
|
14
|
+
3. Increase the version numbers in any examples files and the README.md to the new version that this
|
|
15
|
+
Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/).
|
|
16
|
+
4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you
|
|
17
|
+
do not have permission to do that, you may request the second reviewer to merge it for you.
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
[](https://badge.fury.io/gh/afaundez%2Fvagrant-templated)
|
|
2
|
+
[](https://badge.fury.io/rb/vagrant-templated)
|
|
3
|
+
|
|
4
|
+
# VAGRANT TEMPLATED PLUGIN
|
|
2
5
|
|
|
3
6
|
Vagrant Templated is [Vagrant](https://www.vagrantup.com/downloads.html) plugin that add a new vagrant action to start a new Project. You will be able to choose between templates and start with a project with a Vagrantfile (and Berksfile) with cookbooks and configurations.
|
|
4
7
|
|
data/Vagrantfile
CHANGED
|
@@ -10,7 +10,8 @@ end
|
|
|
10
10
|
|
|
11
11
|
Vagrant.configure('2') do |config|
|
|
12
12
|
config.vm.box = 'bento/ubuntu-16.04'
|
|
13
|
-
|
|
13
|
+
|
|
14
|
+
config.omnibus.chef_version = 'latest'
|
|
14
15
|
config.vm.provision :chef_solo do |chef|
|
|
15
16
|
chef.add_recipe 'apt'
|
|
16
17
|
chef.add_recipe 'ruby_build'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
rails5:
|
|
2
2
|
omnibus:
|
|
3
|
-
chef_version:
|
|
3
|
+
chef_version: latest
|
|
4
4
|
network:
|
|
5
5
|
private_network:
|
|
6
6
|
ip: 192.168.33.101
|
|
@@ -9,20 +9,20 @@ rails5:
|
|
|
9
9
|
berkself:
|
|
10
10
|
cookbooks:
|
|
11
11
|
apt: ~> 6.1.0
|
|
12
|
-
|
|
12
|
+
timezone_iii: ~> 1.0.4
|
|
13
13
|
ruby_rbenv: ~> 1.2.0
|
|
14
14
|
nodejs: ~> 4.0.0
|
|
15
15
|
postgresql: ~> 6.1.1
|
|
16
16
|
chef:
|
|
17
17
|
recipes:
|
|
18
18
|
- apt
|
|
19
|
-
-
|
|
19
|
+
- timezone_iii
|
|
20
20
|
- ruby_build
|
|
21
21
|
- ruby_rbenv::user
|
|
22
22
|
- nodejs
|
|
23
23
|
- postgresql::server
|
|
24
24
|
json:
|
|
25
|
-
|
|
25
|
+
timezone: UTC
|
|
26
26
|
rbenv:
|
|
27
27
|
user_installs:
|
|
28
28
|
- user: vagrant
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-templated
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Álvaro Faúndez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-08-
|
|
11
|
+
date: 2017-08-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -68,6 +68,7 @@ files:
|
|
|
68
68
|
- Berksfile.lock
|
|
69
69
|
- CHANGELOG.md
|
|
70
70
|
- CODE_OF_CONDUCT.md
|
|
71
|
+
- CONTRIBUTING.md
|
|
71
72
|
- Gemfile
|
|
72
73
|
- Gemfile.lock
|
|
73
74
|
- LICENSE.txt
|
|
@@ -94,10 +95,8 @@ files:
|
|
|
94
95
|
- spec/tmp/Berksfile
|
|
95
96
|
- spec/tmp/Vagrantfile
|
|
96
97
|
- spec/tmp/basic/Berksfile
|
|
97
|
-
- spec/tmp/basic/Berksfile.lock
|
|
98
98
|
- spec/tmp/basic/Vagrantfile
|
|
99
99
|
- spec/tmp/django1.11/Berksfile
|
|
100
|
-
- spec/tmp/django1.11/Berksfile.lock
|
|
101
100
|
- spec/tmp/django1.11/Vagrantfile
|
|
102
101
|
- spec/vagrant_templated_spec.rb
|
|
103
102
|
- vagrant-templated.gemspec
|