roodi 1.3.4 → 1.3.5

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.
Files changed (4) hide show
  1. data/History.txt +4 -0
  2. data/lib/roodi.rb +1 -1
  3. data/lib/roodi_task.rb +1 -3
  4. metadata +1 -1
@@ -1,3 +1,7 @@
1
+ = 1.3.5
2
+
3
+ * Fixed bug in rake task
4
+
1
5
  = 1.3.4
2
6
 
3
7
  * Minor cleanup
@@ -2,5 +2,5 @@ require 'roodi/checks'
2
2
  require 'roodi/core'
3
3
 
4
4
  module Roodi
5
- VERSION = '1.3.4'
5
+ VERSION = '1.3.5'
6
6
  end
@@ -4,7 +4,7 @@ class RoodiTask < Rake::TaskLib
4
4
  attr_accessor :config
5
5
  attr_accessor :verbose
6
6
 
7
- def initialize name = :roodi, patterns = nil, config nil
7
+ def initialize name = :roodi, patterns = nil, config = nil
8
8
  @name = name
9
9
  @patterns = patterns || %w(app/**/*.rb lib/**/*.rb spec/**/*.rb test/**/*.rb)
10
10
  @config = config
@@ -12,8 +12,6 @@ class RoodiTask < Rake::TaskLib
12
12
 
13
13
  yield self if block_given?
14
14
 
15
- @dirs.reject! { |f| ! File.directory? f }
16
-
17
15
  define
18
16
  end
19
17
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roodi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.4
4
+ version: 1.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marty Andrews