findxcprojorphan 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +6 -0
  3. data/.ruby-gemset +1 -0
  4. data/.ruby-version +1 -0
  5. data/Gemfile +4 -0
  6. data/Gemfile.lock +79 -0
  7. data/README.md +39 -0
  8. data/Rakefile +61 -0
  9. data/bin/findxcprojorphan +40 -0
  10. data/features/findxcprojorphan.feature +29 -0
  11. data/features/fixtures/NoOrphans/NoOrphans.xcodeproj/project.pbxproj +307 -0
  12. data/features/fixtures/NoOrphans/NoOrphans.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  13. data/features/fixtures/NoOrphans/NoOrphans/AppDelegate.h +9 -0
  14. data/features/fixtures/NoOrphans/NoOrphans/AppDelegate.m +37 -0
  15. data/features/fixtures/NoOrphans/NoOrphans/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
  16. data/features/fixtures/NoOrphans/NoOrphans/Base.lproj/LaunchScreen.storyboard +27 -0
  17. data/features/fixtures/NoOrphans/NoOrphans/Base.lproj/Main.storyboard +25 -0
  18. data/features/fixtures/NoOrphans/NoOrphans/Info.plist +47 -0
  19. data/features/fixtures/NoOrphans/NoOrphans/ViewController.h +7 -0
  20. data/features/fixtures/NoOrphans/NoOrphans/ViewController.m +19 -0
  21. data/features/fixtures/NoOrphans/NoOrphans/main.m +8 -0
  22. data/features/fixtures/Orphans/Orphans.xcodeproj/project.pbxproj +314 -0
  23. data/features/fixtures/Orphans/Orphans.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  24. data/features/fixtures/Orphans/Orphans/AppDelegate.h +9 -0
  25. data/features/fixtures/Orphans/Orphans/AppDelegate.m +37 -0
  26. data/features/fixtures/Orphans/Orphans/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
  27. data/features/fixtures/Orphans/Orphans/Base.lproj/LaunchScreen.storyboard +27 -0
  28. data/features/fixtures/Orphans/Orphans/Base.lproj/Main.storyboard +25 -0
  29. data/features/fixtures/Orphans/Orphans/Info.plist +47 -0
  30. data/features/fixtures/Orphans/Orphans/ObjCFile.h +5 -0
  31. data/features/fixtures/Orphans/Orphans/ObjCFile.m +5 -0
  32. data/features/fixtures/Orphans/Orphans/Orphans-Bridging-Header.h +4 -0
  33. data/features/fixtures/Orphans/Orphans/SwiftFile.swift +1 -0
  34. data/features/fixtures/Orphans/Orphans/ViewController.h +7 -0
  35. data/features/fixtures/Orphans/Orphans/ViewController.m +19 -0
  36. data/features/fixtures/Orphans/Orphans/main.m +8 -0
  37. data/features/step_definitions/findxcprojorphan_steps.rb +12 -0
  38. data/features/support/env.rb +16 -0
  39. data/findxcprojorphan.gemspec +26 -0
  40. data/lib/findxcprojorphan.rb +5 -0
  41. data/lib/findxcprojorphan/version.rb +3 -0
  42. metadata +198 -0
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:Orphans.xcodeproj">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1,9 @@
1
+ #import <UIKit/UIKit.h>
2
+
3
+ @interface AppDelegate : UIResponder <UIApplicationDelegate>
4
+
5
+ @property (strong, nonatomic) UIWindow *window;
6
+
7
+
8
+ @end
9
+
@@ -0,0 +1,37 @@
1
+ #import "AppDelegate.h"
2
+
3
+ @interface AppDelegate ()
4
+
5
+ @end
6
+
7
+ @implementation AppDelegate
8
+
9
+
10
+ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
11
+ // Override point for customization after application launch.
12
+ return YES;
13
+ }
14
+
15
+ - (void)applicationWillResignActive:(UIApplication *)application {
16
+ // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
17
+ // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
18
+ }
19
+
20
+ - (void)applicationDidEnterBackground:(UIApplication *)application {
21
+ // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
22
+ // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
23
+ }
24
+
25
+ - (void)applicationWillEnterForeground:(UIApplication *)application {
26
+ // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
27
+ }
28
+
29
+ - (void)applicationDidBecomeActive:(UIApplication *)application {
30
+ // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
31
+ }
32
+
33
+ - (void)applicationWillTerminate:(UIApplication *)application {
34
+ // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
35
+ }
36
+
37
+ @end
@@ -0,0 +1,68 @@
1
+ {
2
+ "images" : [
3
+ {
4
+ "idiom" : "iphone",
5
+ "size" : "29x29",
6
+ "scale" : "2x"
7
+ },
8
+ {
9
+ "idiom" : "iphone",
10
+ "size" : "29x29",
11
+ "scale" : "3x"
12
+ },
13
+ {
14
+ "idiom" : "iphone",
15
+ "size" : "40x40",
16
+ "scale" : "2x"
17
+ },
18
+ {
19
+ "idiom" : "iphone",
20
+ "size" : "40x40",
21
+ "scale" : "3x"
22
+ },
23
+ {
24
+ "idiom" : "iphone",
25
+ "size" : "60x60",
26
+ "scale" : "2x"
27
+ },
28
+ {
29
+ "idiom" : "iphone",
30
+ "size" : "60x60",
31
+ "scale" : "3x"
32
+ },
33
+ {
34
+ "idiom" : "ipad",
35
+ "size" : "29x29",
36
+ "scale" : "1x"
37
+ },
38
+ {
39
+ "idiom" : "ipad",
40
+ "size" : "29x29",
41
+ "scale" : "2x"
42
+ },
43
+ {
44
+ "idiom" : "ipad",
45
+ "size" : "40x40",
46
+ "scale" : "1x"
47
+ },
48
+ {
49
+ "idiom" : "ipad",
50
+ "size" : "40x40",
51
+ "scale" : "2x"
52
+ },
53
+ {
54
+ "idiom" : "ipad",
55
+ "size" : "76x76",
56
+ "scale" : "1x"
57
+ },
58
+ {
59
+ "idiom" : "ipad",
60
+ "size" : "76x76",
61
+ "scale" : "2x"
62
+ }
63
+ ],
64
+ "info" : {
65
+ "version" : 1,
66
+ "author" : "xcode"
67
+ }
68
+ }
@@ -0,0 +1,27 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="8150" systemVersion="15A204g" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" initialViewController="01J-lp-oVM">
3
+ <dependencies>
4
+ <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="8122"/>
5
+ </dependencies>
6
+ <scenes>
7
+ <!--View Controller-->
8
+ <scene sceneID="EHf-IW-A2E">
9
+ <objects>
10
+ <viewController id="01J-lp-oVM" sceneMemberID="viewController">
11
+ <layoutGuides>
12
+ <viewControllerLayoutGuide type="top" id="Llm-lL-Icb"/>
13
+ <viewControllerLayoutGuide type="bottom" id="xb3-aO-Qok"/>
14
+ </layoutGuides>
15
+ <view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
16
+ <rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
17
+ <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
18
+ <animations/>
19
+ <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
20
+ </view>
21
+ </viewController>
22
+ <placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
23
+ </objects>
24
+ <point key="canvasLocation" x="53" y="375"/>
25
+ </scene>
26
+ </scenes>
27
+ </document>
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="6211" systemVersion="14A298i" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="BYZ-38-t0r">
3
+ <dependencies>
4
+ <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6204"/>
5
+ </dependencies>
6
+ <scenes>
7
+ <!--View Controller-->
8
+ <scene sceneID="tne-QT-ifu">
9
+ <objects>
10
+ <viewController id="BYZ-38-t0r" customClass="ViewController" customModuleProvider="" sceneMemberID="viewController">
11
+ <layoutGuides>
12
+ <viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/>
13
+ <viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/>
14
+ </layoutGuides>
15
+ <view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
16
+ <rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
17
+ <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
18
+ <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
19
+ </view>
20
+ </viewController>
21
+ <placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
22
+ </objects>
23
+ </scene>
24
+ </scenes>
25
+ </document>
@@ -0,0 +1,47 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>CFBundleDevelopmentRegion</key>
6
+ <string>en</string>
7
+ <key>CFBundleExecutable</key>
8
+ <string>$(EXECUTABLE_NAME)</string>
9
+ <key>CFBundleIdentifier</key>
10
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11
+ <key>CFBundleInfoDictionaryVersion</key>
12
+ <string>6.0</string>
13
+ <key>CFBundleName</key>
14
+ <string>$(PRODUCT_NAME)</string>
15
+ <key>CFBundlePackageType</key>
16
+ <string>APPL</string>
17
+ <key>CFBundleShortVersionString</key>
18
+ <string>1.0</string>
19
+ <key>CFBundleSignature</key>
20
+ <string>????</string>
21
+ <key>CFBundleVersion</key>
22
+ <string>1</string>
23
+ <key>LSRequiresIPhoneOS</key>
24
+ <true/>
25
+ <key>UILaunchStoryboardName</key>
26
+ <string>LaunchScreen</string>
27
+ <key>UIMainStoryboardFile</key>
28
+ <string>Main</string>
29
+ <key>UIRequiredDeviceCapabilities</key>
30
+ <array>
31
+ <string>armv7</string>
32
+ </array>
33
+ <key>UISupportedInterfaceOrientations</key>
34
+ <array>
35
+ <string>UIInterfaceOrientationPortrait</string>
36
+ <string>UIInterfaceOrientationLandscapeLeft</string>
37
+ <string>UIInterfaceOrientationLandscapeRight</string>
38
+ </array>
39
+ <key>UISupportedInterfaceOrientations~ipad</key>
40
+ <array>
41
+ <string>UIInterfaceOrientationPortrait</string>
42
+ <string>UIInterfaceOrientationPortraitUpsideDown</string>
43
+ <string>UIInterfaceOrientationLandscapeLeft</string>
44
+ <string>UIInterfaceOrientationLandscapeRight</string>
45
+ </array>
46
+ </dict>
47
+ </plist>
@@ -0,0 +1,5 @@
1
+ #import <Foundation/Foundation.h>
2
+
3
+ @interface ObjCFile : NSObject
4
+
5
+ @end
@@ -0,0 +1,5 @@
1
+ #import "ObjCFile.h"
2
+
3
+ @implementation ObjCFile
4
+
5
+ @end
@@ -0,0 +1,4 @@
1
+ //
2
+ // Use this file to import your target's public headers that you would like to expose to Swift.
3
+ //
4
+
@@ -0,0 +1 @@
1
+ import Foundation
@@ -0,0 +1,7 @@
1
+ #import <UIKit/UIKit.h>
2
+
3
+ @interface ViewController : UIViewController
4
+
5
+
6
+ @end
7
+
@@ -0,0 +1,19 @@
1
+ #import "ViewController.h"
2
+
3
+ @interface ViewController ()
4
+
5
+ @end
6
+
7
+ @implementation ViewController
8
+
9
+ - (void)viewDidLoad {
10
+ [super viewDidLoad];
11
+ // Do any additional setup after loading the view, typically from a nib.
12
+ }
13
+
14
+ - (void)didReceiveMemoryWarning {
15
+ [super didReceiveMemoryWarning];
16
+ // Dispose of any resources that can be recreated.
17
+ }
18
+
19
+ @end
@@ -0,0 +1,8 @@
1
+ #import <UIKit/UIKit.h>
2
+ #import "AppDelegate.h"
3
+
4
+ int main(int argc, char * argv[]) {
5
+ @autoreleasepool {
6
+ return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
7
+ }
8
+ }
@@ -0,0 +1,12 @@
1
+ When(/^I successfully process "([^"]*)" with "([^"]*)"$/) do |xcproj_path, files_glob|
2
+ xcproj_path = expand_path("%/#{xcproj_path}")
3
+ files_glob = expand_path('%/') + files_glob
4
+ step %(I successfully run `findxcprojorphan #{xcproj_path} #{files_glob}`)
5
+ end
6
+
7
+ When(/^I unsuccessfully process "([^"]*)" with "([^"]*)"$/) do |xcproj_path, files_glob|
8
+ xcproj_path = expand_path("%/#{xcproj_path}")
9
+ files_glob = expand_path('%/') + files_glob
10
+ step %(I run `findxcprojorphan #{xcproj_path} #{files_glob}`)
11
+ step %(the exit status should be 1)
12
+ end
@@ -0,0 +1,16 @@
1
+ require 'aruba/cucumber'
2
+ require 'methadone/cucumber'
3
+
4
+ ENV['PATH'] = "#{File.expand_path(File.dirname(__FILE__) + '/../../bin')}#{File::PATH_SEPARATOR}#{ENV['PATH']}"
5
+ LIB_DIR = File.join(File.expand_path(File.dirname(__FILE__)),'..','..','lib')
6
+
7
+ Before do
8
+ # Using "announce" causes massive warnings on 1.9.2
9
+ @puts = true
10
+ @original_rubylib = ENV['RUBYLIB']
11
+ ENV['RUBYLIB'] = LIB_DIR + File::PATH_SEPARATOR + ENV['RUBYLIB'].to_s
12
+ end
13
+
14
+ After do
15
+ ENV['RUBYLIB'] = @original_rubylib
16
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'findxcprojorphan/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'findxcprojorphan'
8
+ spec.version = Findxcprojorphan::VERSION
9
+ spec.authors = ['Manuel Wudka-Robles']
10
+ spec.email = ['mwudka@me.com']
11
+ spec.summary = %q{Finds source files unreferenced in Xcode project}
12
+ spec.homepage = 'https://github.com/americanexpress/findxcprojorphan'
13
+ spec.license = 'coil'
14
+
15
+ spec.files = `git ls-files -z`.split("\x0")
16
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ['lib']
19
+
20
+ spec.add_development_dependency('bundler', '~> 1.6')
21
+ spec.add_development_dependency('rdoc', '~> 4.2')
22
+ spec.add_development_dependency('aruba', '~> 0.10')
23
+ spec.add_development_dependency('rake', '~> 10.5')
24
+ spec.add_dependency('methadone', '~> 1.9.2')
25
+ spec.add_dependency('xcodeproj', '~> 0.28')
26
+ end
@@ -0,0 +1,5 @@
1
+ require "findxcprojorphan/version"
2
+
3
+ module Findxcprojorphan
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Findxcprojorphan
2
+ VERSION = '1.0.0'
3
+ end
metadata ADDED
@@ -0,0 +1,198 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: findxcprojorphan
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Manuel Wudka-Robles
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-01-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rdoc
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '4.2'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '4.2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: aruba
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.10'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.10'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '10.5'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.5'
69
+ - !ruby/object:Gem::Dependency
70
+ name: methadone
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 1.9.2
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 1.9.2
83
+ - !ruby/object:Gem::Dependency
84
+ name: xcodeproj
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '0.28'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '0.28'
97
+ description:
98
+ email:
99
+ - mwudka@me.com
100
+ executables:
101
+ - findxcprojorphan
102
+ extensions: []
103
+ extra_rdoc_files: []
104
+ files:
105
+ - ".gitignore"
106
+ - ".ruby-gemset"
107
+ - ".ruby-version"
108
+ - Gemfile
109
+ - Gemfile.lock
110
+ - README.md
111
+ - Rakefile
112
+ - bin/findxcprojorphan
113
+ - features/findxcprojorphan.feature
114
+ - features/fixtures/NoOrphans/NoOrphans.xcodeproj/project.pbxproj
115
+ - features/fixtures/NoOrphans/NoOrphans.xcodeproj/project.xcworkspace/contents.xcworkspacedata
116
+ - features/fixtures/NoOrphans/NoOrphans/AppDelegate.h
117
+ - features/fixtures/NoOrphans/NoOrphans/AppDelegate.m
118
+ - features/fixtures/NoOrphans/NoOrphans/Assets.xcassets/AppIcon.appiconset/Contents.json
119
+ - features/fixtures/NoOrphans/NoOrphans/Base.lproj/LaunchScreen.storyboard
120
+ - features/fixtures/NoOrphans/NoOrphans/Base.lproj/Main.storyboard
121
+ - features/fixtures/NoOrphans/NoOrphans/Info.plist
122
+ - features/fixtures/NoOrphans/NoOrphans/ViewController.h
123
+ - features/fixtures/NoOrphans/NoOrphans/ViewController.m
124
+ - features/fixtures/NoOrphans/NoOrphans/main.m
125
+ - features/fixtures/Orphans/Orphans.xcodeproj/project.pbxproj
126
+ - features/fixtures/Orphans/Orphans.xcodeproj/project.xcworkspace/contents.xcworkspacedata
127
+ - features/fixtures/Orphans/Orphans/AppDelegate.h
128
+ - features/fixtures/Orphans/Orphans/AppDelegate.m
129
+ - features/fixtures/Orphans/Orphans/Assets.xcassets/AppIcon.appiconset/Contents.json
130
+ - features/fixtures/Orphans/Orphans/Base.lproj/LaunchScreen.storyboard
131
+ - features/fixtures/Orphans/Orphans/Base.lproj/Main.storyboard
132
+ - features/fixtures/Orphans/Orphans/Info.plist
133
+ - features/fixtures/Orphans/Orphans/ObjCFile.h
134
+ - features/fixtures/Orphans/Orphans/ObjCFile.m
135
+ - features/fixtures/Orphans/Orphans/Orphans-Bridging-Header.h
136
+ - features/fixtures/Orphans/Orphans/SwiftFile.swift
137
+ - features/fixtures/Orphans/Orphans/ViewController.h
138
+ - features/fixtures/Orphans/Orphans/ViewController.m
139
+ - features/fixtures/Orphans/Orphans/main.m
140
+ - features/step_definitions/findxcprojorphan_steps.rb
141
+ - features/support/env.rb
142
+ - findxcprojorphan.gemspec
143
+ - lib/findxcprojorphan.rb
144
+ - lib/findxcprojorphan/version.rb
145
+ homepage: https://github.com/americanexpress/findxcprojorphan
146
+ licenses:
147
+ - coil
148
+ metadata: {}
149
+ post_install_message:
150
+ rdoc_options: []
151
+ require_paths:
152
+ - lib
153
+ required_ruby_version: !ruby/object:Gem::Requirement
154
+ requirements:
155
+ - - ">="
156
+ - !ruby/object:Gem::Version
157
+ version: '0'
158
+ required_rubygems_version: !ruby/object:Gem::Requirement
159
+ requirements:
160
+ - - ">="
161
+ - !ruby/object:Gem::Version
162
+ version: '0'
163
+ requirements: []
164
+ rubyforge_project:
165
+ rubygems_version: 2.5.1
166
+ signing_key:
167
+ specification_version: 4
168
+ summary: Finds source files unreferenced in Xcode project
169
+ test_files:
170
+ - features/findxcprojorphan.feature
171
+ - features/fixtures/NoOrphans/NoOrphans.xcodeproj/project.pbxproj
172
+ - features/fixtures/NoOrphans/NoOrphans.xcodeproj/project.xcworkspace/contents.xcworkspacedata
173
+ - features/fixtures/NoOrphans/NoOrphans/AppDelegate.h
174
+ - features/fixtures/NoOrphans/NoOrphans/AppDelegate.m
175
+ - features/fixtures/NoOrphans/NoOrphans/Assets.xcassets/AppIcon.appiconset/Contents.json
176
+ - features/fixtures/NoOrphans/NoOrphans/Base.lproj/LaunchScreen.storyboard
177
+ - features/fixtures/NoOrphans/NoOrphans/Base.lproj/Main.storyboard
178
+ - features/fixtures/NoOrphans/NoOrphans/Info.plist
179
+ - features/fixtures/NoOrphans/NoOrphans/ViewController.h
180
+ - features/fixtures/NoOrphans/NoOrphans/ViewController.m
181
+ - features/fixtures/NoOrphans/NoOrphans/main.m
182
+ - features/fixtures/Orphans/Orphans.xcodeproj/project.pbxproj
183
+ - features/fixtures/Orphans/Orphans.xcodeproj/project.xcworkspace/contents.xcworkspacedata
184
+ - features/fixtures/Orphans/Orphans/AppDelegate.h
185
+ - features/fixtures/Orphans/Orphans/AppDelegate.m
186
+ - features/fixtures/Orphans/Orphans/Assets.xcassets/AppIcon.appiconset/Contents.json
187
+ - features/fixtures/Orphans/Orphans/Base.lproj/LaunchScreen.storyboard
188
+ - features/fixtures/Orphans/Orphans/Base.lproj/Main.storyboard
189
+ - features/fixtures/Orphans/Orphans/Info.plist
190
+ - features/fixtures/Orphans/Orphans/ObjCFile.h
191
+ - features/fixtures/Orphans/Orphans/ObjCFile.m
192
+ - features/fixtures/Orphans/Orphans/Orphans-Bridging-Header.h
193
+ - features/fixtures/Orphans/Orphans/SwiftFile.swift
194
+ - features/fixtures/Orphans/Orphans/ViewController.h
195
+ - features/fixtures/Orphans/Orphans/ViewController.m
196
+ - features/fixtures/Orphans/Orphans/main.m
197
+ - features/step_definitions/findxcprojorphan_steps.rb
198
+ - features/support/env.rb