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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4307eaa387b3de9e14771895cb18f1e7d77010e5
4
- data.tar.gz: ee3af7cf57704b6e792c315e2247ff00f8acc49b
3
+ metadata.gz: 196467dafc7d0fb838929cfdfebc9052cd810801
4
+ data.tar.gz: 25537cefd79b74d9b6ca8111c909daa2c8750891
5
5
  SHA512:
6
- metadata.gz: 7829b77b92087c4354d041f3988a852c65741ae747bb6418e09bc826f260c9ac4d3795e43f18ffd39e556785800ca798833490f3d06a831dff0ba4908084c387
7
- data.tar.gz: 68913f04ebb573382d6d9d61cb6730c8af1bc72b781fae05df8af4814624c24e1fdda7c7826ab7fc4fd20cfeeae6bad74abc4eed38f9633fbb9bba8ac99dea82
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
@@ -23,7 +23,7 @@ GIT
23
23
  PATH
24
24
  remote: .
25
25
  specs:
26
- vagrant-templated (0.1.3)
26
+ vagrant-templated (0.1.5)
27
27
 
28
28
  GEM
29
29
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,4 +1,7 @@
1
- # Vagrant Templated Plugin
1
+ [![GitHub version](https://badge.fury.io/gh/afaundez%2Fvagrant-templated.svg)](https://badge.fury.io/gh/afaundez%2Fvagrant-templated)
2
+ [![Gem Version](https://badge.fury.io/rb/vagrant-templated.svg)](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
- config.omnibus.chef_version = :latest
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: 12.21.1
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
- timezone-ii: ~> 0.2.0
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
- - timezone-ii
19
+ - timezone_iii
20
20
  - ruby_build
21
21
  - ruby_rbenv::user
22
22
  - nodejs
23
23
  - postgresql::server
24
24
  json:
25
- tz: UTC
25
+ timezone: UTC
26
26
  rbenv:
27
27
  user_installs:
28
28
  - user: vagrant
@@ -1,5 +1,5 @@
1
1
  module Vagrant
2
2
  module Templated
3
- VERSION = '0.1.4'
3
+ VERSION = '0.1.5'
4
4
  end
5
5
  end
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
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-05 00:00:00.000000000 Z
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
@@ -1,7 +0,0 @@
1
- DEPENDENCIES
2
- apt (~> 6.1.3)
3
- timezone_iii (~> 1.0.4)
4
-
5
- GRAPH
6
- apt (6.1.3)
7
- timezone_iii (1.0.4)
@@ -1,9 +0,0 @@
1
- DEPENDENCIES
2
- apt (~> 6.1.3)
3
- pyenv (~> 0.1.4)
4
- timezone_iii (~> 1.0.4)
5
-
6
- GRAPH
7
- apt (6.1.3)
8
- pyenv (0.1.4)
9
- timezone_iii (1.0.4)