vagrant-managed-servers 0.4.0 → 0.4.1
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/.travis.yml +1 -1
- data/CHANGELOG.md +5 -0
- data/Gemfile +1 -3
- data/Rakefile +7 -16
- data/lib/vagrant-managed-servers/action/sync_folders.rb +3 -1
- data/lib/vagrant-managed-servers/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 290161bcc954677ec42fc73af47b19fdfe0c8f94
|
|
4
|
+
data.tar.gz: 6e55fa0b20fd577b7c53a0b1bc1b34c1e3392409
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cec528cb7901d886aaff71cb52d82e9b7624849dd93a4f71c567bea39b6af2c3a77b1b31eda7a4ff9551a88213de84f9ed01bae0c16519a04c1ab30e65bc14dc
|
|
7
|
+
data.tar.gz: de2206e2c8567af32ed4c81a6857b3141a159c0338bf01b33d7c5e347893eeba09bd5d7295328430e1405b97eb00697b02ace0d4c46285a76951e95e71775909
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
|
|
2
2
|
# Changelog
|
|
3
3
|
|
|
4
|
+
## 0.4.1 (released 2014-11-17)
|
|
5
|
+
|
|
6
|
+
* fix missing parameters in translation for winrm ([#30](https://github.com/tknerr/vagrant-managed-servers/pull/30), thanks @chrisbaldauf!)
|
|
7
|
+
* clean up Rakefile and fix travis-ci build
|
|
8
|
+
|
|
4
9
|
## 0.4.0 (released 2014-11-15)
|
|
5
10
|
|
|
6
11
|
* update licensing information and add license to gemspec
|
data/Gemfile
CHANGED
|
@@ -6,9 +6,7 @@ group :development do
|
|
|
6
6
|
# We depend on Vagrant for development, but we don't add it as a
|
|
7
7
|
# gem dependency because we expect to be installed within the
|
|
8
8
|
# Vagrant environment itself using `vagrant plugin`.
|
|
9
|
-
gem "vagrant", "
|
|
10
|
-
git: "https://github.com/mitchellh/vagrant.git",
|
|
11
|
-
ref: "v1.6.3"
|
|
9
|
+
gem "vagrant", git: "https://github.com/mitchellh/vagrant.git"
|
|
12
10
|
end
|
|
13
11
|
|
|
14
12
|
group :plugins do
|
data/Rakefile
CHANGED
|
@@ -1,21 +1,12 @@
|
|
|
1
|
-
require '
|
|
2
|
-
require 'bundler/setup'
|
|
1
|
+
require 'bundler/gem_tasks'
|
|
3
2
|
require 'rspec/core/rake_task'
|
|
4
3
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Dir.chdir(File.expand_path("../", __FILE__))
|
|
12
|
-
|
|
13
|
-
# This installs the tasks that help with gem creation and
|
|
14
|
-
# publishing.
|
|
15
|
-
Bundler::GemHelper.install_tasks
|
|
16
|
-
|
|
17
|
-
# Install the `spec` task so that we can run tests.
|
|
18
|
-
RSpec::Core::RakeTask.new
|
|
4
|
+
RSpec::Core::RakeTask.new do |t|
|
|
5
|
+
t.rspec_opts = [].tap do |a|
|
|
6
|
+
a.push('--color')
|
|
7
|
+
a.push('--format doc')
|
|
8
|
+
end.join(' ')
|
|
9
|
+
end
|
|
19
10
|
|
|
20
11
|
# Default task is to run the unit tests
|
|
21
12
|
task :default => "spec"
|
|
@@ -35,7 +35,9 @@ module VagrantPlugins
|
|
|
35
35
|
|
|
36
36
|
# Windows doesn't support ssh or rsync natively. Use winrm instead
|
|
37
37
|
if (env[:machine].config.vm.communicator == :winrm) then
|
|
38
|
-
env[:ui].info(I18n.t('vagrant_managed_servers.winrm_upload'
|
|
38
|
+
env[:ui].info(I18n.t('vagrant_managed_servers.winrm_upload',
|
|
39
|
+
:hostpath => hostpath,
|
|
40
|
+
:guestpath => guestpath))
|
|
39
41
|
env[:machine].communicate.tap do |comm|
|
|
40
42
|
comm.upload(hostpath, guestpath)
|
|
41
43
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-managed-servers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Torben Knerr
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-11-
|
|
11
|
+
date: 2014-11-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -126,3 +126,4 @@ signing_key:
|
|
|
126
126
|
specification_version: 4
|
|
127
127
|
summary: Enables Vagrant to ssh into and provision managed servers.
|
|
128
128
|
test_files: []
|
|
129
|
+
has_rdoc:
|