vagrant-grunt 0.0.25 → 0.0.26
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.
- data/lib/vagrant-grunt.rb +10 -0
- data/lib/vagrant-grunt/command.rb +2 -2
- data/lib/vagrant-grunt/version.rb +1 -1
- metadata +2 -2
data/lib/vagrant-grunt.rb
CHANGED
|
@@ -1,13 +1,23 @@
|
|
|
1
1
|
require 'vagrant'
|
|
2
2
|
|
|
3
|
+
|
|
3
4
|
module VagrantGrunt
|
|
4
5
|
class Grunt < Vagrant.plugin("2")
|
|
5
6
|
name "Grunt"
|
|
6
7
|
|
|
7
8
|
command "grunt" do
|
|
8
9
|
require_relative "vagrant-grunt/command.rb"
|
|
10
|
+
require_relative "vagrant-grunt/middleware.rb"
|
|
11
|
+
|
|
12
|
+
grunt_middleware = Vagrant::Action::Builder.new do
|
|
13
|
+
use VagrantGrunt::Middleware
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
Vagrant::Action.register(:action_grunt, grunt_middleware)
|
|
17
|
+
|
|
9
18
|
GruntCommand
|
|
10
19
|
end
|
|
11
20
|
|
|
21
|
+
|
|
12
22
|
end
|
|
13
23
|
end
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
require_relative "middleware
|
|
1
|
+
require_relative "middleware"
|
|
2
2
|
|
|
3
3
|
module VagrantGrunt
|
|
4
4
|
class GruntCommand < Vagrant.plugin(2, :command)
|
|
@@ -15,7 +15,7 @@ module VagrantGrunt
|
|
|
15
15
|
|
|
16
16
|
with_target_vms(nil, :reverse => true) do |machine|
|
|
17
17
|
@env.ui.info "Running machine detected executing system call"
|
|
18
|
-
machine.action(:
|
|
18
|
+
machine.action(:action_grunt)
|
|
19
19
|
end
|
|
20
20
|
|
|
21
21
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-grunt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.26
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -77,7 +77,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
77
77
|
version: '0'
|
|
78
78
|
segments:
|
|
79
79
|
- 0
|
|
80
|
-
hash:
|
|
80
|
+
hash: 213981204615021419
|
|
81
81
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
82
|
none: false
|
|
83
83
|
requirements:
|