asset-resource 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -31,7 +31,7 @@ Built-in configuration and helpers for Rails 2.x, Rails 3.x and Sinatra.
31
31
  # public/javascripts/*.js
32
32
 
33
33
  # Gemfile
34
- gem "asset_resource"
34
+ gem "asset-resource"
35
35
 
36
36
  # app/views/layouts/application.html.erb
37
37
  <html>
@@ -1,5 +1,5 @@
1
1
  module AssetResource
2
- VERSION = "0.1.1"
2
+ VERSION = "0.2.0"
3
3
  end
4
4
 
5
5
  if defined?(Rails)
@@ -58,7 +58,7 @@ private ######################################################################
58
58
 
59
59
  def files_for(type)
60
60
  Dir.glob(File.expand_path(File.join(base_path, type, "**", "*"))).select do |file|
61
- File.exist?(file)
61
+ File.exist?(file) && file[0..0] != "_"
62
62
  end
63
63
  end
64
64
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asset-resource
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 1
9
- - 1
10
- version: 0.1.1
8
+ - 2
9
+ - 0
10
+ version: 0.2.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Dollar
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-08-08 00:00:00 -04:00
18
+ date: 2010-08-16 00:00:00 -04:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency