auxesis-cucumber-nagios 0.2.6 → 0.2.8
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/generators/project/Rakefile +10 -4
- metadata +1 -11
@@ -18,9 +18,15 @@ end
|
|
18
18
|
|
19
19
|
desc "freeze deps"
|
20
20
|
task :deps do
|
21
|
-
|
22
|
-
deps.
|
23
|
-
|
24
|
-
|
21
|
+
|
22
|
+
deps = {'cucumber' => ">= 0.1.16",
|
23
|
+
'webrat' => ">= 0.4.2",
|
24
|
+
'mechanize' => ">= 0.9.1",
|
25
|
+
'rspec' => ">= 1.1.12"}
|
26
|
+
|
27
|
+
deps.each_pair do |dep, version|
|
28
|
+
puts "\ninstalling #{dep} (#{version})"
|
29
|
+
system("gem install #{dep} --version '#{version}' -i gems --no-rdoc --no-ri")
|
25
30
|
end
|
31
|
+
|
26
32
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: auxesis-cucumber-nagios
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lindsay Holmwood
|
@@ -32,16 +32,6 @@ dependencies:
|
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: 0.8.3
|
34
34
|
version:
|
35
|
-
- !ruby/object:Gem::Dependency
|
36
|
-
name: rspec
|
37
|
-
type: :runtime
|
38
|
-
version_requirement:
|
39
|
-
version_requirements: !ruby/object:Gem::Requirement
|
40
|
-
requirements:
|
41
|
-
- - ">="
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
version: 1.1.12
|
44
|
-
version:
|
45
35
|
description: cucumber-nagios lets you write high-level behavioural tests for your web applications that can be plugged into Nagios
|
46
36
|
email: lindsay@holmwood.id.au
|
47
37
|
executables:
|