discover-unused-partials 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3a28d1e85118c3214475e30a0fa2124e2124ff0e
4
- data.tar.gz: ce4ac735dc68cc482c5fd43ba5590f8e555d22be
3
+ metadata.gz: db9a42c3f8a476959ed3128b8ef6c4e095831a41
4
+ data.tar.gz: b5f16c617aa9d203593ca70ed57ca5030ab1b88a
5
5
  SHA512:
6
- metadata.gz: 8177575c1c4c9cc9e66eb8085bc903c814fb7caea6a917dfae57ac6bc209573f83764fef6d0bf7bd73925b6e516d1c2fba8f062b6fdd4aad8e322b602e02ca7c
7
- data.tar.gz: ce3cb5a10dc4416de7d3fb7211b45ecc9bed987120df8d44316ce62bd1c240224ff2f520ad90d2d4a1cc06b1ff7c6e06673ca3bc7d95641710a73faebf0f2026
6
+ metadata.gz: 07f8dc3c982475d08abe7f90aad999052487158150bdf31f36203a2f502699742bd82040cb2484c902f9149884eaf5137d5fcb1722e90ca3f0b0adb1c6746b6d
7
+ data.tar.gz: 0a4a269716b25d2b408f962143ecb341de258ccca689a35077e2e48d1cf836e369ed840717306379d2f04dea8ea89cf97a523ba2011976aba97eb9271d632def
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.0
1
+ 0.3.1
@@ -116,8 +116,8 @@ module DiscoverUnusedPartials
116
116
  partials.uniq!
117
117
  [partials, dynamic]
118
118
  end
119
-
120
- EXT = %w(.html.erb .text.erb .html.haml .text.haml .rhtml)
119
+
120
+ EXT = %w(.html.erb .text.erb .erb .html.haml .text.haml .haml .rhtml)
121
121
  def check_extension_path(file)
122
122
  "#{file}#{EXT.find{ |e| File.exists? file + e }}"
123
123
  end
@@ -1,3 +1,3 @@
1
1
  module DiscoverUnusedPartials
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: discover-unused-partials
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Willian Molinari (a.k.a PotHix)
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-08-12 00:00:00.000000000 Z
12
+ date: 2014-06-10 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: A script to help you finding out unused partials. Good for big projects
15
15
  or projects under heavy refactoring
@@ -21,7 +21,7 @@ executables:
21
21
  extensions: []
22
22
  extra_rdoc_files: []
23
23
  files:
24
- - .gitignore
24
+ - ".gitignore"
25
25
  - Gemfile
26
26
  - LICENSE
27
27
  - README.rdoc
@@ -43,17 +43,17 @@ require_paths:
43
43
  - lib
44
44
  required_ruby_version: !ruby/object:Gem::Requirement
45
45
  requirements:
46
- - - '>='
46
+ - - ">="
47
47
  - !ruby/object:Gem::Version
48
48
  version: '0'
49
49
  required_rubygems_version: !ruby/object:Gem::Requirement
50
50
  requirements:
51
- - - '>='
51
+ - - ">="
52
52
  - !ruby/object:Gem::Version
53
53
  version: '0'
54
54
  requirements: []
55
55
  rubyforge_project:
56
- rubygems_version: 2.0.3
56
+ rubygems_version: 2.2.2
57
57
  signing_key:
58
58
  specification_version: 4
59
59
  summary: A script to help you finding out unused partials. Good for big projects or