rails_parallel 0.1.0 → 0.1.1

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/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
- RailsParallel::Rake.launch
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
- task :setup => ['db:drop', 'db:create', 'db:schema:load']
29
+ task :setup => ['db:drop', 'db:create', 'db:schema:load']
30
30
  end
31
31
  end
32
32
 
@@ -71,7 +71,7 @@ module RailsParallel
71
71
  end
72
72
 
73
73
  def parse_options(ruby_opts)
74
- ruby_opts.collect do |opt|
74
+ ruby_opts.flatten.collect do |opt|
75
75
  case opt
76
76
  when /^-r/
77
77
  [:require, $']
@@ -1,3 +1,3 @@
1
1
  module RailsParallel
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Adrian Irving-Beer