vagrant-parallels 0.0.1.dev → 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +30 -8
- data/lib/vagrant-parallels/version.rb +1 -1
- data/vagrant-parallels.gemspec +4 -4
- metadata +20 -7
- checksums.yaml +0 -15
data/README.md
CHANGED
@@ -3,23 +3,27 @@
|
|
3
3
|
This is a [Vagrant](http://www.vagrantup.com) 1.2+ plugin that adds an [Parallels](http://www.parallels.com/products/desktop/)
|
4
4
|
provider to Vagrant, allowing Vagrant to control and provision machines using Parallels insead of the default Virtualbox.
|
5
5
|
|
6
|
-
|
6
|
+
## Note
|
7
|
+
|
8
|
+
This project is still in active development and not all vagrant features have been developed, please report any issues you might find.
|
9
|
+
Almost all features are available except for exporting/packaging VM's this will be available soon [isA](http://en.wikipedia.org/wiki/In_Shaa%27_Allah) (ان شاء الله)
|
10
|
+
|
11
|
+
We look forward to hearing from you with any issues or features, Thank you
|
7
12
|
|
8
13
|
## Usage
|
9
14
|
|
10
15
|
Install using standard Vagrant 1.1+ plugin installation methods. After
|
11
|
-
installing, `vagrant up` and specify the `parallels` provider. An example is
|
12
|
-
shown below.
|
16
|
+
installing, then do a `vagrant up` and specify the `parallels` provider. An example is shown below.
|
13
17
|
|
14
18
|
```
|
15
|
-
$ vagrant plugin install vagrant-parallels
|
19
|
+
$ vagrant plugin install vagrant-parallels --plugin-prerelease
|
16
20
|
...
|
21
|
+
$ vagrant init
|
17
22
|
$ vagrant up --provider=parallels
|
18
23
|
...
|
19
24
|
```
|
20
25
|
|
21
|
-
|
22
|
-
box file for Vagrant.
|
26
|
+
You need to have a paralles compatible box file installed before doing a `vagrnat up`, please refer to the coming section for instaructions.
|
23
27
|
|
24
28
|
## Box Format
|
25
29
|
|
@@ -27,14 +31,27 @@ Every provider in Vagrant must introduce a custom box format. This
|
|
27
31
|
provider introduces `parallels` boxes. You can download one using this [link](https://s3-eu-west-1.amazonaws.com/vagrant-parallels/devbox.box).
|
28
32
|
That directory also contains instructions on how to build a box.
|
29
33
|
|
34
|
+
Download the box file, then use vagrant to add the downloaded box using this command. Remember to use `bundle exec` before `vagrant` command if you are in development mode
|
35
|
+
|
36
|
+
```
|
37
|
+
$ wget https://s3-eu-west-1.amazonaws.com/vagrant-parallels/devbox.box
|
38
|
+
$ vagrant box add devbox devbox.box --provider=parallels
|
39
|
+
```
|
40
|
+
|
30
41
|
The box format is basically just the required `metadata.json` file
|
31
42
|
along with a `Vagrantfile` that does default settings for the
|
32
43
|
provider-specific configuration for this provider.
|
33
44
|
|
34
45
|
## Development
|
35
46
|
|
36
|
-
To work on the `vagrant-parallels` plugin, clone this repository out
|
37
|
-
|
47
|
+
To work on the `vagrant-parallels` plugin, clone this repository out
|
48
|
+
|
49
|
+
```
|
50
|
+
$ git clone https://github.com/yshahin/vagrant-parallels
|
51
|
+
$ cd vagrant-parallels
|
52
|
+
```
|
53
|
+
|
54
|
+
Use [Bundler](http://gembundler.com) to get the dependencies:
|
38
55
|
|
39
56
|
```
|
40
57
|
$ bundle
|
@@ -50,10 +67,15 @@ If those pass, you're ready to start developing the plugin. You can test
|
|
50
67
|
the plugin without installing it into your Vagrant environment by just
|
51
68
|
creating a `Vagrantfile` in the top level of this directory (it is gitignored)
|
52
69
|
and add the following line to your `Vagrantfile`
|
70
|
+
|
53
71
|
```ruby
|
54
72
|
Vagrant.require_plugin "vagrant-parallels"
|
55
73
|
```
|
74
|
+
|
75
|
+
You need to have a compatable box file installed, refer to box file section
|
76
|
+
|
56
77
|
Use bundler to execute Vagrant:
|
78
|
+
|
57
79
|
```
|
58
80
|
$ bundle exec vagrant up --provider=parallels
|
59
81
|
```
|
data/vagrant-parallels.gemspec
CHANGED
@@ -6,8 +6,8 @@ Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "vagrant-parallels"
|
7
7
|
spec.version = VagrantPlugins::Parallels::VERSION
|
8
8
|
spec.platform = Gem::Platform::RUBY
|
9
|
-
spec.authors = ["Youssef Shahin"]
|
10
|
-
spec.email = ["yshahin@gmail.com"]
|
9
|
+
spec.authors = ["Youssef Shahin", "Kevin Kaland"]
|
10
|
+
spec.email = ["yshahin@gmail.com", "kevin@wizonesolutions.com"]
|
11
11
|
spec.description = %q{Enables Vagrant to manage Parallels machines.}
|
12
12
|
spec.summary = %q{Enables Vagrant to manage Parallels machines.}
|
13
13
|
spec.homepage = "http://github.com/yshahin/vagrant-parallels"
|
@@ -55,5 +55,5 @@ Gem::Specification.new do |spec|
|
|
55
55
|
|
56
56
|
spec.files = unignored_files
|
57
57
|
spec.executables = unignored_files.map { |f| f[/^bin\/(.*)/, 1] }.compact
|
58
|
-
spec.require_path =
|
59
|
-
end
|
58
|
+
spec.require_path = "lib"
|
59
|
+
end
|
metadata
CHANGED
@@ -1,18 +1,21 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-parallels
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.1
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Youssef Shahin
|
9
|
+
- Kevin Kaland
|
8
10
|
autorequire:
|
9
11
|
bindir: bin
|
10
12
|
cert_chain: []
|
11
|
-
date: 2013-09-
|
13
|
+
date: 2013-09-21 00:00:00.000000000 Z
|
12
14
|
dependencies:
|
13
15
|
- !ruby/object:Gem::Dependency
|
14
16
|
name: bundler
|
15
17
|
requirement: !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
16
19
|
requirements:
|
17
20
|
- - ~>
|
18
21
|
- !ruby/object:Gem::Version
|
@@ -20,6 +23,7 @@ dependencies:
|
|
20
23
|
type: :development
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
23
27
|
requirements:
|
24
28
|
- - ~>
|
25
29
|
- !ruby/object:Gem::Version
|
@@ -27,6 +31,7 @@ dependencies:
|
|
27
31
|
- !ruby/object:Gem::Dependency
|
28
32
|
name: rake
|
29
33
|
requirement: !ruby/object:Gem::Requirement
|
34
|
+
none: false
|
30
35
|
requirements:
|
31
36
|
- - ! '>='
|
32
37
|
- !ruby/object:Gem::Version
|
@@ -34,6 +39,7 @@ dependencies:
|
|
34
39
|
type: :development
|
35
40
|
prerelease: false
|
36
41
|
version_requirements: !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
37
43
|
requirements:
|
38
44
|
- - ! '>='
|
39
45
|
- !ruby/object:Gem::Version
|
@@ -41,6 +47,7 @@ dependencies:
|
|
41
47
|
- !ruby/object:Gem::Dependency
|
42
48
|
name: rspec-core
|
43
49
|
requirement: !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
44
51
|
requirements:
|
45
52
|
- - ~>
|
46
53
|
- !ruby/object:Gem::Version
|
@@ -48,6 +55,7 @@ dependencies:
|
|
48
55
|
type: :development
|
49
56
|
prerelease: false
|
50
57
|
version_requirements: !ruby/object:Gem::Requirement
|
58
|
+
none: false
|
51
59
|
requirements:
|
52
60
|
- - ~>
|
53
61
|
- !ruby/object:Gem::Version
|
@@ -55,6 +63,7 @@ dependencies:
|
|
55
63
|
- !ruby/object:Gem::Dependency
|
56
64
|
name: rspec-expectations
|
57
65
|
requirement: !ruby/object:Gem::Requirement
|
66
|
+
none: false
|
58
67
|
requirements:
|
59
68
|
- - ~>
|
60
69
|
- !ruby/object:Gem::Version
|
@@ -62,6 +71,7 @@ dependencies:
|
|
62
71
|
type: :development
|
63
72
|
prerelease: false
|
64
73
|
version_requirements: !ruby/object:Gem::Requirement
|
74
|
+
none: false
|
65
75
|
requirements:
|
66
76
|
- - ~>
|
67
77
|
- !ruby/object:Gem::Version
|
@@ -69,6 +79,7 @@ dependencies:
|
|
69
79
|
- !ruby/object:Gem::Dependency
|
70
80
|
name: rspec-mocks
|
71
81
|
requirement: !ruby/object:Gem::Requirement
|
82
|
+
none: false
|
72
83
|
requirements:
|
73
84
|
- - ~>
|
74
85
|
- !ruby/object:Gem::Version
|
@@ -76,6 +87,7 @@ dependencies:
|
|
76
87
|
type: :development
|
77
88
|
prerelease: false
|
78
89
|
version_requirements: !ruby/object:Gem::Requirement
|
90
|
+
none: false
|
79
91
|
requirements:
|
80
92
|
- - ~>
|
81
93
|
- !ruby/object:Gem::Version
|
@@ -83,6 +95,7 @@ dependencies:
|
|
83
95
|
description: Enables Vagrant to manage Parallels machines.
|
84
96
|
email:
|
85
97
|
- yshahin@gmail.com
|
98
|
+
- kevin@wizonesolutions.com
|
86
99
|
executables: []
|
87
100
|
extensions: []
|
88
101
|
extra_rdoc_files: []
|
@@ -133,26 +146,26 @@ files:
|
|
133
146
|
homepage: http://github.com/yshahin/vagrant-parallels
|
134
147
|
licenses:
|
135
148
|
- MIT
|
136
|
-
metadata: {}
|
137
149
|
post_install_message:
|
138
150
|
rdoc_options: []
|
139
151
|
require_paths:
|
140
|
-
-
|
152
|
+
- lib
|
141
153
|
required_ruby_version: !ruby/object:Gem::Requirement
|
154
|
+
none: false
|
142
155
|
requirements:
|
143
156
|
- - ! '>='
|
144
157
|
- !ruby/object:Gem::Version
|
145
158
|
version: '0'
|
146
159
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
160
|
+
none: false
|
147
161
|
requirements:
|
148
162
|
- - ! '>='
|
149
163
|
- !ruby/object:Gem::Version
|
150
164
|
version: 1.3.6
|
151
165
|
requirements: []
|
152
166
|
rubyforge_project: vagrant-parallels
|
153
|
-
rubygems_version:
|
167
|
+
rubygems_version: 1.8.25
|
154
168
|
signing_key:
|
155
|
-
specification_version:
|
169
|
+
specification_version: 3
|
156
170
|
summary: Enables Vagrant to manage Parallels machines.
|
157
171
|
test_files: []
|
158
|
-
has_rdoc:
|
checksums.yaml
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
---
|
2
|
-
!binary "U0hBMQ==":
|
3
|
-
metadata.gz: !binary |-
|
4
|
-
NWIyZThhOTczYmI0NDM2ZTI1YmZhMjM2NDc1Yzk1MDM5YWRmMmNhMg==
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
NGFiMTNiMWRjZTMzZTBhOTEwMzZkZWQ1OWNlNTMyNDQ4MTk2NTZmMQ==
|
7
|
-
!binary "U0hBNTEy":
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
OTY5NWM4MjE3NGE2YTBhYzBiNjZlM2RiYjg3Nzk2YWY1YTdiOWJhNjBmZmFm
|
10
|
-
YzY0M2ZlNjQ2NDdiMWJmYjIzNGE5ODljZDQ2OGNhYzdhZDQzOTE4N2I2YjU5
|
11
|
-
YTQwM2MxYmU2YzNlNjkyMzU0MzhjMWU5NDc1YTFlYjA2OWQ2YTg=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
MDg5MGVmMDVmZjFiNTk3NzA1NDA2OTA1MTcyOWJiNjgzMWE4YWQ2NzYxOWFl
|
14
|
-
NDdkOTc4Njc4ZjllZGYyYjJhNWE0NDIxYzExNTEwMTNjZmRmYjg5MGNiYzdj
|
15
|
-
NDc2NmFlNzUyZDM1MmY3ODRkNTY1ZmUzNzQ5NjJmOTg1MDE3MmI=
|