sauron 0.1.18 → 0.1.19
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +3 -1
- data/Rakefile +2 -0
- data/VERSION +1 -1
- data/sauron.gemspec +7 -1
- metadata +34 -3
data/README.rdoc
CHANGED
@@ -65,12 +65,14 @@ The generator creates a watchr script called sauron_watchr.rb in the root direct
|
|
65
65
|
|
66
66
|
== For really advanced users
|
67
67
|
|
68
|
-
Help me make this tool better. Fork it, fix it, send a pull request. My low public profile and crippling need acceptance ensure you'll get a prompt, friendly response.
|
68
|
+
Help me make this tool better. Fork it, fix it, send a pull request. My low public profile and crippling need for acceptance ensure you'll get a prompt, friendly response.
|
69
69
|
|
70
70
|
== Caveats
|
71
71
|
|
72
72
|
This is very new. I can't see how it would damage anything, but I guess that's what everyone says before they damage something. Also, I've traditionally used shoulda over rspec, so there may be glitches in what files Sauron watches/runs in rspec mode. If you see something wrong, let me know.
|
73
73
|
|
74
|
+
While the Hydra gem supports multiple computers over a network, Sauron doesn't at this time. That might become a priority if people ask. It will definitely become a priority if somebody buys me a multi-core system I can add to my testing arsenal :)
|
75
|
+
|
74
76
|
This was put together quickly. If you don't feel like the underlying code is beautiful, this was largely hacked together during Ruby Midwest weekend, during hours that should have been used for sleeping.
|
75
77
|
|
76
78
|
|
data/Rakefile
CHANGED
@@ -32,6 +32,8 @@ begin
|
|
32
32
|
gem.authors = ['Jaime Bellmyer']
|
33
33
|
gem.add_development_dependency "bellmyer-hydra", ">= 0.20.9"
|
34
34
|
gem.add_development_dependency "watchr", ">= 0.6"
|
35
|
+
gem.add_dependency 'bellmyer-hydra', '>= 0.20.10'
|
36
|
+
gem.add_dependency 'watchr', '>= 0.6'
|
35
37
|
end
|
36
38
|
Jeweler::GemcutterTasks.new
|
37
39
|
rescue LoadError
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.19
|
data/sauron.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{sauron}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.19"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Jaime Bellmyer"]
|
@@ -52,13 +52,19 @@ Gem::Specification.new do |s|
|
|
52
52
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
53
53
|
s.add_development_dependency(%q<bellmyer-hydra>, [">= 0.20.9"])
|
54
54
|
s.add_development_dependency(%q<watchr>, [">= 0.6"])
|
55
|
+
s.add_runtime_dependency(%q<bellmyer-hydra>, [">= 0.20.10"])
|
56
|
+
s.add_runtime_dependency(%q<watchr>, [">= 0.6"])
|
55
57
|
else
|
56
58
|
s.add_dependency(%q<bellmyer-hydra>, [">= 0.20.9"])
|
57
59
|
s.add_dependency(%q<watchr>, [">= 0.6"])
|
60
|
+
s.add_dependency(%q<bellmyer-hydra>, [">= 0.20.10"])
|
61
|
+
s.add_dependency(%q<watchr>, [">= 0.6"])
|
58
62
|
end
|
59
63
|
else
|
60
64
|
s.add_dependency(%q<bellmyer-hydra>, [">= 0.20.9"])
|
61
65
|
s.add_dependency(%q<watchr>, [">= 0.6"])
|
66
|
+
s.add_dependency(%q<bellmyer-hydra>, [">= 0.20.10"])
|
67
|
+
s.add_dependency(%q<watchr>, [">= 0.6"])
|
62
68
|
end
|
63
69
|
end
|
64
70
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sauron
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 61
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 19
|
10
|
+
version: 0.1.19
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Jaime Bellmyer
|
@@ -49,6 +49,37 @@ dependencies:
|
|
49
49
|
version: "0.6"
|
50
50
|
type: :development
|
51
51
|
version_requirements: *id002
|
52
|
+
- !ruby/object:Gem::Dependency
|
53
|
+
name: bellmyer-hydra
|
54
|
+
prerelease: false
|
55
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
hash: 91
|
61
|
+
segments:
|
62
|
+
- 0
|
63
|
+
- 20
|
64
|
+
- 10
|
65
|
+
version: 0.20.10
|
66
|
+
type: :runtime
|
67
|
+
version_requirements: *id003
|
68
|
+
- !ruby/object:Gem::Dependency
|
69
|
+
name: watchr
|
70
|
+
prerelease: false
|
71
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
hash: 7
|
77
|
+
segments:
|
78
|
+
- 0
|
79
|
+
- 6
|
80
|
+
version: "0.6"
|
81
|
+
type: :runtime
|
82
|
+
version_requirements: *id004
|
52
83
|
description: Speed up your automated tests with multiple databases and workers.
|
53
84
|
email: jaime@kconrails.com
|
54
85
|
executables: []
|