vagrant-qubes 0.0.1 → 0.0.2

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
  SHA256:
3
- metadata.gz: 0f6142494a93149537680a6e20b96dc4b12e9f9d238047dca8ee7def967ba6e8
4
- data.tar.gz: 298d52208e83ec1a0f08d9b327893506fa8f6e548e1f11d02205dd5fb5f59888
3
+ metadata.gz: 36591110e893bcd699e50f7117d8eb6f9226b211ff230110bcccafaa3228a27a
4
+ data.tar.gz: c55ca5a7611a4d0ae2dafec3b7ec17d92882565f48ef9e318c18cdc5e8305c3b
5
5
  SHA512:
6
- metadata.gz: 7fade5c518b6d4373627986e9fadb73ba4a637eaec0fcb0798169e7925217ab6125b120434827727dcf94b79d67dee2da034af5263298b678772e4133cca66e6
7
- data.tar.gz: f2d606de83270ac0235f2922660fd65b9ae0108fd3b8479a2631fa08bb06cdd63bc55845c42ac89e210c4883b7e6ece21699a6f77d9cc18a00ebff69e3dbeaf2
6
+ metadata.gz: 1b83db0042b8f98e5ebb804ac7522f74f485a8801b8a1db026126a04749722d3a7628fe21040d5ef2a86d4e6794985596f14223db0389c7d03444374dcbb266f
7
+ data.tar.gz: 2ad47780a849ebb2471c33024b260e7ec6e2c6ccc3d9347c03bcb61c675b25cb211d33d79f0a855cf5b783fe9fc0e63d1d2cb09be5abaab183f3c18f6ec5132f
data/Gemfile.lock CHANGED
@@ -28,7 +28,8 @@ GIT
28
28
  PATH
29
29
  remote: .
30
30
  specs:
31
- vagrant-qubes (0.0.1)
31
+ vagrant-qubes (0.0.2)
32
+ i18n (~> 1.0)
32
33
  log4r (~> 1.1)
33
34
 
34
35
  GEM
data/README.md CHANGED
@@ -1,10 +1,12 @@
1
1
  # Vagrant::Qubes
2
2
 
3
- This is a vagrant provider for qubes.
3
+ This is not fully thought through or fully secured, use it at your own risk!
4
4
 
5
- If you don't know what qubes is, this is probably not somehting that you will want to experiment with yet.
5
+ This my first attempt at writing a vagrant provider for qubes, and indeed one of my early attempts at writing anything in Ruby. If you don't know what qubes is, this is probably not somehting that you will want to experiment with yet.
6
6
 
7
- The structure, and large chunks of code in here have been inspired by (and in some cases copied from) Jonathan Senkerik's ESXi plugin "vagrant-vmware-esxi" https://github.com/josenk/vagrant-vmware-esxi without the help of that I wouldn't have been able to put this together.
7
+ The structure, and large chunks of code in here have been inspired by Jonathan Senkerik's ESXi plugin "vagrant-vmware-esxi" https://github.com/josenk/vagrant-vmware-esxi without the help of that I wouldn't have been able to put this together.
8
+
9
+ If you are looking at this, it will need some setup on your Qubes machine in order to work, I suggest you take a look at https://github.com/gp397/salt-for-vagrant-qubes which is my first attempt at using [Saltstack](https://saltstack.com) to setup my Vagrant test lab.
8
10
 
9
11
  Right now, this should be considered alpha at best, basic "up" and "destroy" works for a minimally configured AppVM based on a Vagrantfile along these lines
10
12
 
@@ -35,6 +37,10 @@ Vagrant.configure("2") do |config|
35
37
  end
36
38
  ```
37
39
 
40
+ Provision etc. does not yet work due to networking configuration needed to enable that.
41
+
42
+ This is not fully thought through or fully secured, use it at your own risk!
43
+
38
44
  ## Installation
39
45
 
40
46
  Add this line to your application's Gemfile:
@@ -55,13 +61,10 @@ Or install it yourself as:
55
61
 
56
62
  TODO: Write usage instructions here
57
63
 
58
- ## Development
59
-
60
64
  ## Contributing
61
65
 
62
66
  Bug reports and pull requests are welcome on GitHub at https://github.com/gp397/vagrant-qubes. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/gp397/vagrant-qubes/blob/master/CODE_OF_CONDUCT.md).
63
67
 
64
-
65
68
  ## License
66
69
 
67
70
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -1,6 +1,6 @@
1
1
  module VagrantPlugins
2
2
  module Qubes
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  $vagrant_qubes_version = VERSION
5
5
  end
6
6
  end
@@ -21,6 +21,9 @@ Gem::Specification.new do |spec|
21
21
  spec.metadata["changelog_uri"] = spec.homepage
22
22
 
23
23
  spec.add_runtime_dependency 'log4r', '~> 1.1'
24
+ spec.add_runtime_dependency 'i18n', '~> 1.0'
25
+
26
+ spec.add_development_dependency 'rake'
24
27
 
25
28
  # Specify which files should be added to the gem when it is released.
26
29
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-qubes
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
  - Gary Pentland
@@ -24,6 +24,34 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: i18n
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
27
55
  description: A plugin for vagrant to provision machines within a qubes environment
28
56
  email:
29
57
  - ''