fui 0.4.0 → 0.4.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: f54323f18c553e3a577d2356ba9777601fe5b017
4
- data.tar.gz: f5b31abaf34393e4c1db738f9a8e34695f8b6b67
3
+ metadata.gz: 3004280a95452a6d9d564a749e4e4401d141018b
4
+ data.tar.gz: 7833b104af4e870cb65df25671a0dc11f3985f1c
5
5
  SHA512:
6
- metadata.gz: 9d8924cbe968e7554f0cbeaacf6b8c16d29da0d35432bc3a4f571a20a767af8601b4bb28f5dd2dfe6a1f76dd7a0fbe2424e287651bc3591b5df44752a03dd6a8
7
- data.tar.gz: 225407e9ee09173fbd0f0ddb5640b2243939b18c37fd926dc25ab2f3be72b25fb2c43161536216aa67012a39508c34f68ff5636c829f55505b52b17e2af9d67b
6
+ metadata.gz: 348e74f6fe709c2eb3cf15c50f4665431b5a39654c4daea299461329c22b696cff75dfd62c0d3a8374bcbe68d0cec06f2075bd3585b377ad8de3988872186695
7
+ data.tar.gz: 1193c75c6bb5cd05f82732179f6e3cc6b5bbcd9a5fd654e65174e3be10efb15edcc0a9837b8f0967feb1719e1a39e63db9a3bc5801336a695dce35a426b976ac
@@ -1,7 +1,11 @@
1
- ### 0.4.1 (Next)
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
+ [![Gem Version](https://badge.fury.io/rb/fui.svg)](https://badge.fury.io/rb/fui)
4
5
  [![Build Status](https://travis-ci.org/dblock/fui.svg)](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
- #### XCode Plugin
49
+ #### Xcode Plugin
49
50
 
50
- Use [xcfui](https://github.com/jcavar/xcfui) for integration with XCode.
51
+ Use [xcfui](https://github.com/jcavar/xcfui) for integration with Xcode.
51
52
 
52
53
  ## Contributing
53
54
 
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Fui
2
- VERSION = '0.4.0'.freeze
2
+ VERSION = '0.4.1'.freeze
3
3
  end
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.0
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: 2016-05-14 00:00:00.000000000 Z
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.4.8
63
+ rubygems_version: 2.6.12
64
64
  signing_key:
65
65
  specification_version: 4
66
66
  summary: Find unused Objective-C imports.