fui 0.4.0 → 0.4.1
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 +4 -4
- data/CHANGELOG.md +5 -1
- data/README.md +3 -2
- data/lib/fui/finder.rb +1 -1
- data/lib/fui/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3004280a95452a6d9d564a749e4e4401d141018b
|
|
4
|
+
data.tar.gz: 7833b104af4e870cb65df25671a0dc11f3985f1c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 348e74f6fe709c2eb3cf15c50f4665431b5a39654c4daea299461329c22b696cff75dfd62c0d3a8374bcbe68d0cec06f2075bd3585b377ad8de3988872186695
|
|
7
|
+
data.tar.gz: 1193c75c6bb5cd05f82732179f6e3cc6b5bbcd9a5fd654e65174e3be10efb15edcc0a9837b8f0967feb1719e1a39e63db9a3bc5801336a695dce35a426b976ac
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
|
-
### 0.4.
|
|
1
|
+
### 0.4.2 (Next)
|
|
2
2
|
|
|
3
3
|
* Your contribution here.
|
|
4
4
|
|
|
5
|
+
### 0.4.1 (8/16/2017)
|
|
6
|
+
|
|
7
|
+
* [#24](https://github.com/dblock/fui/pull/24): Support .mm files - [@shachlan](https://github.com/Shachlan).
|
|
8
|
+
|
|
5
9
|
### 0.4.0 (5/14/2016)
|
|
6
10
|
|
|
7
11
|
* [#20](https://github.com/dblock/fui/pull/20): Added `-x`, `--ignorexib`, find unused classes referenced from its own XIB - [@Ezor](https://github.com/Ezor).
|
data/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
Fui
|
|
2
2
|
==========
|
|
3
3
|
|
|
4
|
+
[](https://badge.fury.io/rb/fui)
|
|
4
5
|
[](https://travis-ci.org/dblock/fui)
|
|
5
6
|
|
|
6
7
|
Find unused Objective-C imports.
|
|
@@ -45,9 +46,9 @@ fui -x --path=~/source/project/Name find
|
|
|
45
46
|
fui --path=~/source/project/Name delete --perform --prompt
|
|
46
47
|
```
|
|
47
48
|
|
|
48
|
-
####
|
|
49
|
+
#### Xcode Plugin
|
|
49
50
|
|
|
50
|
-
Use [xcfui](https://github.com/jcavar/xcfui) for integration with
|
|
51
|
+
Use [xcfui](https://github.com/jcavar/xcfui) for integration with Xcode.
|
|
51
52
|
|
|
52
53
|
## Contributing
|
|
53
54
|
|
data/lib/fui/finder.rb
CHANGED
|
@@ -20,7 +20,7 @@ module Fui
|
|
|
20
20
|
end
|
|
21
21
|
Find.find(path) do |path|
|
|
22
22
|
next unless File.ftype(path) == 'file'
|
|
23
|
-
if ['.m', '.h', '.pch'].include?(File.extname(path))
|
|
23
|
+
if ['.m', '.mm', '.h', '.pch'].include?(File.extname(path))
|
|
24
24
|
process_code references, path, &block
|
|
25
25
|
elsif ['.storyboard', '.xib'].include?(File.extname(path))
|
|
26
26
|
process_xml references, path, &block
|
data/lib/fui/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fui
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Doubrovkine
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-08-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gli
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - '>='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '0'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - '>='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0'
|
|
27
27
|
description:
|
|
@@ -50,17 +50,17 @@ require_paths:
|
|
|
50
50
|
- lib
|
|
51
51
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
52
52
|
requirements:
|
|
53
|
-
- -
|
|
53
|
+
- - '>='
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
55
|
version: 1.9.3
|
|
56
56
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
57
57
|
requirements:
|
|
58
|
-
- -
|
|
58
|
+
- - '>='
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
60
|
version: 1.3.6
|
|
61
61
|
requirements: []
|
|
62
62
|
rubyforge_project:
|
|
63
|
-
rubygems_version: 2.
|
|
63
|
+
rubygems_version: 2.6.12
|
|
64
64
|
signing_key:
|
|
65
65
|
specification_version: 4
|
|
66
66
|
summary: Find unused Objective-C imports.
|