rails_parallel 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +2 -2
- data/lib/rails_parallel/rake.rb +1 -1
- data/lib/rails_parallel/version.rb +1 -1
- metadata +3 -3
data/README.markdown
CHANGED
@@ -21,12 +21,12 @@ You'll want to add a lib/tasks/rails_parallel.rake with at least the following:
|
|
21
21
|
# Run this task if you have non-test tasks to run first and you want the
|
22
22
|
# RailsParallel worker to start loading your environment earlier.
|
23
23
|
task :launch do
|
24
|
-
|
24
|
+
RailsParallel::Rake.launch
|
25
25
|
end
|
26
26
|
|
27
27
|
# RailsParallel runs this if it needs to reload the DB.
|
28
28
|
namespace :db do
|
29
|
-
|
29
|
+
task :setup => ['db:drop', 'db:create', 'db:schema:load']
|
30
30
|
end
|
31
31
|
end
|
32
32
|
|
data/lib/rails_parallel/rake.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_parallel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Adrian Irving-Beer
|