fui 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5272144b25c0da4a5f51f42c5008fae6a6e5de88
4
- data.tar.gz: 7b51afae0ab0291c66085ac33474b0d74d557524
3
+ metadata.gz: 619c1a68c51c4bb87e46a9912afa504591c11d07
4
+ data.tar.gz: 0a26f50935809404993bb98a4e38d3902d53a7d9
5
5
  SHA512:
6
- metadata.gz: 0ddb81f1c2e3a9fa6c63cfa72eb4e4e676e403f47af7cbbe89b0492a726a53f88a6acf4c234129c00a7dd12a63530b96e5dd0b9250a7200d9948eb977f2ce1fd
7
- data.tar.gz: f43ed4e65196c51fbfde8fe74cfc41e9901a07ba139c64f12730a5e6161a3ca6661c3dadf3988526eafda7cf694aecf288fb5fe750b74f3e5d8b7eeecb0d0afe
6
+ metadata.gz: f3e6969d0852b92f4ecec1b3adeaf11686159724b29e15495e26e0e4144c0f1b8c6b3994701687f6d458ba737a93d170a6a244a76b67ac8eeb5fb1de99b47471
7
+ data.tar.gz: 77e9a9ea48ff86fe4f6a042f3104bc0f0ba05eb720d1b24a0450f6dbc7c522285d0ef165b224322dd2a442d3edfff43671b0947b646ed5f9ff6e7a90c75ffee6
@@ -1,3 +1,7 @@
1
+ ### 0.1.1 (1/22/2014)
2
+
3
+ * Fix: properly handle .pch includes - [@dblock](https://github.com/dblock).
4
+
1
5
  ### 0.1.0 (1/22/2014)
2
6
 
3
7
  * Initial public release, based on code by [@dstnbrkr](https://github.com/dstnbrkr) - [@dblock](https://github.com/dblock).
@@ -18,7 +18,7 @@ module Fui
18
18
  references[header] = []
19
19
  end
20
20
  Find.find(path) do |path|
21
- next unless [".m", ".h", "*.pch"].include?(File.extname(path)) && File.ftype(path) == "file"
21
+ next unless [".m", ".h", ".pch"].include?(File.extname(path)) && File.ftype(path) == "file"
22
22
  File.open(path) do |file|
23
23
  filename = File.basename(path)
24
24
  yield path if block_given?
@@ -1,3 +1,3 @@
1
1
  module Fui
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Doubrovkine
@@ -60,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
60
60
  version: 1.3.6
61
61
  requirements: []
62
62
  rubyforge_project:
63
- rubygems_version: 2.0.14
63
+ rubygems_version: 2.1.11
64
64
  signing_key:
65
65
  specification_version: 4
66
66
  summary: Find unused Objective-C imports.