guard-kitchen 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
11
11
  spec.description = %q{Guard plugin for test kitchen}
12
12
  spec.summary = %q{Guard plugin for test kitchen}
13
13
  spec.homepage = "http://github.com/opscode/guard-kitchen"
14
- spec.license = "MIT"
14
+ spec.license = "Apache 2"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
17
17
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
@@ -22,5 +22,4 @@ Gem::Specification.new do |spec|
22
22
  spec.add_dependency "mixlib-shellout"
23
23
  spec.add_development_dependency "bundler", "~> 1.3"
24
24
  spec.add_development_dependency "rake"
25
- spec.add_development_dependency "rspec"
26
25
  end
@@ -22,7 +22,7 @@ module Guard
22
22
  class Kitchen < Guard
23
23
  def start
24
24
  ::Guard::UI.info("Guard::Kitchen is starting")
25
- cmd = Mixlib::ShellOut.new("kitchen create")
25
+ cmd = Mixlib::ShellOut.new("kitchen create", :timeout => 10800)
26
26
  cmd.live_stream = STDOUT
27
27
  cmd.run_command
28
28
  begin
@@ -60,7 +60,7 @@ module Guard
60
60
 
61
61
  def run_all
62
62
  ::Guard::UI.info("Guard::Kitchen is running all tests")
63
- cmd = Mixlib::ShellOut.new("kitchen verify")
63
+ cmd = Mixlib::ShellOut.new("kitchen verify", :timeout => 10800)
64
64
  cmd.live_stream = STDOUT
65
65
  cmd.run_command
66
66
  begin
@@ -83,7 +83,7 @@ module Guard
83
83
  end
84
84
  if suites.length > 0
85
85
  ::Guard::UI.info("Guard::Kitchen is running suites: #{suites.keys.join(', ')}")
86
- cmd = Mixlib::ShellOut.new("kitchen verify '(#{suites.keys.join('|')})-.+' -p")
86
+ cmd = Mixlib::ShellOut.new("kitchen verify '(#{suites.keys.join('|')})-.+' -p", :timeout => 10800)
87
87
  cmd.live_stream = STDOUT
88
88
  cmd.run_command
89
89
  begin
@@ -97,7 +97,7 @@ module Guard
97
97
  end
98
98
  else
99
99
  ::Guard::UI.info("Guard::Kitchen is running converge for all suites")
100
- cmd = Mixlib::ShellOut.new("kitchen converge")
100
+ cmd = Mixlib::ShellOut.new("kitchen converge", :timeout => 10800)
101
101
  cmd.live_stream = STDOUT
102
102
  cmd.run_command
103
103
  begin
@@ -3,6 +3,6 @@ require 'guard/guard'
3
3
 
4
4
  module Guard
5
5
  class Kitchen < Guard
6
- VERSION = "0.0.1"
6
+ VERSION = "0.0.2"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-kitchen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-05-10 00:00:00.000000000 Z
12
+ date: 2013-05-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: guard
@@ -75,22 +75,6 @@ dependencies:
75
75
  - - ! '>='
76
76
  - !ruby/object:Gem::Version
77
77
  version: '0'
78
- - !ruby/object:Gem::Dependency
79
- name: rspec
80
- requirement: !ruby/object:Gem::Requirement
81
- none: false
82
- requirements:
83
- - - ! '>='
84
- - !ruby/object:Gem::Version
85
- version: '0'
86
- type: :development
87
- prerelease: false
88
- version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
- requirements:
91
- - - ! '>='
92
- - !ruby/object:Gem::Version
93
- version: '0'
94
78
  description: Guard plugin for test kitchen
95
79
  email:
96
80
  - adam@opscode.com
@@ -112,7 +96,7 @@ files:
112
96
  - spec/unit/guard/kitchen_spec.rb
113
97
  homepage: http://github.com/opscode/guard-kitchen
114
98
  licenses:
115
- - MIT
99
+ - Apache 2
116
100
  post_install_message:
117
101
  rdoc_options: []
118
102
  require_paths:
@@ -125,7 +109,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
125
109
  version: '0'
126
110
  segments:
127
111
  - 0
128
- hash: 3504401645493718390
112
+ hash: -4378409848140944374
129
113
  required_rubygems_version: !ruby/object:Gem::Requirement
130
114
  none: false
131
115
  requirements:
@@ -134,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
134
118
  version: '0'
135
119
  segments:
136
120
  - 0
137
- hash: 3504401645493718390
121
+ hash: -4378409848140944374
138
122
  requirements: []
139
123
  rubyforge_project:
140
124
  rubygems_version: 1.8.25