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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0dd8ab3ab2afe31792f8f939c953115a7955540b
4
- data.tar.gz: c3a49bda8abbd479246ab1151cab9ad9231153f0
3
+ metadata.gz: 290161bcc954677ec42fc73af47b19fdfe0c8f94
4
+ data.tar.gz: 6e55fa0b20fd577b7c53a0b1bc1b34c1e3392409
5
5
  SHA512:
6
- metadata.gz: 0593dd7bc867681ff8153be3ed7eb55cc2baa3fa56af012fbce8cd0cd7bf251be8d9c51948f9bcf4fa3fe3a4557faa691a1a5288a75b66dae3f1e3feb1cb754c
7
- data.tar.gz: 02c134964fcad6596bf126af334757a3e51534a40c617b82b9adefbd4398aa040b56d39473f3274319e98803a0ddf25a4236330edf863aefab00791a50448a48
6
+ metadata.gz: cec528cb7901d886aaff71cb52d82e9b7624849dd93a4f71c567bea39b6af2c3a77b1b31eda7a4ff9551a88213de84f9ed01bae0c16519a04c1ab30e65bc14dc
7
+ data.tar.gz: de2206e2c8567af32ed4c81a6857b3141a159c0338bf01b33d7c5e347893eeba09bd5d7295328430e1405b97eb00697b02ace0d4c46285a76951e95e71775909
data/.travis.yml CHANGED
@@ -2,4 +2,4 @@ language: ruby
2
2
  rvm:
3
3
  - 2.0.0
4
4
  script:
5
- - rake spec
5
+ - bundle exec rake spec
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", "1.6.3",
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 'rubygems'
2
- require 'bundler/setup'
1
+ require 'bundler/gem_tasks'
3
2
  require 'rspec/core/rake_task'
4
3
 
5
- # Immediately sync all stdout so that tools like buildbot can
6
- # immediately load in the output.
7
- $stdout.sync = true
8
- $stderr.sync = true
9
-
10
- # Change to the directory of this file.
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
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module ManagedServers
3
- VERSION = "0.4.0"
3
+ VERSION = "0.4.1"
4
4
  end
5
5
  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.0
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-15 00:00:00.000000000 Z
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: