vagrant-nix 0.0.7 → 0.0.8

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: e080b23798c23a56ef2ffed36df9f69592a5e4d2
4
- data.tar.gz: 59ce172e270b5021cc4126e2bc46a3666c3f71d4
3
+ metadata.gz: 52024355d07ac9e59f08e4b8d165f995f5a3221a
4
+ data.tar.gz: 802bb89e6955a0a529e6476531ce648fa4adf61a
5
5
  SHA512:
6
- metadata.gz: 871d668d09193fd66d556284e3de3ab0f32283652191cf9b9874d3d987be56b040d77fa272bc1ff8c34b207e6e9ad323e75768b63e6101037c15ec33ea4db052
7
- data.tar.gz: f793b2b27aee1236d07b3044a9621140dd2a0ecde69ea790f2677207964a55286aede769c9b987b3d5781656438241ed02b8b4a7958437626d5cc3c02e47a715
6
+ metadata.gz: d4651e4a7b1de4d93913f8e77e8b395b2a603abe9fb8165342f5fa387fe43bdefb1af589b43db5542ce50e45972b0d7037b6adfd2b3514dd1007f972eeaaba4c
7
+ data.tar.gz: 14317df7836c70c2c5c94494e020d4c66a7ab8f14d9e1b252d4b9fee0ee8abdda88383bd336aa220cb2dee19f81cc855f079ff4fe1fc7dd5f3bcb4cf8790f19f
data/README.md CHANGED
@@ -98,7 +98,7 @@ In nixos we don't mess around with the files in `/etc` instead we write expressi
98
98
 
99
99
  This plugin sets some ground rules for nixos boxes to keep this configuration clean and provisioning possible.
100
100
 
101
- Box creators should ensure that their `configuration.nix` file imports an nix module `/etc/nixos/vagrant.nix` which will be overwritten by `vagrant-nixos` during `vagrant up` or `vagrant provision`.
101
+ Box creators should ensure that their `configuration.nix` file imports an nix module `/etc/nixos/vagrant.nix` which will be overwritten by `vagrant-nix` during `vagrant up` or `vagrant provision`.
102
102
 
103
103
  See the configuration in our [NixOS packer template](http://github.com/oxdi/nixos) for an example.
104
104
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Nixos
3
- VERSION = "0.0.7"
3
+ VERSION = "0.0.8"
4
4
  end
5
5
  end
@@ -1,7 +1,7 @@
1
- require "vagrant-nixos/version"
2
- require "vagrant-nixos/plugin"
3
- require "vagrant-nixos/util"
4
- require "vagrant-nixos/nix"
1
+ require "vagrant-nix/version"
2
+ require "vagrant-nix/plugin"
3
+ require "vagrant-nix/util"
4
+ require "vagrant-nix/nix"
5
5
 
6
6
  module VagrantPlugins
7
7
  module Nixos
@@ -1,7 +1,7 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'vagrant-nixos/version'
4
+ require 'vagrant-nix/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "vagrant-nix"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-nix
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Farmiloe
@@ -65,17 +65,17 @@ files:
65
65
  - LICENSE.txt
66
66
  - README.md
67
67
  - Rakefile
68
- - lib/vagrant-nixos.rb
69
- - lib/vagrant-nixos/cap/change_host_name.rb
70
- - lib/vagrant-nixos/cap/configure_networks.rb
71
- - lib/vagrant-nixos/config.rb
72
- - lib/vagrant-nixos/guest.rb
73
- - lib/vagrant-nixos/nix.rb
74
- - lib/vagrant-nixos/plugin.rb
75
- - lib/vagrant-nixos/provisioner.rb
76
- - lib/vagrant-nixos/util.rb
77
- - lib/vagrant-nixos/version.rb
78
- - vagrant-nixos.gemspec
68
+ - lib/vagrant-nix.rb
69
+ - lib/vagrant-nix/cap/change_host_name.rb
70
+ - lib/vagrant-nix/cap/configure_networks.rb
71
+ - lib/vagrant-nix/config.rb
72
+ - lib/vagrant-nix/guest.rb
73
+ - lib/vagrant-nix/nix.rb
74
+ - lib/vagrant-nix/plugin.rb
75
+ - lib/vagrant-nix/provisioner.rb
76
+ - lib/vagrant-nix/util.rb
77
+ - lib/vagrant-nix/version.rb
78
+ - vagrant-nix.gemspec
79
79
  homepage: ''
80
80
  licenses:
81
81
  - MIT