asset_finder 1.0.1 → 1.0.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ebeb3db884b8722416fb6e2ba769af2e9e4253df
4
- data.tar.gz: 9b8905f4dad83ad8b7e1935be409019d0eae3ea8
3
+ metadata.gz: 16b0b842afe8faed13754e7b9fcc9b4d686f877e
4
+ data.tar.gz: da93b866f172d008b1975dfe58494d9b2f412392
5
5
  SHA512:
6
- metadata.gz: 51374fbf68cf625e8b125807a3bb87a7fb367ea37742edcc5de0f44ca19df33ef6558a834ad9e61d24d94c995e1204387352c582473cd9e003274c4c7f82081b
7
- data.tar.gz: 064a69c4f5d7f23cbe875c51fdf445b435ece8f18eb1b0103480b2699840b462849e060fa4d8906cf2aaf80fa7ab57db1069f5cfa09b3f75c76699e007326441
6
+ metadata.gz: 345214ad7fffa936fb69b3fa00bd462441f9ae13e5c135e72aa00e5a596d1a72a1c462bdb63824a1cdb8f12b10f129471993b9ea6c09b307a22f29ef3d095147
7
+ data.tar.gz: 5af4489fe4b2b595842dfec76db716e45c7e6e91380690772ce1eae3fc7fb97d291cb3f38d7567fd60ef574f793e1f44e87397dd924cd3d07651c9c3b73c6ba1
@@ -11,7 +11,7 @@ module AssetFinder
11
11
  Find.find(root_dir).each do |path|
12
12
  norimalized_path = norimalizer.norimalize(path)
13
13
  next if norimalized_path.nil?
14
- paths << path
14
+ paths << norimalized_path
15
15
  end
16
16
  end
17
17
  end
@@ -11,7 +11,7 @@ module AssetFinder
11
11
  Find.find(root_dir).each do |path|
12
12
  norimalized_path = norimalizer.norimalize(path)
13
13
  next if norimalized_path.nil?
14
- paths << path
14
+ paths << norimalized_path
15
15
  end
16
16
  end
17
17
  end
@@ -1,3 +1,3 @@
1
1
  module AssetFinder
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asset_finder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takahiro Ooishi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-06-08 00:00:00.000000000 Z
11
+ date: 2015-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -117,7 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
117
117
  version: '0'
118
118
  requirements: []
119
119
  rubyforge_project:
120
- rubygems_version: 2.2.2
120
+ rubygems_version: 2.4.5
121
121
  signing_key:
122
122
  specification_version: 4
123
123
  summary: Find javascripts and stylesheets for `rake asset:precompile`.