ts_assets 0.1.2 → 0.1.3

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: ecb294a9dafda9e68c0f42f56fa06a681fc5435a
4
- data.tar.gz: 7c2925562f717f4227ec56064914d2161b1648b8
3
+ metadata.gz: 491c47454b605c920ed5129ede341b54912045b7
4
+ data.tar.gz: 1476ae2138d231d023e3b31cbbf29dee5ea3452c
5
5
  SHA512:
6
- metadata.gz: 99ed1a92c8b3c32033508e54ef5024c42fc29cc247cc001f488e3c0e8f26cf0037223761a4e888cdbccbb5d60e43b877aae8f38d6b2197f403cdd25cd8b2a6f1
7
- data.tar.gz: 2215096a417103955b84b07ed9b43932d48738661bfb0ddbed89c0f3433b21b65cf6e4d86b7ac3fdbfce6ac6789142ef6564b8b13314b174dc505f4bb5e8af04
6
+ metadata.gz: 6eb9450bcf2aff9e229d7d435aa123bbadd6ac3aaa0e437cc52422d08140260fda4f43e642c19719fc37cce569d576ac114afbb7b8816173dff8be0cc8eddd34
7
+ data.tar.gz: aea0b6dd494aa46b1c466a1c97db809a2745516e109e428aea8dd6a0f3c9487cba0e90ec060c7eb014a40689582e443ae22a4d597e677835aac5ad5a14b2b5fd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # The Revision History of ts_assets
2
2
 
3
+ ## v0.1.3 - 2017/08/10
4
+
5
+ * Sort filenames for consistency
6
+
3
7
  ## v0.1.2 - 2017/08/10
4
8
 
5
9
  * Fix nil errors when there're garbage files like `*.svg~`
@@ -44,7 +44,7 @@ module TsAssets
44
44
  def build_mapping(include_path)
45
45
  mapping = {}
46
46
 
47
- Dir.glob("#{include_path}/**/*.{png,svg,jpg,jpeg,gif}").each do |full_path|
47
+ Dir.glob("#{include_path}/**/*.{png,svg,jpg,jpeg,gif}").sort.each do |full_path|
48
48
  mapping[full_path] = TsAssets::Models::AssetMetaInfo.new(
49
49
  full_path: full_path,
50
50
  include_path: include_path,
@@ -1,3 +1,3 @@
1
1
  module TsAssets
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ts_assets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kenju Wagatsuma