guard-sass 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/guard/sass.rb +2 -2
  2. metadata +3 -3
data/lib/guard/sass.rb CHANGED
@@ -6,13 +6,13 @@ require 'sass'
6
6
  module Guard
7
7
  class Sass < Guard
8
8
 
9
- VERSION = '0.0.5'
9
+ VERSION = '0.0.6'
10
10
  attr_accessor :options
11
11
 
12
12
  def initialize(watchers = [], options = {})
13
13
  @watchers, @options = watchers, options
14
14
  @options[:output] ||= 'css'
15
- @options[:load_paths] ||= Dir.glob('*')
15
+ @options[:load_paths] ||= Dir.glob('**/**').find_all {|i| File.directory?(i)}
16
16
  end
17
17
 
18
18
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 5
9
- version: 0.0.5
8
+ - 6
9
+ version: 0.0.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - Joshua Hawxwell
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-10-26 00:00:00 +01:00
17
+ date: 2010-12-14 00:00:00 +00:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency