├── .gitignore ├── .travis.yml ├── AcknowledgementsBundle.podspec ├── Demo ├── Demo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Demo.xcscheme ├── Demo.xcworkspace │ └── contents.xcworkspacedata ├── Demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Demo-Info.plist │ ├── Demo-Prefix.pch │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ └── screenshot.imageset │ │ │ ├── Contents.json │ │ │ └── screenshot.png │ ├── Main.storyboard │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock └── Pods │ ├── AcknowledgementsBundle │ ├── Dummy.h │ ├── LICENSE │ ├── Pods-acknowledgements.plist │ ├── README.md │ └── Root.plist │ ├── Headers │ ├── Build │ │ └── AcknowledgementsBundle │ │ │ └── Dummy.h │ └── Public │ │ └── AcknowledgementsBundle │ │ └── Dummy.h │ ├── Local Podspecs │ └── AcknowledgementsBundle.podspec │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── Pods-AcknowledgementsBundle │ ├── Pods-AcknowledgementsBundle-Private.xcconfig │ ├── Pods-AcknowledgementsBundle-dummy.m │ ├── Pods-AcknowledgementsBundle-prefix.pch │ └── Pods-AcknowledgementsBundle.xcconfig │ └── Pods │ ├── Pods-acknowledgements.markdown │ ├── Pods-acknowledgements.plist │ ├── Pods-dummy.m │ ├── Pods-environment.h │ ├── Pods-resources.sh │ ├── Pods.debug.xcconfig │ └── Pods.release.xcconfig ├── Dummy.h ├── LICENSE ├── Pods-acknowledgements.plist ├── README.md └── Root.plist /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | .DS_Store 3 | */build/* 4 | *.pbxuser 5 | !default.pbxuser 6 | *.mode1v3 7 | !default.mode1v3 8 | *.mode2v3 9 | !default.mode2v3 10 | *.perspectivev3 11 | !default.perspectivev3 12 | xcuserdata 13 | profile 14 | *.moved-aside 15 | DerivedData 16 | .idea/ 17 | *.hmap 18 | *.xccheckout 19 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | 2 | osx_image: xcode6.4 3 | language: objective-c 4 | 5 | before_install: 6 | - gem install cocoapods --pre --quiet 7 | - pod --version 8 | - pod setup --silent 9 | - pod repo update --silent 10 | 11 | script: 12 | - cd Demo 13 | - pod update 14 | - xctool -workspace Demo.xcworkspace -scheme 'Demo' -configuration Release -sdk iphonesimulator -arch i386 build 15 | - cd .. 16 | - mv Demo/Pods/Target\ Support\ Files/Pods/Pods-acknowledgements.plist . 17 | - pod lib lint 18 | -------------------------------------------------------------------------------- /AcknowledgementsBundle.podspec: -------------------------------------------------------------------------------- 1 | 2 | Pod::Spec.new do |s| 3 | 4 | s.name = "AcknowledgementsBundle" 5 | s.version = "0.0.2" 6 | s.summary = "Easily add a Settings.bundle with CocoaPods acknowledgements to your iOS App." 7 | s.homepage = "https://github.com/rivera-ernesto/AcknowledgmentsBundle" 8 | s.screenshots = [ "http://rivera-ernesto.github.io/AcknowledgementsBundle/images/screenshot1.png", 9 | "http://rivera-ernesto.github.io/AcknowledgementsBundle/images/screenshot2.png"] 10 | s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' } 11 | s.author = { "Ernesto Rivera" => "rivera.ernesto@gmail.com" } 12 | 13 | s.platform = :ios 14 | s.source = { :git => "https://github.com/rivera-ernesto/AcknowledgmentsBundle.git", :tag => "#{s.version}" } 15 | 16 | s.preserve_paths = "README.md" 17 | s.source_files = 'Dummy.h' 18 | s.requires_arc = true 19 | s.resource_bundle = { 'Settings' => ['*.plist', '../Pods-acknowledgements.plist'] } 20 | 21 | end 22 | -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | C82C0F0297734644BB6C99EF /* libPods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A1CB6CCD72C430CBB382DC8 /* libPods.a */; }; 11 | E5B8470E18C6C6E4005DF225 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5B8470D18C6C6E4005DF225 /* Foundation.framework */; }; 12 | E5B8471018C6C6E4005DF225 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5B8470F18C6C6E4005DF225 /* CoreGraphics.framework */; }; 13 | E5B8471218C6C6E4005DF225 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5B8471118C6C6E4005DF225 /* UIKit.framework */; }; 14 | E5B8471818C6C6E4005DF225 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E5B8471618C6C6E4005DF225 /* InfoPlist.strings */; }; 15 | E5B8471A18C6C6E4005DF225 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = E5B8471918C6C6E4005DF225 /* main.m */; }; 16 | E5B8471E18C6C6E4005DF225 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E5B8471D18C6C6E4005DF225 /* AppDelegate.m */; }; 17 | E5B8472418C6C6E4005DF225 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E5B8472318C6C6E4005DF225 /* ViewController.m */; }; 18 | E5B8472618C6C6E4005DF225 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E5B8472518C6C6E4005DF225 /* Images.xcassets */; }; 19 | E5B8474318C6C845005DF225 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E5B8474218C6C845005DF225 /* Main.storyboard */; }; 20 | /* End PBXBuildFile section */ 21 | 22 | /* Begin PBXFileReference section */ 23 | 15F1B00D1C0263504631DE52 /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = ""; }; 24 | 7A1CB6CCD72C430CBB382DC8 /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; }; 25 | 9A06562326380BAC82EF94CF /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = ""; }; 26 | E5B8470A18C6C6E4005DF225 /* Demo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Demo.app; sourceTree = BUILT_PRODUCTS_DIR; }; 27 | E5B8470D18C6C6E4005DF225 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 28 | E5B8470F18C6C6E4005DF225 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 29 | E5B8471118C6C6E4005DF225 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 30 | E5B8471518C6C6E4005DF225 /* Demo-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Demo-Info.plist"; sourceTree = ""; }; 31 | E5B8471718C6C6E4005DF225 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 32 | E5B8471918C6C6E4005DF225 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 33 | E5B8471B18C6C6E4005DF225 /* Demo-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Demo-Prefix.pch"; sourceTree = ""; }; 34 | E5B8471C18C6C6E4005DF225 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 35 | E5B8471D18C6C6E4005DF225 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 36 | E5B8472218C6C6E4005DF225 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; 37 | E5B8472318C6C6E4005DF225 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; }; 38 | E5B8472518C6C6E4005DF225 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 39 | E5B8472C18C6C6E4005DF225 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 40 | E5B8474218C6C845005DF225 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = ""; }; 41 | /* End PBXFileReference section */ 42 | 43 | /* Begin PBXFrameworksBuildPhase section */ 44 | E5B8470718C6C6E4005DF225 /* Frameworks */ = { 45 | isa = PBXFrameworksBuildPhase; 46 | buildActionMask = 2147483647; 47 | files = ( 48 | E5B8471018C6C6E4005DF225 /* CoreGraphics.framework in Frameworks */, 49 | E5B8471218C6C6E4005DF225 /* UIKit.framework in Frameworks */, 50 | E5B8470E18C6C6E4005DF225 /* Foundation.framework in Frameworks */, 51 | C82C0F0297734644BB6C99EF /* libPods.a in Frameworks */, 52 | ); 53 | runOnlyForDeploymentPostprocessing = 0; 54 | }; 55 | /* End PBXFrameworksBuildPhase section */ 56 | 57 | /* Begin PBXGroup section */ 58 | 576C1A03C612C2DCDA45290A /* Pods */ = { 59 | isa = PBXGroup; 60 | children = ( 61 | 15F1B00D1C0263504631DE52 /* Pods.debug.xcconfig */, 62 | 9A06562326380BAC82EF94CF /* Pods.release.xcconfig */, 63 | ); 64 | name = Pods; 65 | sourceTree = ""; 66 | }; 67 | E5B8470118C6C6E4005DF225 = { 68 | isa = PBXGroup; 69 | children = ( 70 | E5B8471318C6C6E4005DF225 /* Demo */, 71 | E5B8470C18C6C6E4005DF225 /* Frameworks */, 72 | E5B8470B18C6C6E4005DF225 /* Products */, 73 | 576C1A03C612C2DCDA45290A /* Pods */, 74 | ); 75 | sourceTree = ""; 76 | }; 77 | E5B8470B18C6C6E4005DF225 /* Products */ = { 78 | isa = PBXGroup; 79 | children = ( 80 | E5B8470A18C6C6E4005DF225 /* Demo.app */, 81 | ); 82 | name = Products; 83 | sourceTree = ""; 84 | }; 85 | E5B8470C18C6C6E4005DF225 /* Frameworks */ = { 86 | isa = PBXGroup; 87 | children = ( 88 | E5B8470D18C6C6E4005DF225 /* Foundation.framework */, 89 | E5B8470F18C6C6E4005DF225 /* CoreGraphics.framework */, 90 | E5B8471118C6C6E4005DF225 /* UIKit.framework */, 91 | E5B8472C18C6C6E4005DF225 /* XCTest.framework */, 92 | 7A1CB6CCD72C430CBB382DC8 /* libPods.a */, 93 | ); 94 | name = Frameworks; 95 | sourceTree = ""; 96 | }; 97 | E5B8471318C6C6E4005DF225 /* Demo */ = { 98 | isa = PBXGroup; 99 | children = ( 100 | E5B8471C18C6C6E4005DF225 /* AppDelegate.h */, 101 | E5B8471D18C6C6E4005DF225 /* AppDelegate.m */, 102 | E5B8474218C6C845005DF225 /* Main.storyboard */, 103 | E5B8472218C6C6E4005DF225 /* ViewController.h */, 104 | E5B8472318C6C6E4005DF225 /* ViewController.m */, 105 | E5B8472518C6C6E4005DF225 /* Images.xcassets */, 106 | E5B8471418C6C6E4005DF225 /* Supporting Files */, 107 | ); 108 | path = Demo; 109 | sourceTree = ""; 110 | }; 111 | E5B8471418C6C6E4005DF225 /* Supporting Files */ = { 112 | isa = PBXGroup; 113 | children = ( 114 | E5B8471518C6C6E4005DF225 /* Demo-Info.plist */, 115 | E5B8471618C6C6E4005DF225 /* InfoPlist.strings */, 116 | E5B8471918C6C6E4005DF225 /* main.m */, 117 | E5B8471B18C6C6E4005DF225 /* Demo-Prefix.pch */, 118 | ); 119 | name = "Supporting Files"; 120 | sourceTree = ""; 121 | }; 122 | /* End PBXGroup section */ 123 | 124 | /* Begin PBXNativeTarget section */ 125 | E5B8470918C6C6E4005DF225 /* Demo */ = { 126 | isa = PBXNativeTarget; 127 | buildConfigurationList = E5B8473C18C6C6E4005DF225 /* Build configuration list for PBXNativeTarget "Demo" */; 128 | buildPhases = ( 129 | 3CF0FDEB5D8D4AE8B653837F /* Check Pods Manifest.lock */, 130 | E5B8470618C6C6E4005DF225 /* Sources */, 131 | E5B8470718C6C6E4005DF225 /* Frameworks */, 132 | E5B8470818C6C6E4005DF225 /* Resources */, 133 | 7EF8460A3ADB4EC598358BF1 /* Copy Pods Resources */, 134 | ); 135 | buildRules = ( 136 | ); 137 | dependencies = ( 138 | ); 139 | name = Demo; 140 | productName = Demo; 141 | productReference = E5B8470A18C6C6E4005DF225 /* Demo.app */; 142 | productType = "com.apple.product-type.application"; 143 | }; 144 | /* End PBXNativeTarget section */ 145 | 146 | /* Begin PBXProject section */ 147 | E5B8470218C6C6E4005DF225 /* Project object */ = { 148 | isa = PBXProject; 149 | attributes = { 150 | LastUpgradeCheck = 0610; 151 | ORGANIZATIONNAME = PTEz; 152 | }; 153 | buildConfigurationList = E5B8470518C6C6E4005DF225 /* Build configuration list for PBXProject "Demo" */; 154 | compatibilityVersion = "Xcode 3.2"; 155 | developmentRegion = English; 156 | hasScannedForEncodings = 0; 157 | knownRegions = ( 158 | en, 159 | Base, 160 | ); 161 | mainGroup = E5B8470118C6C6E4005DF225; 162 | productRefGroup = E5B8470B18C6C6E4005DF225 /* Products */; 163 | projectDirPath = ""; 164 | projectRoot = ""; 165 | targets = ( 166 | E5B8470918C6C6E4005DF225 /* Demo */, 167 | ); 168 | }; 169 | /* End PBXProject section */ 170 | 171 | /* Begin PBXResourcesBuildPhase section */ 172 | E5B8470818C6C6E4005DF225 /* Resources */ = { 173 | isa = PBXResourcesBuildPhase; 174 | buildActionMask = 2147483647; 175 | files = ( 176 | E5B8474318C6C845005DF225 /* Main.storyboard in Resources */, 177 | E5B8472618C6C6E4005DF225 /* Images.xcassets in Resources */, 178 | E5B8471818C6C6E4005DF225 /* InfoPlist.strings in Resources */, 179 | ); 180 | runOnlyForDeploymentPostprocessing = 0; 181 | }; 182 | /* End PBXResourcesBuildPhase section */ 183 | 184 | /* Begin PBXShellScriptBuildPhase section */ 185 | 3CF0FDEB5D8D4AE8B653837F /* Check Pods Manifest.lock */ = { 186 | isa = PBXShellScriptBuildPhase; 187 | buildActionMask = 2147483647; 188 | files = ( 189 | ); 190 | inputPaths = ( 191 | ); 192 | name = "Check Pods Manifest.lock"; 193 | outputPaths = ( 194 | ); 195 | runOnlyForDeploymentPostprocessing = 0; 196 | shellPath = /bin/sh; 197 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 198 | showEnvVarsInLog = 0; 199 | }; 200 | 7EF8460A3ADB4EC598358BF1 /* Copy Pods Resources */ = { 201 | isa = PBXShellScriptBuildPhase; 202 | buildActionMask = 2147483647; 203 | files = ( 204 | ); 205 | inputPaths = ( 206 | ); 207 | name = "Copy Pods Resources"; 208 | outputPaths = ( 209 | ); 210 | runOnlyForDeploymentPostprocessing = 0; 211 | shellPath = /bin/sh; 212 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-resources.sh\"\n"; 213 | showEnvVarsInLog = 0; 214 | }; 215 | /* End PBXShellScriptBuildPhase section */ 216 | 217 | /* Begin PBXSourcesBuildPhase section */ 218 | E5B8470618C6C6E4005DF225 /* Sources */ = { 219 | isa = PBXSourcesBuildPhase; 220 | buildActionMask = 2147483647; 221 | files = ( 222 | E5B8472418C6C6E4005DF225 /* ViewController.m in Sources */, 223 | E5B8471E18C6C6E4005DF225 /* AppDelegate.m in Sources */, 224 | E5B8471A18C6C6E4005DF225 /* main.m in Sources */, 225 | ); 226 | runOnlyForDeploymentPostprocessing = 0; 227 | }; 228 | /* End PBXSourcesBuildPhase section */ 229 | 230 | /* Begin PBXVariantGroup section */ 231 | E5B8471618C6C6E4005DF225 /* InfoPlist.strings */ = { 232 | isa = PBXVariantGroup; 233 | children = ( 234 | E5B8471718C6C6E4005DF225 /* en */, 235 | ); 236 | name = InfoPlist.strings; 237 | sourceTree = ""; 238 | }; 239 | /* End PBXVariantGroup section */ 240 | 241 | /* Begin XCBuildConfiguration section */ 242 | E5B8473A18C6C6E4005DF225 /* Debug */ = { 243 | isa = XCBuildConfiguration; 244 | buildSettings = { 245 | ALWAYS_SEARCH_USER_PATHS = NO; 246 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 247 | CLANG_CXX_LIBRARY = "libc++"; 248 | CLANG_ENABLE_MODULES = YES; 249 | CLANG_ENABLE_OBJC_ARC = YES; 250 | CLANG_WARN_BOOL_CONVERSION = YES; 251 | CLANG_WARN_CONSTANT_CONVERSION = YES; 252 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 253 | CLANG_WARN_EMPTY_BODY = YES; 254 | CLANG_WARN_ENUM_CONVERSION = YES; 255 | CLANG_WARN_INT_CONVERSION = YES; 256 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 257 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 258 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 259 | COPY_PHASE_STRIP = NO; 260 | GCC_C_LANGUAGE_STANDARD = gnu99; 261 | GCC_DYNAMIC_NO_PIC = NO; 262 | GCC_OPTIMIZATION_LEVEL = 0; 263 | GCC_PREPROCESSOR_DEFINITIONS = ( 264 | "DEBUG=1", 265 | "$(inherited)", 266 | ); 267 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 268 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 269 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 270 | GCC_WARN_UNDECLARED_SELECTOR = YES; 271 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 272 | GCC_WARN_UNUSED_FUNCTION = YES; 273 | GCC_WARN_UNUSED_VARIABLE = YES; 274 | IPHONEOS_DEPLOYMENT_TARGET = 4.3; 275 | ONLY_ACTIVE_ARCH = YES; 276 | SDKROOT = iphoneos; 277 | }; 278 | name = Debug; 279 | }; 280 | E5B8473B18C6C6E4005DF225 /* Release */ = { 281 | isa = XCBuildConfiguration; 282 | buildSettings = { 283 | ALWAYS_SEARCH_USER_PATHS = NO; 284 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 285 | CLANG_CXX_LIBRARY = "libc++"; 286 | CLANG_ENABLE_MODULES = YES; 287 | CLANG_ENABLE_OBJC_ARC = YES; 288 | CLANG_WARN_BOOL_CONVERSION = YES; 289 | CLANG_WARN_CONSTANT_CONVERSION = YES; 290 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 291 | CLANG_WARN_EMPTY_BODY = YES; 292 | CLANG_WARN_ENUM_CONVERSION = YES; 293 | CLANG_WARN_INT_CONVERSION = YES; 294 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 295 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 296 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 297 | COPY_PHASE_STRIP = YES; 298 | ENABLE_NS_ASSERTIONS = NO; 299 | GCC_C_LANGUAGE_STANDARD = gnu99; 300 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 301 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 302 | GCC_WARN_UNDECLARED_SELECTOR = YES; 303 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 304 | GCC_WARN_UNUSED_FUNCTION = YES; 305 | GCC_WARN_UNUSED_VARIABLE = YES; 306 | IPHONEOS_DEPLOYMENT_TARGET = 4.3; 307 | SDKROOT = iphoneos; 308 | VALIDATE_PRODUCT = YES; 309 | }; 310 | name = Release; 311 | }; 312 | E5B8473D18C6C6E4005DF225 /* Debug */ = { 313 | isa = XCBuildConfiguration; 314 | baseConfigurationReference = 15F1B00D1C0263504631DE52 /* Pods.debug.xcconfig */; 315 | buildSettings = { 316 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 317 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 318 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 319 | GCC_PREFIX_HEADER = "Demo/Demo-Prefix.pch"; 320 | INFOPLIST_FILE = "Demo/Demo-Info.plist"; 321 | IPHONEOS_DEPLOYMENT_TARGET = 5.0; 322 | PRODUCT_NAME = "$(TARGET_NAME)"; 323 | TARGETED_DEVICE_FAMILY = "1,2"; 324 | WRAPPER_EXTENSION = app; 325 | }; 326 | name = Debug; 327 | }; 328 | E5B8473E18C6C6E4005DF225 /* Release */ = { 329 | isa = XCBuildConfiguration; 330 | baseConfigurationReference = 9A06562326380BAC82EF94CF /* Pods.release.xcconfig */; 331 | buildSettings = { 332 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 333 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 334 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 335 | GCC_PREFIX_HEADER = "Demo/Demo-Prefix.pch"; 336 | INFOPLIST_FILE = "Demo/Demo-Info.plist"; 337 | IPHONEOS_DEPLOYMENT_TARGET = 5.0; 338 | PRODUCT_NAME = "$(TARGET_NAME)"; 339 | TARGETED_DEVICE_FAMILY = "1,2"; 340 | WRAPPER_EXTENSION = app; 341 | }; 342 | name = Release; 343 | }; 344 | /* End XCBuildConfiguration section */ 345 | 346 | /* Begin XCConfigurationList section */ 347 | E5B8470518C6C6E4005DF225 /* Build configuration list for PBXProject "Demo" */ = { 348 | isa = XCConfigurationList; 349 | buildConfigurations = ( 350 | E5B8473A18C6C6E4005DF225 /* Debug */, 351 | E5B8473B18C6C6E4005DF225 /* Release */, 352 | ); 353 | defaultConfigurationIsVisible = 0; 354 | defaultConfigurationName = Release; 355 | }; 356 | E5B8473C18C6C6E4005DF225 /* Build configuration list for PBXNativeTarget "Demo" */ = { 357 | isa = XCConfigurationList; 358 | buildConfigurations = ( 359 | E5B8473D18C6C6E4005DF225 /* Debug */, 360 | E5B8473E18C6C6E4005DF225 /* Release */, 361 | ); 362 | defaultConfigurationIsVisible = 0; 363 | defaultConfigurationName = Release; 364 | }; 365 | /* End XCConfigurationList section */ 366 | }; 367 | rootObject = E5B8470218C6C6E4005DF225 /* Project object */; 368 | } 369 | -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/xcshareddata/xcschemes/Demo.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 61 | 62 | 68 | 69 | 70 | 71 | 72 | 73 | 79 | 80 | 86 | 87 | 88 | 89 | 91 | 92 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /Demo/Demo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // Demo 4 | // 5 | // Created by 利辺羅 on 2014/03/05. 6 | // Copyright (c) 2014年 PTEz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // Demo 4 | // 5 | // Created by 利辺羅 on 2014/03/05. 6 | // Copyright (c) 2014年 PTEz. All rights reserved. 7 | // 8 | 9 | #import "AppDelegate.h" 10 | 11 | @implementation AppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | // Override point for customization after application launch. 16 | return YES; 17 | } 18 | 19 | - (void)applicationWillResignActive:(UIApplication *)application 20 | { 21 | // 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. 22 | // 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. 23 | } 24 | 25 | - (void)applicationDidEnterBackground:(UIApplication *)application 26 | { 27 | // 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. 28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 29 | } 30 | 31 | - (void)applicationWillEnterForeground:(UIApplication *)application 32 | { 33 | // 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. 34 | } 35 | 36 | - (void)applicationDidBecomeActive:(UIApplication *)application 37 | { 38 | // 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. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application 42 | { 43 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 44 | } 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /Demo/Demo/Demo-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | ptez.${PRODUCT_NAME:rfc1034identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /Demo/Demo/Demo-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | #import 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "40x40", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "60x60", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "60x60", 21 | "scale" : "3x" 22 | } 23 | ], 24 | "info" : { 25 | "version" : 1, 26 | "author" : "xcode" 27 | } 28 | } -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "subtype" : "retina4", 14 | "extent" : "full-screen", 15 | "minimum-system-version" : "7.0", 16 | "scale" : "2x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/screenshot.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "screenshot.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/screenshot.imageset/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivera-ernesto/AcknowledgementsBundle/7d5c947985b8bed2a67442614cb49d9c12850c8e/Demo/Demo/Images.xcassets/screenshot.imageset/screenshot.png -------------------------------------------------------------------------------- /Demo/Demo/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /Demo/Demo/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // Demo 4 | // 5 | // Created by 利辺羅 on 2014/03/05. 6 | // Copyright (c) 2014年 PTEz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Demo/Demo/ViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.m 3 | // Demo 4 | // 5 | // Created by 利辺羅 on 2014/03/05. 6 | // Copyright (c) 2014年 PTEz. All rights reserved. 7 | // 8 | 9 | #import "ViewController.h" 10 | 11 | @interface ViewController () 12 | 13 | @end 14 | 15 | @implementation ViewController 16 | 17 | - (void)viewDidLoad 18 | { 19 | [super viewDidLoad]; 20 | // Do any additional setup after loading the view, typically from a nib. 21 | } 22 | 23 | - (void)didReceiveMemoryWarning 24 | { 25 | [super didReceiveMemoryWarning]; 26 | // Dispose of any resources that can be recreated. 27 | } 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /Demo/Demo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/Demo/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // Demo 4 | // 5 | // Created by 利辺羅 on 2014/03/05. 6 | // Copyright (c) 2014年 PTEz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Demo/Podfile: -------------------------------------------------------------------------------- 1 | 2 | platform :ios 3 | 4 | pod 'AcknowledgementsBundle' 5 | -------------------------------------------------------------------------------- /Demo/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - AcknowledgementsBundle (0.0.2) 3 | 4 | DEPENDENCIES: 5 | - AcknowledgementsBundle 6 | 7 | SPEC CHECKSUMS: 8 | AcknowledgementsBundle: 1f07f66490db3ec5321fb44ace6a63fe26e83bce 9 | 10 | COCOAPODS: 0.35.0 11 | -------------------------------------------------------------------------------- /Demo/Pods/AcknowledgementsBundle/Dummy.h: -------------------------------------------------------------------------------- 1 | // 2 | // Dummy.h 3 | // 4 | // Pass CocoaPods validation. 5 | // -------------------------------------------------------------------------------- /Demo/Pods/AcknowledgementsBundle/LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2014 Ernesto Rivera 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. -------------------------------------------------------------------------------- /Demo/Pods/AcknowledgementsBundle/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | ../Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Demo/Pods/AcknowledgementsBundle/README.md: -------------------------------------------------------------------------------- 1 | AcknowledgementsBundle 2 | ====================== 3 | 4 | Easily add a Settings.bundle with [CocoaPods](http://cocoapods.org)' acknowledgements to your iOS App. 5 | 6 | ![Screenshot 1](http://rivera-ernesto.github.io/AcknowledgementsBundle/images/screenshot1.png) ![Screenshot 2](http://rivera-ernesto.github.io/AcknowledgementsBundle/images/screenshot2.png) 7 | 8 | ## Installation 9 | 10 | Add `pod 'AcknowledgementsBundle'` to your [CocoaPods](http://cocoapods.org)' [Podfile](http://docs.cocoapods.org/podfile.html): 11 | 12 | ```ruby 13 | platform :ios 14 | 15 | pod 'AcknowledgementsBundle' 16 | 17 | # ...more Pods! 18 | ``` 19 | 20 | Done! No code needed. 21 | 22 | ## License 23 | 24 | Licensed under the Apache License, Version 2.0 (the "License"); 25 | you may not use this file except in compliance with the License. 26 | You may obtain a copy of the License at 27 | 28 | http://www.apache.org/licenses/LICENSE-2.0 29 | 30 | Unless required by applicable law or agreed to in writing, software 31 | distributed under the License is distributed on an "AS IS" BASIS, 32 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | See the License for the specific language governing permissions and 34 | limitations under the License. 35 | 36 | 37 | -------------------------------------------------------------------------------- /Demo/Pods/AcknowledgementsBundle/Root.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | Test 7 | PreferenceSpecifiers 8 | 9 | 10 | Type 11 | PSChildPaneSpecifier 12 | Title 13 | Acknowledgments 14 | File 15 | Pods-acknowledgements 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/AcknowledgementsBundle/Dummy.h: -------------------------------------------------------------------------------- 1 | ../../../AcknowledgementsBundle/Dummy.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AcknowledgementsBundle/Dummy.h: -------------------------------------------------------------------------------- 1 | ../../../AcknowledgementsBundle/Dummy.h -------------------------------------------------------------------------------- /Demo/Pods/Local Podspecs/AcknowledgementsBundle.podspec: -------------------------------------------------------------------------------- 1 | 2 | Pod::Spec.new do |s| 3 | s.name = "AcknowledgementsBundle" 4 | s.version = "0.0.1" 5 | s.summary = "Easily add a Settings.bundle with CocoaPods acknowledgements to your iOS App." 6 | s.homepage = "https://github.com/rivera-ernesto/AcknowledgmentsBundle" 7 | # s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2" 8 | 9 | 10 | # ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 11 | # 12 | # Licensing your code is important. See http://choosealicense.com for more info. 13 | # CocoaPods will detect a license file if there is a named LICENSE* 14 | # Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'. 15 | # 16 | 17 | s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' } 18 | 19 | 20 | # ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 21 | # 22 | # Specify the authors of the library, with email addresses. Email addresses 23 | # of the authors by using the SCM log. E.g. $ git log. If no email can be 24 | # found CocoaPods accept just the names. 25 | # 26 | 27 | s.author = { "Ernesto Rivera" => "rivera_ernesto@cyberagent.co.jp" } 28 | 29 | s.platform = :ios 30 | # s.platform = :ios, '5.0' 31 | 32 | # When using multiple platforms 33 | # s.ios.deployment_target = '5.0' 34 | # s.osx.deployment_target = '10.7' 35 | 36 | 37 | # ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 38 | # 39 | # Specify the location from where the source should be retrieved. 40 | # Supports git, hg, bzr, svn and HTTP. 41 | # 42 | 43 | s.source = { :git => "https://github.com/rivera-ernesto/AcknowledgmentsBundle.git", :commit => "375090840a1f90e7c18fa3d236d6d271ff8a3dcb" } 44 | 45 | 46 | # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 47 | # 48 | # CocoaPods is smart about how it includes source code. For source files 49 | # giving a folder will include any h, m, mm, c & cpp files. For header 50 | # files it will include any header in the folder. 51 | # Not including the public_header_files will make all headers public. 52 | # 53 | 54 | s.source_files = 'Dummy.h' 55 | # s.exclude_files = 'Classes/Exclude' 56 | 57 | # s.public_header_files = 'Classes/**/*.h' 58 | 59 | 60 | # ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 61 | # 62 | # A list of resources included with the Pod. These are copied into the 63 | # target bundle with a build phase script. Anything else will be cleaned. 64 | # You can preserve files from being cleaned, please don't preserve 65 | # non-essential files like tests, examples and documentation. 66 | # 67 | 68 | s.resource_bundle = { 'Settings' => ['*.plist', '../Pods-acknowledgements.plist'] } 69 | # s.resources = "Resources/*.png" 70 | 71 | # s.preserve_paths = "FilesToSave", "MoreFilesToSave" 72 | 73 | 74 | # ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 75 | # 76 | # Link your library with frameworks, or libraries. Libraries do not include 77 | # the lib prefix of their name. 78 | # 79 | 80 | # s.framework = 'SomeFramework' 81 | # s.frameworks = 'SomeFramework', 'AnotherFramework' 82 | 83 | # s.library = 'iconv' 84 | # s.libraries = 'iconv', 'xml2' 85 | 86 | 87 | # ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 88 | # 89 | # If your library depends on compiler flags you can set them in the xcconfig hash 90 | # where they will only apply to your library. If you depend on other Podspecs 91 | # you can include multiple dependencies to ensure it works. 92 | 93 | # s.requires_arc = true 94 | 95 | # s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' } 96 | # s.dependency 'JSONKit', '~> 1.4' 97 | 98 | end 99 | -------------------------------------------------------------------------------- /Demo/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - AcknowledgementsBundle (0.0.2) 3 | 4 | DEPENDENCIES: 5 | - AcknowledgementsBundle 6 | 7 | SPEC CHECKSUMS: 8 | AcknowledgementsBundle: 1f07f66490db3ec5321fb44ace6a63fe26e83bce 9 | 10 | COCOAPODS: 0.35.0 11 | -------------------------------------------------------------------------------- /Demo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | archiveVersion 6 | 1 7 | classes 8 | 9 | objectVersion 10 | 46 11 | objects 12 | 13 | 0189616B2F37770C9092ADAB 14 | 15 | fileRef 16 | BAFB1B0B0E99B22364BF9BF2 17 | isa 18 | PBXBuildFile 19 | 20 | 01956A44BE77C2CB7140312B 21 | 22 | children 23 | 24 | 1ABCB7D2EF48EEB8EF48D861 25 | 4D6A4350D7163E8AC897AF97 26 | 27 | isa 28 | PBXGroup 29 | name 30 | Resources 31 | sourceTree 32 | <group> 33 | 34 | 0213C9BCE60CC0F43D8FBDB4 35 | 36 | fileRef 37 | 6719CA60F6AB8C93423C5213 38 | isa 39 | PBXBuildFile 40 | 41 | 0E127475A3A3D39D001AFCC8 42 | 43 | buildActionMask 44 | 2147483647 45 | files 46 | 47 | 0213C9BCE60CC0F43D8FBDB4 48 | 49 | isa 50 | PBXSourcesBuildPhase 51 | runOnlyForDeploymentPostprocessing 52 | 0 53 | 54 | 1ABCB7D2EF48EEB8EF48D861 55 | 56 | includeInIndex 57 | 1 58 | isa 59 | PBXFileReference 60 | lastKnownFileType 61 | text.plist.xml 62 | path 63 | Pods-acknowledgements.plist 64 | sourceTree 65 | <group> 66 | 67 | 1BB67F16A18693EAC76C2A68 68 | 69 | buildActionMask 70 | 2147483647 71 | files 72 | 73 | 1E9E09E597CFF2FE489A0E84 74 | 75 | isa 76 | PBXFrameworksBuildPhase 77 | runOnlyForDeploymentPostprocessing 78 | 0 79 | 80 | 1E9E09E597CFF2FE489A0E84 81 | 82 | fileRef 83 | BAFB1B0B0E99B22364BF9BF2 84 | isa 85 | PBXBuildFile 86 | 87 | 1F62395C82DD920154BC0467 88 | 89 | buildConfigurationList 90 | A30E1D70669832C777DB2C97 91 | buildPhases 92 | 93 | AB10B915D7B24DE5244212E7 94 | 85BFBE97C00E42F77E06AE4A 95 | 472DD97F6B943E385D47D15D 96 | 97 | buildRules 98 | 99 | dependencies 100 | 101 | 39BE04ED4D1507B149C1FCAE 102 | 103 | isa 104 | PBXNativeTarget 105 | name 106 | Pods-AcknowledgementsBundle 107 | productName 108 | Pods-AcknowledgementsBundle 109 | productReference 110 | C33FDC5B45F2813C72C44676 111 | productType 112 | com.apple.product-type.library.static 113 | 114 | 203BCC23E9F0A7524791D049 115 | 116 | children 117 | 118 | 7A27D4B2FB5DDB0B75382C1C 119 | EE31AAB6B2DBA0FFCD67CF60 120 | 6719CA60F6AB8C93423C5213 121 | 9A9EF14FD088B07C2753F9BD 122 | FFCC05FDA18EB4181327DEF4 123 | 9302AA219648334F36E25EE5 124 | 7AAAEE636AA138A3AE139C86 125 | 126 | isa 127 | PBXGroup 128 | name 129 | Pods 130 | path 131 | Target Support Files/Pods 132 | sourceTree 133 | <group> 134 | 135 | 24780E0A2A2390B8C5F9B346 136 | 137 | children 138 | 139 | BAFB1B0B0E99B22364BF9BF2 140 | 141 | isa 142 | PBXGroup 143 | name 144 | iOS 145 | sourceTree 146 | <group> 147 | 148 | 257D9A1640C587E7F72B0F62 149 | 150 | fileRef 151 | 1ABCB7D2EF48EEB8EF48D861 152 | isa 153 | PBXBuildFile 154 | 155 | 25D0B47C98E384FB8DABCC04 156 | 157 | children 158 | 159 | 203BCC23E9F0A7524791D049 160 | 161 | isa 162 | PBXGroup 163 | name 164 | Targets Support Files 165 | sourceTree 166 | <group> 167 | 168 | 299B116A9C5819327D794A09 169 | 170 | includeInIndex 171 | 1 172 | isa 173 | PBXFileReference 174 | lastKnownFileType 175 | sourcecode.c.h 176 | path 177 | Pods-AcknowledgementsBundle-prefix.pch 178 | sourceTree 179 | <group> 180 | 181 | 29D7A3DB3B16D806E1D062B9 182 | 183 | children 184 | 185 | 7527F75CE4CD5329D83035CE 186 | 3383866AC0BCA29AE137008A 187 | 5662EEF8A508318DF987D5F5 188 | F2CAE635C12FD0D259C9BCBD 189 | 25D0B47C98E384FB8DABCC04 190 | 191 | isa 192 | PBXGroup 193 | sourceTree 194 | <group> 195 | 196 | 2EC82CCEA143ABA5D78AF4B7 197 | 198 | buildSettings 199 | 200 | ALWAYS_SEARCH_USER_PATHS 201 | NO 202 | CLANG_CXX_LANGUAGE_STANDARD 203 | gnu++0x 204 | CLANG_CXX_LIBRARY 205 | libc++ 206 | CLANG_ENABLE_MODULES 207 | YES 208 | CLANG_ENABLE_OBJC_ARC 209 | YES 210 | CLANG_WARN_BOOL_CONVERSION 211 | YES 212 | CLANG_WARN_CONSTANT_CONVERSION 213 | YES 214 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE 215 | YES 216 | CLANG_WARN_EMPTY_BODY 217 | YES 218 | CLANG_WARN_ENUM_CONVERSION 219 | YES 220 | CLANG_WARN_INT_CONVERSION 221 | YES 222 | CLANG_WARN_OBJC_ROOT_CLASS 223 | YES 224 | COPY_PHASE_STRIP 225 | NO 226 | ENABLE_NS_ASSERTIONS 227 | NO 228 | GCC_C_LANGUAGE_STANDARD 229 | gnu99 230 | GCC_PREPROCESSOR_DEFINITIONS 231 | 232 | RELEASE=1 233 | 234 | GCC_WARN_64_TO_32_BIT_CONVERSION 235 | YES 236 | GCC_WARN_ABOUT_RETURN_TYPE 237 | YES 238 | GCC_WARN_UNDECLARED_SELECTOR 239 | YES 240 | GCC_WARN_UNINITIALIZED_AUTOS 241 | YES 242 | GCC_WARN_UNUSED_FUNCTION 243 | YES 244 | GCC_WARN_UNUSED_VARIABLE 245 | YES 246 | IPHONEOS_DEPLOYMENT_TARGET 247 | 4.3 248 | STRIP_INSTALLED_PRODUCT 249 | NO 250 | VALIDATE_PRODUCT 251 | YES 252 | 253 | isa 254 | XCBuildConfiguration 255 | name 256 | Release 257 | 258 | 3383866AC0BCA29AE137008A 259 | 260 | children 261 | 262 | 24780E0A2A2390B8C5F9B346 263 | 264 | isa 265 | PBXGroup 266 | name 267 | Frameworks 268 | sourceTree 269 | <group> 270 | 271 | 3642CFC67E7FF6C797738C76 272 | 273 | buildConfigurations 274 | 275 | D3AFE5B75DFC85CBC114026F 276 | AF88212141626498A5C1B730 277 | 278 | defaultConfigurationIsVisible 279 | 0 280 | defaultConfigurationName 281 | Release 282 | isa 283 | XCConfigurationList 284 | 285 | 39BE04ED4D1507B149C1FCAE 286 | 287 | isa 288 | PBXTargetDependency 289 | name 290 | Settings 291 | target 292 | DD59FF66DDD80839A6549155 293 | targetProxy 294 | E35AFB4F3594CEFA3885A0F6 295 | 296 | 3CD2DEEBFE3407FC84ACAB0A 297 | 298 | buildActionMask 299 | 2147483647 300 | files 301 | 302 | isa 303 | PBXFrameworksBuildPhase 304 | runOnlyForDeploymentPostprocessing 305 | 0 306 | 307 | 3E4E93148617251E9EB19E98 308 | 309 | buildConfigurationList 310 | 4B9ACA31222064B268F327E4 311 | buildPhases 312 | 313 | 0E127475A3A3D39D001AFCC8 314 | 1BB67F16A18693EAC76C2A68 315 | 316 | buildRules 317 | 318 | dependencies 319 | 320 | FD2D105155B67726D157DAA9 321 | 322 | isa 323 | PBXNativeTarget 324 | name 325 | Pods 326 | productName 327 | Pods 328 | productReference 329 | 594E32C7E4E1A5CA31CB0325 330 | productType 331 | com.apple.product-type.library.static 332 | 333 | 472DD97F6B943E385D47D15D 334 | 335 | buildActionMask 336 | 2147483647 337 | files 338 | 339 | EFCABA3A505EF5710A694D62 340 | 341 | isa 342 | PBXHeadersBuildPhase 343 | runOnlyForDeploymentPostprocessing 344 | 0 345 | 346 | 4B9ACA31222064B268F327E4 347 | 348 | buildConfigurations 349 | 350 | 7818B4A308CCD96963314178 351 | 8C892BCC0B241784D3390DD5 352 | 353 | defaultConfigurationIsVisible 354 | 0 355 | defaultConfigurationName 356 | Release 357 | isa 358 | XCConfigurationList 359 | 360 | 4D6A4350D7163E8AC897AF97 361 | 362 | includeInIndex 363 | 1 364 | isa 365 | PBXFileReference 366 | lastKnownFileType 367 | text.plist.xml 368 | path 369 | Root.plist 370 | sourceTree 371 | <group> 372 | 373 | 5662EEF8A508318DF987D5F5 374 | 375 | children 376 | 377 | 7D22231169E95B5ACC993C91 378 | 379 | isa 380 | PBXGroup 381 | name 382 | Pods 383 | sourceTree 384 | <group> 385 | 386 | 594E32C7E4E1A5CA31CB0325 387 | 388 | explicitFileType 389 | archive.ar 390 | includeInIndex 391 | 0 392 | isa 393 | PBXFileReference 394 | path 395 | libPods.a 396 | sourceTree 397 | BUILT_PRODUCTS_DIR 398 | 399 | 5E82AB66A5183790AD19082B 400 | 401 | includeInIndex 402 | 1 403 | isa 404 | PBXFileReference 405 | lastKnownFileType 406 | text.xcconfig 407 | path 408 | Pods-AcknowledgementsBundle-Private.xcconfig 409 | sourceTree 410 | <group> 411 | 412 | 66957E3934A3AA06B6FACCFC 413 | 414 | buildActionMask 415 | 2147483647 416 | files 417 | 418 | 257D9A1640C587E7F72B0F62 419 | E188DE4B663D04D5F00D6D69 420 | 421 | isa 422 | PBXResourcesBuildPhase 423 | runOnlyForDeploymentPostprocessing 424 | 0 425 | 426 | 6719CA60F6AB8C93423C5213 427 | 428 | includeInIndex 429 | 1 430 | isa 431 | PBXFileReference 432 | lastKnownFileType 433 | sourcecode.c.objc 434 | path 435 | Pods-dummy.m 436 | sourceTree 437 | <group> 438 | 439 | 71C3438F998B28BB629AA64C 440 | 441 | buildSettings 442 | 443 | ALWAYS_SEARCH_USER_PATHS 444 | NO 445 | CLANG_CXX_LANGUAGE_STANDARD 446 | gnu++0x 447 | CLANG_CXX_LIBRARY 448 | libc++ 449 | CLANG_ENABLE_MODULES 450 | YES 451 | CLANG_ENABLE_OBJC_ARC 452 | YES 453 | CLANG_WARN_BOOL_CONVERSION 454 | YES 455 | CLANG_WARN_CONSTANT_CONVERSION 456 | YES 457 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE 458 | YES 459 | CLANG_WARN_EMPTY_BODY 460 | YES 461 | CLANG_WARN_ENUM_CONVERSION 462 | YES 463 | CLANG_WARN_INT_CONVERSION 464 | YES 465 | CLANG_WARN_OBJC_ROOT_CLASS 466 | YES 467 | COPY_PHASE_STRIP 468 | YES 469 | GCC_C_LANGUAGE_STANDARD 470 | gnu99 471 | GCC_DYNAMIC_NO_PIC 472 | NO 473 | GCC_OPTIMIZATION_LEVEL 474 | 0 475 | GCC_PREPROCESSOR_DEFINITIONS 476 | 477 | DEBUG=1 478 | $(inherited) 479 | 480 | GCC_SYMBOLS_PRIVATE_EXTERN 481 | NO 482 | GCC_WARN_64_TO_32_BIT_CONVERSION 483 | YES 484 | GCC_WARN_ABOUT_RETURN_TYPE 485 | YES 486 | GCC_WARN_UNDECLARED_SELECTOR 487 | YES 488 | GCC_WARN_UNINITIALIZED_AUTOS 489 | YES 490 | GCC_WARN_UNUSED_FUNCTION 491 | YES 492 | GCC_WARN_UNUSED_VARIABLE 493 | YES 494 | IPHONEOS_DEPLOYMENT_TARGET 495 | 4.3 496 | ONLY_ACTIVE_ARCH 497 | YES 498 | STRIP_INSTALLED_PRODUCT 499 | NO 500 | 501 | isa 502 | XCBuildConfiguration 503 | name 504 | Debug 505 | 506 | 7527F75CE4CD5329D83035CE 507 | 508 | includeInIndex 509 | 1 510 | isa 511 | PBXFileReference 512 | lastKnownFileType 513 | text 514 | name 515 | Podfile 516 | path 517 | ../Podfile 518 | sourceTree 519 | SOURCE_ROOT 520 | xcLanguageSpecificationIdentifier 521 | xcode.lang.ruby 522 | 523 | 77F483DA6D27C94328EB229E 524 | 525 | buildConfigurations 526 | 527 | 71C3438F998B28BB629AA64C 528 | 2EC82CCEA143ABA5D78AF4B7 529 | 530 | defaultConfigurationIsVisible 531 | 0 532 | defaultConfigurationName 533 | Release 534 | isa 535 | XCConfigurationList 536 | 537 | 7818B4A308CCD96963314178 538 | 539 | baseConfigurationReference 540 | 9302AA219648334F36E25EE5 541 | buildSettings 542 | 543 | ALWAYS_SEARCH_USER_PATHS 544 | NO 545 | ARCHS 546 | $(ARCHS_STANDARD) 547 | COPY_PHASE_STRIP 548 | NO 549 | DSTROOT 550 | /tmp/xcodeproj.dst 551 | GCC_DYNAMIC_NO_PIC 552 | NO 553 | GCC_OPTIMIZATION_LEVEL 554 | 0 555 | GCC_PRECOMPILE_PREFIX_HEADER 556 | YES 557 | GCC_PREPROCESSOR_DEFINITIONS 558 | 559 | DEBUG=1 560 | $(inherited) 561 | 562 | GCC_SYMBOLS_PRIVATE_EXTERN 563 | NO 564 | INSTALL_PATH 565 | $(BUILT_PRODUCTS_DIR) 566 | IPHONEOS_DEPLOYMENT_TARGET 567 | 4.3 568 | OTHER_LDFLAGS 569 | 570 | OTHER_LIBTOOLFLAGS 571 | 572 | PRODUCT_NAME 573 | $(TARGET_NAME) 574 | PUBLIC_HEADERS_FOLDER_PATH 575 | $(TARGET_NAME) 576 | SDKROOT 577 | iphoneos 578 | SKIP_INSTALL 579 | YES 580 | 581 | isa 582 | XCBuildConfiguration 583 | name 584 | Debug 585 | 586 | 7A27D4B2FB5DDB0B75382C1C 587 | 588 | includeInIndex 589 | 1 590 | isa 591 | PBXFileReference 592 | lastKnownFileType 593 | text 594 | path 595 | Pods-acknowledgements.markdown 596 | sourceTree 597 | <group> 598 | 599 | 7AAAEE636AA138A3AE139C86 600 | 601 | includeInIndex 602 | 1 603 | isa 604 | PBXFileReference 605 | lastKnownFileType 606 | text.xcconfig 607 | path 608 | Pods.release.xcconfig 609 | sourceTree 610 | <group> 611 | 612 | 7D22231169E95B5ACC993C91 613 | 614 | children 615 | 616 | DE9A47D84B4E4479C9240048 617 | 01956A44BE77C2CB7140312B 618 | 89D12CA585C9574BBD44B1D3 619 | 620 | isa 621 | PBXGroup 622 | name 623 | AcknowledgementsBundle 624 | path 625 | AcknowledgementsBundle 626 | sourceTree 627 | <group> 628 | 629 | 85BFBE97C00E42F77E06AE4A 630 | 631 | buildActionMask 632 | 2147483647 633 | files 634 | 635 | 0189616B2F37770C9092ADAB 636 | 637 | isa 638 | PBXFrameworksBuildPhase 639 | runOnlyForDeploymentPostprocessing 640 | 0 641 | 642 | 89D12CA585C9574BBD44B1D3 643 | 644 | children 645 | 646 | AF6FFAB40F51B20A670402F1 647 | 5E82AB66A5183790AD19082B 648 | 8E9384B5551DA0BF9A45B412 649 | 299B116A9C5819327D794A09 650 | 651 | isa 652 | PBXGroup 653 | name 654 | Support Files 655 | path 656 | ../Target Support Files/Pods-AcknowledgementsBundle 657 | sourceTree 658 | <group> 659 | 660 | 8C892BCC0B241784D3390DD5 661 | 662 | baseConfigurationReference 663 | 7AAAEE636AA138A3AE139C86 664 | buildSettings 665 | 666 | ALWAYS_SEARCH_USER_PATHS 667 | NO 668 | ARCHS 669 | $(ARCHS_STANDARD) 670 | COPY_PHASE_STRIP 671 | YES 672 | DSTROOT 673 | /tmp/xcodeproj.dst 674 | GCC_PRECOMPILE_PREFIX_HEADER 675 | YES 676 | INSTALL_PATH 677 | $(BUILT_PRODUCTS_DIR) 678 | IPHONEOS_DEPLOYMENT_TARGET 679 | 4.3 680 | OTHER_CFLAGS 681 | 682 | -DNS_BLOCK_ASSERTIONS=1 683 | $(inherited) 684 | 685 | OTHER_CPLUSPLUSFLAGS 686 | 687 | -DNS_BLOCK_ASSERTIONS=1 688 | $(inherited) 689 | 690 | OTHER_LDFLAGS 691 | 692 | OTHER_LIBTOOLFLAGS 693 | 694 | PRODUCT_NAME 695 | $(TARGET_NAME) 696 | PUBLIC_HEADERS_FOLDER_PATH 697 | $(TARGET_NAME) 698 | SDKROOT 699 | iphoneos 700 | SKIP_INSTALL 701 | YES 702 | VALIDATE_PRODUCT 703 | YES 704 | 705 | isa 706 | XCBuildConfiguration 707 | name 708 | Release 709 | 710 | 8E9384B5551DA0BF9A45B412 711 | 712 | includeInIndex 713 | 1 714 | isa 715 | PBXFileReference 716 | lastKnownFileType 717 | sourcecode.c.objc 718 | path 719 | Pods-AcknowledgementsBundle-dummy.m 720 | sourceTree 721 | <group> 722 | 723 | 909CE09BD6EC0A2B248AAB7E 724 | 725 | fileRef 726 | 8E9384B5551DA0BF9A45B412 727 | isa 728 | PBXBuildFile 729 | 730 | 9302AA219648334F36E25EE5 731 | 732 | includeInIndex 733 | 1 734 | isa 735 | PBXFileReference 736 | lastKnownFileType 737 | text.xcconfig 738 | path 739 | Pods.debug.xcconfig 740 | sourceTree 741 | <group> 742 | 743 | 9A9EF14FD088B07C2753F9BD 744 | 745 | includeInIndex 746 | 1 747 | isa 748 | PBXFileReference 749 | lastKnownFileType 750 | sourcecode.c.h 751 | path 752 | Pods-environment.h 753 | sourceTree 754 | <group> 755 | 756 | A30E1D70669832C777DB2C97 757 | 758 | buildConfigurations 759 | 760 | C3DDC8D4B22FB496B12EA3AD 761 | C6B979E0244AA7D56B90E8E8 762 | 763 | defaultConfigurationIsVisible 764 | 0 765 | defaultConfigurationName 766 | Release 767 | isa 768 | XCConfigurationList 769 | 770 | A9EBAEBFD47F8DA3BAB90288 771 | 772 | explicitFileType 773 | wrapper.cfbundle 774 | includeInIndex 775 | 0 776 | isa 777 | PBXFileReference 778 | path 779 | Settings.bundle 780 | sourceTree 781 | BUILT_PRODUCTS_DIR 782 | 783 | AB10B915D7B24DE5244212E7 784 | 785 | buildActionMask 786 | 2147483647 787 | files 788 | 789 | 909CE09BD6EC0A2B248AAB7E 790 | 791 | isa 792 | PBXSourcesBuildPhase 793 | runOnlyForDeploymentPostprocessing 794 | 0 795 | 796 | AF6FFAB40F51B20A670402F1 797 | 798 | includeInIndex 799 | 1 800 | isa 801 | PBXFileReference 802 | lastKnownFileType 803 | text.xcconfig 804 | path 805 | Pods-AcknowledgementsBundle.xcconfig 806 | sourceTree 807 | <group> 808 | 809 | AF88212141626498A5C1B730 810 | 811 | buildSettings 812 | 813 | PRODUCT_NAME 814 | $(TARGET_NAME) 815 | SDKROOT 816 | iphoneos 817 | SKIP_INSTALL 818 | YES 819 | WRAPPER_EXTENSION 820 | bundle 821 | 822 | isa 823 | XCBuildConfiguration 824 | name 825 | Release 826 | 827 | BAFB1B0B0E99B22364BF9BF2 828 | 829 | isa 830 | PBXFileReference 831 | lastKnownFileType 832 | wrapper.framework 833 | name 834 | Foundation.framework 835 | path 836 | Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework 837 | sourceTree 838 | DEVELOPER_DIR 839 | 840 | C33FDC5B45F2813C72C44676 841 | 842 | explicitFileType 843 | archive.ar 844 | includeInIndex 845 | 0 846 | isa 847 | PBXFileReference 848 | path 849 | libPods-AcknowledgementsBundle.a 850 | sourceTree 851 | BUILT_PRODUCTS_DIR 852 | 853 | C3DDC8D4B22FB496B12EA3AD 854 | 855 | baseConfigurationReference 856 | 5E82AB66A5183790AD19082B 857 | buildSettings 858 | 859 | ALWAYS_SEARCH_USER_PATHS 860 | NO 861 | ARCHS 862 | $(ARCHS_STANDARD) 863 | COPY_PHASE_STRIP 864 | NO 865 | DSTROOT 866 | /tmp/xcodeproj.dst 867 | GCC_DYNAMIC_NO_PIC 868 | NO 869 | GCC_OPTIMIZATION_LEVEL 870 | 0 871 | GCC_PRECOMPILE_PREFIX_HEADER 872 | YES 873 | GCC_PREFIX_HEADER 874 | Target Support Files/Pods-AcknowledgementsBundle/Pods-AcknowledgementsBundle-prefix.pch 875 | GCC_PREPROCESSOR_DEFINITIONS 876 | 877 | DEBUG=1 878 | $(inherited) 879 | 880 | GCC_SYMBOLS_PRIVATE_EXTERN 881 | NO 882 | INSTALL_PATH 883 | $(BUILT_PRODUCTS_DIR) 884 | IPHONEOS_DEPLOYMENT_TARGET 885 | 4.3 886 | OTHER_LDFLAGS 887 | 888 | OTHER_LIBTOOLFLAGS 889 | 890 | PRODUCT_NAME 891 | $(TARGET_NAME) 892 | PUBLIC_HEADERS_FOLDER_PATH 893 | $(TARGET_NAME) 894 | SDKROOT 895 | iphoneos 896 | SKIP_INSTALL 897 | YES 898 | 899 | isa 900 | XCBuildConfiguration 901 | name 902 | Debug 903 | 904 | C6B979E0244AA7D56B90E8E8 905 | 906 | baseConfigurationReference 907 | 5E82AB66A5183790AD19082B 908 | buildSettings 909 | 910 | ALWAYS_SEARCH_USER_PATHS 911 | NO 912 | ARCHS 913 | $(ARCHS_STANDARD) 914 | COPY_PHASE_STRIP 915 | YES 916 | DSTROOT 917 | /tmp/xcodeproj.dst 918 | GCC_PRECOMPILE_PREFIX_HEADER 919 | YES 920 | GCC_PREFIX_HEADER 921 | Target Support Files/Pods-AcknowledgementsBundle/Pods-AcknowledgementsBundle-prefix.pch 922 | INSTALL_PATH 923 | $(BUILT_PRODUCTS_DIR) 924 | IPHONEOS_DEPLOYMENT_TARGET 925 | 4.3 926 | OTHER_CFLAGS 927 | 928 | -DNS_BLOCK_ASSERTIONS=1 929 | $(inherited) 930 | 931 | OTHER_CPLUSPLUSFLAGS 932 | 933 | -DNS_BLOCK_ASSERTIONS=1 934 | $(inherited) 935 | 936 | OTHER_LDFLAGS 937 | 938 | OTHER_LIBTOOLFLAGS 939 | 940 | PRODUCT_NAME 941 | $(TARGET_NAME) 942 | PUBLIC_HEADERS_FOLDER_PATH 943 | $(TARGET_NAME) 944 | SDKROOT 945 | iphoneos 946 | SKIP_INSTALL 947 | YES 948 | VALIDATE_PRODUCT 949 | YES 950 | 951 | isa 952 | XCBuildConfiguration 953 | name 954 | Release 955 | 956 | D3AFE5B75DFC85CBC114026F 957 | 958 | buildSettings 959 | 960 | PRODUCT_NAME 961 | $(TARGET_NAME) 962 | SDKROOT 963 | iphoneos 964 | SKIP_INSTALL 965 | YES 966 | WRAPPER_EXTENSION 967 | bundle 968 | 969 | isa 970 | XCBuildConfiguration 971 | name 972 | Debug 973 | 974 | D7D63F32610073E5AF8B96D7 975 | 976 | attributes 977 | 978 | LastUpgradeCheck 979 | 0510 980 | 981 | buildConfigurationList 982 | 77F483DA6D27C94328EB229E 983 | compatibilityVersion 984 | Xcode 3.2 985 | developmentRegion 986 | English 987 | hasScannedForEncodings 988 | 0 989 | isa 990 | PBXProject 991 | knownRegions 992 | 993 | en 994 | 995 | mainGroup 996 | 29D7A3DB3B16D806E1D062B9 997 | productRefGroup 998 | F2CAE635C12FD0D259C9BCBD 999 | projectDirPath 1000 | 1001 | projectReferences 1002 | 1003 | projectRoot 1004 | 1005 | targets 1006 | 1007 | 3E4E93148617251E9EB19E98 1008 | 1F62395C82DD920154BC0467 1009 | DD59FF66DDD80839A6549155 1010 | 1011 | 1012 | DC40FB4D2E32076F064BC09F 1013 | 1014 | buildActionMask 1015 | 2147483647 1016 | files 1017 | 1018 | isa 1019 | PBXSourcesBuildPhase 1020 | runOnlyForDeploymentPostprocessing 1021 | 0 1022 | 1023 | DD59FF66DDD80839A6549155 1024 | 1025 | buildConfigurationList 1026 | 3642CFC67E7FF6C797738C76 1027 | buildPhases 1028 | 1029 | DC40FB4D2E32076F064BC09F 1030 | 3CD2DEEBFE3407FC84ACAB0A 1031 | 66957E3934A3AA06B6FACCFC 1032 | 1033 | buildRules 1034 | 1035 | dependencies 1036 | 1037 | isa 1038 | PBXNativeTarget 1039 | name 1040 | Settings 1041 | productName 1042 | Settings 1043 | productReference 1044 | A9EBAEBFD47F8DA3BAB90288 1045 | productType 1046 | com.apple.product-type.bundle 1047 | 1048 | DE9A47D84B4E4479C9240048 1049 | 1050 | includeInIndex 1051 | 1 1052 | isa 1053 | PBXFileReference 1054 | lastKnownFileType 1055 | sourcecode.c.h 1056 | path 1057 | Dummy.h 1058 | sourceTree 1059 | <group> 1060 | 1061 | E188DE4B663D04D5F00D6D69 1062 | 1063 | fileRef 1064 | 4D6A4350D7163E8AC897AF97 1065 | isa 1066 | PBXBuildFile 1067 | 1068 | E35AFB4F3594CEFA3885A0F6 1069 | 1070 | containerPortal 1071 | D7D63F32610073E5AF8B96D7 1072 | isa 1073 | PBXContainerItemProxy 1074 | proxyType 1075 | 1 1076 | remoteGlobalIDString 1077 | DD59FF66DDD80839A6549155 1078 | remoteInfo 1079 | Settings 1080 | 1081 | EE31AAB6B2DBA0FFCD67CF60 1082 | 1083 | includeInIndex 1084 | 1 1085 | isa 1086 | PBXFileReference 1087 | lastKnownFileType 1088 | text.plist.xml 1089 | path 1090 | Pods-acknowledgements.plist 1091 | sourceTree 1092 | <group> 1093 | 1094 | EFCABA3A505EF5710A694D62 1095 | 1096 | fileRef 1097 | DE9A47D84B4E4479C9240048 1098 | isa 1099 | PBXBuildFile 1100 | 1101 | F2CAE635C12FD0D259C9BCBD 1102 | 1103 | children 1104 | 1105 | A9EBAEBFD47F8DA3BAB90288 1106 | 594E32C7E4E1A5CA31CB0325 1107 | C33FDC5B45F2813C72C44676 1108 | 1109 | isa 1110 | PBXGroup 1111 | name 1112 | Products 1113 | sourceTree 1114 | <group> 1115 | 1116 | FD2D105155B67726D157DAA9 1117 | 1118 | isa 1119 | PBXTargetDependency 1120 | name 1121 | Pods-AcknowledgementsBundle 1122 | target 1123 | 1F62395C82DD920154BC0467 1124 | targetProxy 1125 | FE6717676AD5641C14B100FB 1126 | 1127 | FE6717676AD5641C14B100FB 1128 | 1129 | containerPortal 1130 | D7D63F32610073E5AF8B96D7 1131 | isa 1132 | PBXContainerItemProxy 1133 | proxyType 1134 | 1 1135 | remoteGlobalIDString 1136 | 1F62395C82DD920154BC0467 1137 | remoteInfo 1138 | Pods-AcknowledgementsBundle 1139 | 1140 | FFCC05FDA18EB4181327DEF4 1141 | 1142 | includeInIndex 1143 | 1 1144 | isa 1145 | PBXFileReference 1146 | lastKnownFileType 1147 | text.script.sh 1148 | path 1149 | Pods-resources.sh 1150 | sourceTree 1151 | <group> 1152 | 1153 | 1154 | rootObject 1155 | D7D63F32610073E5AF8B96D7 1156 | 1157 | 1158 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-AcknowledgementsBundle/Pods-AcknowledgementsBundle-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-AcknowledgementsBundle.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/AcknowledgementsBundle" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AcknowledgementsBundle" 4 | OTHER_LDFLAGS = -ObjC 5 | PODS_ROOT = ${SRCROOT} -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-AcknowledgementsBundle/Pods-AcknowledgementsBundle-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_AcknowledgementsBundle : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_AcknowledgementsBundle 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-AcknowledgementsBundle/Pods-AcknowledgementsBundle-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-AcknowledgementsBundle/Pods-AcknowledgementsBundle.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivera-ernesto/AcknowledgementsBundle/7d5c947985b8bed2a67442614cb49d9c12850c8e/Demo/Pods/Target Support Files/Pods-AcknowledgementsBundle/Pods-AcknowledgementsBundle.xcconfig -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## AcknowledgementsBundle 5 | 6 | Apache License 7 | Version 2.0, January 2004 8 | http://www.apache.org/licenses/ 9 | 10 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 11 | 12 | 1. Definitions. 13 | 14 | "License" shall mean the terms and conditions for use, reproduction, 15 | and distribution as defined by Sections 1 through 9 of this document. 16 | 17 | "Licensor" shall mean the copyright owner or entity authorized by 18 | the copyright owner that is granting the License. 19 | 20 | "Legal Entity" shall mean the union of the acting entity and all 21 | other entities that control, are controlled by, or are under common 22 | control with that entity. For the purposes of this definition, 23 | "control" means (i) the power, direct or indirect, to cause the 24 | direction or management of such entity, whether by contract or 25 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 26 | outstanding shares, or (iii) beneficial ownership of such entity. 27 | 28 | "You" (or "Your") shall mean an individual or Legal Entity 29 | exercising permissions granted by this License. 30 | 31 | "Source" form shall mean the preferred form for making modifications, 32 | including but not limited to software source code, documentation 33 | source, and configuration files. 34 | 35 | "Object" form shall mean any form resulting from mechanical 36 | transformation or translation of a Source form, including but 37 | not limited to compiled object code, generated documentation, 38 | and conversions to other media types. 39 | 40 | "Work" shall mean the work of authorship, whether in Source or 41 | Object form, made available under the License, as indicated by a 42 | copyright notice that is included in or attached to the work 43 | (an example is provided in the Appendix below). 44 | 45 | "Derivative Works" shall mean any work, whether in Source or Object 46 | form, that is based on (or derived from) the Work and for which the 47 | editorial revisions, annotations, elaborations, or other modifications 48 | represent, as a whole, an original work of authorship. For the purposes 49 | of this License, Derivative Works shall not include works that remain 50 | separable from, or merely link (or bind by name) to the interfaces of, 51 | the Work and Derivative Works thereof. 52 | 53 | "Contribution" shall mean any work of authorship, including 54 | the original version of the Work and any modifications or additions 55 | to that Work or Derivative Works thereof, that is intentionally 56 | submitted to Licensor for inclusion in the Work by the copyright owner 57 | or by an individual or Legal Entity authorized to submit on behalf of 58 | the copyright owner. For the purposes of this definition, "submitted" 59 | means any form of electronic, verbal, or written communication sent 60 | to the Licensor or its representatives, including but not limited to 61 | communication on electronic mailing lists, source code control systems, 62 | and issue tracking systems that are managed by, or on behalf of, the 63 | Licensor for the purpose of discussing and improving the Work, but 64 | excluding communication that is conspicuously marked or otherwise 65 | designated in writing by the copyright owner as "Not a Contribution." 66 | 67 | "Contributor" shall mean Licensor and any individual or Legal Entity 68 | on behalf of whom a Contribution has been received by Licensor and 69 | subsequently incorporated within the Work. 70 | 71 | 2. Grant of Copyright License. Subject to the terms and conditions of 72 | this License, each Contributor hereby grants to You a perpetual, 73 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 74 | copyright license to reproduce, prepare Derivative Works of, 75 | publicly display, publicly perform, sublicense, and distribute the 76 | Work and such Derivative Works in Source or Object form. 77 | 78 | 3. Grant of Patent License. Subject to the terms and conditions of 79 | this License, each Contributor hereby grants to You a perpetual, 80 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 81 | (except as stated in this section) patent license to make, have made, 82 | use, offer to sell, sell, import, and otherwise transfer the Work, 83 | where such license applies only to those patent claims licensable 84 | by such Contributor that are necessarily infringed by their 85 | Contribution(s) alone or by combination of their Contribution(s) 86 | with the Work to which such Contribution(s) was submitted. If You 87 | institute patent litigation against any entity (including a 88 | cross-claim or counterclaim in a lawsuit) alleging that the Work 89 | or a Contribution incorporated within the Work constitutes direct 90 | or contributory patent infringement, then any patent licenses 91 | granted to You under this License for that Work shall terminate 92 | as of the date such litigation is filed. 93 | 94 | 4. Redistribution. You may reproduce and distribute copies of the 95 | Work or Derivative Works thereof in any medium, with or without 96 | modifications, and in Source or Object form, provided that You 97 | meet the following conditions: 98 | 99 | (a) You must give any other recipients of the Work or 100 | Derivative Works a copy of this License; and 101 | 102 | (b) You must cause any modified files to carry prominent notices 103 | stating that You changed the files; and 104 | 105 | (c) You must retain, in the Source form of any Derivative Works 106 | that You distribute, all copyright, patent, trademark, and 107 | attribution notices from the Source form of the Work, 108 | excluding those notices that do not pertain to any part of 109 | the Derivative Works; and 110 | 111 | (d) If the Work includes a "NOTICE" text file as part of its 112 | distribution, then any Derivative Works that You distribute must 113 | include a readable copy of the attribution notices contained 114 | within such NOTICE file, excluding those notices that do not 115 | pertain to any part of the Derivative Works, in at least one 116 | of the following places: within a NOTICE text file distributed 117 | as part of the Derivative Works; within the Source form or 118 | documentation, if provided along with the Derivative Works; or, 119 | within a display generated by the Derivative Works, if and 120 | wherever such third-party notices normally appear. The contents 121 | of the NOTICE file are for informational purposes only and 122 | do not modify the License. You may add Your own attribution 123 | notices within Derivative Works that You distribute, alongside 124 | or as an addendum to the NOTICE text from the Work, provided 125 | that such additional attribution notices cannot be construed 126 | as modifying the License. 127 | 128 | You may add Your own copyright statement to Your modifications and 129 | may provide additional or different license terms and conditions 130 | for use, reproduction, or distribution of Your modifications, or 131 | for any such Derivative Works as a whole, provided Your use, 132 | reproduction, and distribution of the Work otherwise complies with 133 | the conditions stated in this License. 134 | 135 | 5. Submission of Contributions. Unless You explicitly state otherwise, 136 | any Contribution intentionally submitted for inclusion in the Work 137 | by You to the Licensor shall be under the terms and conditions of 138 | this License, without any additional terms or conditions. 139 | Notwithstanding the above, nothing herein shall supersede or modify 140 | the terms of any separate license agreement you may have executed 141 | with Licensor regarding such Contributions. 142 | 143 | 6. Trademarks. This License does not grant permission to use the trade 144 | names, trademarks, service marks, or product names of the Licensor, 145 | except as required for reasonable and customary use in describing the 146 | origin of the Work and reproducing the content of the NOTICE file. 147 | 148 | 7. Disclaimer of Warranty. Unless required by applicable law or 149 | agreed to in writing, Licensor provides the Work (and each 150 | Contributor provides its Contributions) on an "AS IS" BASIS, 151 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 152 | implied, including, without limitation, any warranties or conditions 153 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 154 | PARTICULAR PURPOSE. You are solely responsible for determining the 155 | appropriateness of using or redistributing the Work and assume any 156 | risks associated with Your exercise of permissions under this License. 157 | 158 | 8. Limitation of Liability. In no event and under no legal theory, 159 | whether in tort (including negligence), contract, or otherwise, 160 | unless required by applicable law (such as deliberate and grossly 161 | negligent acts) or agreed to in writing, shall any Contributor be 162 | liable to You for damages, including any direct, indirect, special, 163 | incidental, or consequential damages of any character arising as a 164 | result of this License or out of the use or inability to use the 165 | Work (including but not limited to damages for loss of goodwill, 166 | work stoppage, computer failure or malfunction, or any and all 167 | other commercial damages or losses), even if such Contributor 168 | has been advised of the possibility of such damages. 169 | 170 | 9. Accepting Warranty or Additional Liability. While redistributing 171 | the Work or Derivative Works thereof, You may choose to offer, 172 | and charge a fee for, acceptance of support, warranty, indemnity, 173 | or other liability obligations and/or rights consistent with this 174 | License. However, in accepting such obligations, You may act only 175 | on Your own behalf and on Your sole responsibility, not on behalf 176 | of any other Contributor, and only if You agree to indemnify, 177 | defend, and hold each Contributor harmless for any liability 178 | incurred by, or claims asserted against, such Contributor by reason 179 | of your accepting any such warranty or additional liability. 180 | 181 | END OF TERMS AND CONDITIONS 182 | 183 | APPENDIX: How to apply the Apache License to your work. 184 | 185 | To apply the Apache License to your work, attach the following 186 | boilerplate notice, with the fields enclosed by brackets "{}" 187 | replaced with your own identifying information. (Don't include 188 | the brackets!) The text should be enclosed in the appropriate 189 | comment syntax for the file format. We also recommend that a 190 | file or class name and description of purpose be included on the 191 | same "printed page" as the copyright notice for easier 192 | identification within third-party archives. 193 | 194 | Copyright 2014 Ernesto Rivera 195 | 196 | Licensed under the Apache License, Version 2.0 (the "License"); 197 | you may not use this file except in compliance with the License. 198 | You may obtain a copy of the License at 199 | 200 | http://www.apache.org/licenses/LICENSE-2.0 201 | 202 | Unless required by applicable law or agreed to in writing, software 203 | distributed under the License is distributed on an "AS IS" BASIS, 204 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 205 | See the License for the specific language governing permissions and 206 | limitations under the License. 207 | Generated by CocoaPods - http://cocoapods.org 208 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Apache License 18 | Version 2.0, January 2004 19 | http://www.apache.org/licenses/ 20 | 21 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 22 | 23 | 1. Definitions. 24 | 25 | "License" shall mean the terms and conditions for use, reproduction, 26 | and distribution as defined by Sections 1 through 9 of this document. 27 | 28 | "Licensor" shall mean the copyright owner or entity authorized by 29 | the copyright owner that is granting the License. 30 | 31 | "Legal Entity" shall mean the union of the acting entity and all 32 | other entities that control, are controlled by, or are under common 33 | control with that entity. For the purposes of this definition, 34 | "control" means (i) the power, direct or indirect, to cause the 35 | direction or management of such entity, whether by contract or 36 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 37 | outstanding shares, or (iii) beneficial ownership of such entity. 38 | 39 | "You" (or "Your") shall mean an individual or Legal Entity 40 | exercising permissions granted by this License. 41 | 42 | "Source" form shall mean the preferred form for making modifications, 43 | including but not limited to software source code, documentation 44 | source, and configuration files. 45 | 46 | "Object" form shall mean any form resulting from mechanical 47 | transformation or translation of a Source form, including but 48 | not limited to compiled object code, generated documentation, 49 | and conversions to other media types. 50 | 51 | "Work" shall mean the work of authorship, whether in Source or 52 | Object form, made available under the License, as indicated by a 53 | copyright notice that is included in or attached to the work 54 | (an example is provided in the Appendix below). 55 | 56 | "Derivative Works" shall mean any work, whether in Source or Object 57 | form, that is based on (or derived from) the Work and for which the 58 | editorial revisions, annotations, elaborations, or other modifications 59 | represent, as a whole, an original work of authorship. For the purposes 60 | of this License, Derivative Works shall not include works that remain 61 | separable from, or merely link (or bind by name) to the interfaces of, 62 | the Work and Derivative Works thereof. 63 | 64 | "Contribution" shall mean any work of authorship, including 65 | the original version of the Work and any modifications or additions 66 | to that Work or Derivative Works thereof, that is intentionally 67 | submitted to Licensor for inclusion in the Work by the copyright owner 68 | or by an individual or Legal Entity authorized to submit on behalf of 69 | the copyright owner. For the purposes of this definition, "submitted" 70 | means any form of electronic, verbal, or written communication sent 71 | to the Licensor or its representatives, including but not limited to 72 | communication on electronic mailing lists, source code control systems, 73 | and issue tracking systems that are managed by, or on behalf of, the 74 | Licensor for the purpose of discussing and improving the Work, but 75 | excluding communication that is conspicuously marked or otherwise 76 | designated in writing by the copyright owner as "Not a Contribution." 77 | 78 | "Contributor" shall mean Licensor and any individual or Legal Entity 79 | on behalf of whom a Contribution has been received by Licensor and 80 | subsequently incorporated within the Work. 81 | 82 | 2. Grant of Copyright License. Subject to the terms and conditions of 83 | this License, each Contributor hereby grants to You a perpetual, 84 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 85 | copyright license to reproduce, prepare Derivative Works of, 86 | publicly display, publicly perform, sublicense, and distribute the 87 | Work and such Derivative Works in Source or Object form. 88 | 89 | 3. Grant of Patent License. Subject to the terms and conditions of 90 | this License, each Contributor hereby grants to You a perpetual, 91 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 92 | (except as stated in this section) patent license to make, have made, 93 | use, offer to sell, sell, import, and otherwise transfer the Work, 94 | where such license applies only to those patent claims licensable 95 | by such Contributor that are necessarily infringed by their 96 | Contribution(s) alone or by combination of their Contribution(s) 97 | with the Work to which such Contribution(s) was submitted. If You 98 | institute patent litigation against any entity (including a 99 | cross-claim or counterclaim in a lawsuit) alleging that the Work 100 | or a Contribution incorporated within the Work constitutes direct 101 | or contributory patent infringement, then any patent licenses 102 | granted to You under this License for that Work shall terminate 103 | as of the date such litigation is filed. 104 | 105 | 4. Redistribution. You may reproduce and distribute copies of the 106 | Work or Derivative Works thereof in any medium, with or without 107 | modifications, and in Source or Object form, provided that You 108 | meet the following conditions: 109 | 110 | (a) You must give any other recipients of the Work or 111 | Derivative Works a copy of this License; and 112 | 113 | (b) You must cause any modified files to carry prominent notices 114 | stating that You changed the files; and 115 | 116 | (c) You must retain, in the Source form of any Derivative Works 117 | that You distribute, all copyright, patent, trademark, and 118 | attribution notices from the Source form of the Work, 119 | excluding those notices that do not pertain to any part of 120 | the Derivative Works; and 121 | 122 | (d) If the Work includes a "NOTICE" text file as part of its 123 | distribution, then any Derivative Works that You distribute must 124 | include a readable copy of the attribution notices contained 125 | within such NOTICE file, excluding those notices that do not 126 | pertain to any part of the Derivative Works, in at least one 127 | of the following places: within a NOTICE text file distributed 128 | as part of the Derivative Works; within the Source form or 129 | documentation, if provided along with the Derivative Works; or, 130 | within a display generated by the Derivative Works, if and 131 | wherever such third-party notices normally appear. The contents 132 | of the NOTICE file are for informational purposes only and 133 | do not modify the License. You may add Your own attribution 134 | notices within Derivative Works that You distribute, alongside 135 | or as an addendum to the NOTICE text from the Work, provided 136 | that such additional attribution notices cannot be construed 137 | as modifying the License. 138 | 139 | You may add Your own copyright statement to Your modifications and 140 | may provide additional or different license terms and conditions 141 | for use, reproduction, or distribution of Your modifications, or 142 | for any such Derivative Works as a whole, provided Your use, 143 | reproduction, and distribution of the Work otherwise complies with 144 | the conditions stated in this License. 145 | 146 | 5. Submission of Contributions. Unless You explicitly state otherwise, 147 | any Contribution intentionally submitted for inclusion in the Work 148 | by You to the Licensor shall be under the terms and conditions of 149 | this License, without any additional terms or conditions. 150 | Notwithstanding the above, nothing herein shall supersede or modify 151 | the terms of any separate license agreement you may have executed 152 | with Licensor regarding such Contributions. 153 | 154 | 6. Trademarks. This License does not grant permission to use the trade 155 | names, trademarks, service marks, or product names of the Licensor, 156 | except as required for reasonable and customary use in describing the 157 | origin of the Work and reproducing the content of the NOTICE file. 158 | 159 | 7. Disclaimer of Warranty. Unless required by applicable law or 160 | agreed to in writing, Licensor provides the Work (and each 161 | Contributor provides its Contributions) on an "AS IS" BASIS, 162 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 163 | implied, including, without limitation, any warranties or conditions 164 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 165 | PARTICULAR PURPOSE. You are solely responsible for determining the 166 | appropriateness of using or redistributing the Work and assume any 167 | risks associated with Your exercise of permissions under this License. 168 | 169 | 8. Limitation of Liability. In no event and under no legal theory, 170 | whether in tort (including negligence), contract, or otherwise, 171 | unless required by applicable law (such as deliberate and grossly 172 | negligent acts) or agreed to in writing, shall any Contributor be 173 | liable to You for damages, including any direct, indirect, special, 174 | incidental, or consequential damages of any character arising as a 175 | result of this License or out of the use or inability to use the 176 | Work (including but not limited to damages for loss of goodwill, 177 | work stoppage, computer failure or malfunction, or any and all 178 | other commercial damages or losses), even if such Contributor 179 | has been advised of the possibility of such damages. 180 | 181 | 9. Accepting Warranty or Additional Liability. While redistributing 182 | the Work or Derivative Works thereof, You may choose to offer, 183 | and charge a fee for, acceptance of support, warranty, indemnity, 184 | or other liability obligations and/or rights consistent with this 185 | License. However, in accepting such obligations, You may act only 186 | on Your own behalf and on Your sole responsibility, not on behalf 187 | of any other Contributor, and only if You agree to indemnify, 188 | defend, and hold each Contributor harmless for any liability 189 | incurred by, or claims asserted against, such Contributor by reason 190 | of your accepting any such warranty or additional liability. 191 | 192 | END OF TERMS AND CONDITIONS 193 | 194 | APPENDIX: How to apply the Apache License to your work. 195 | 196 | To apply the Apache License to your work, attach the following 197 | boilerplate notice, with the fields enclosed by brackets "{}" 198 | replaced with your own identifying information. (Don't include 199 | the brackets!) The text should be enclosed in the appropriate 200 | comment syntax for the file format. We also recommend that a 201 | file or class name and description of purpose be included on the 202 | same "printed page" as the copyright notice for easier 203 | identification within third-party archives. 204 | 205 | Copyright 2014 Ernesto Rivera 206 | 207 | Licensed under the Apache License, Version 2.0 (the "License"); 208 | you may not use this file except in compliance with the License. 209 | You may obtain a copy of the License at 210 | 211 | http://www.apache.org/licenses/LICENSE-2.0 212 | 213 | Unless required by applicable law or agreed to in writing, software 214 | distributed under the License is distributed on an "AS IS" BASIS, 215 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 216 | See the License for the specific language governing permissions and 217 | limitations under the License. 218 | Title 219 | AcknowledgementsBundle 220 | Type 221 | PSGroupSpecifier 222 | 223 | 224 | FooterText 225 | Generated by CocoaPods - http://cocoapods.org 226 | Title 227 | 228 | Type 229 | PSGroupSpecifier 230 | 231 | 232 | StringsTable 233 | Acknowledgements 234 | Title 235 | Acknowledgements 236 | 237 | 238 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods : NSObject 3 | @end 4 | @implementation PodsDummy_Pods 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-environment.h: -------------------------------------------------------------------------------- 1 | 2 | // To check if a library is compiled with CocoaPods you 3 | // can use the `COCOAPODS` macro definition which is 4 | // defined in the xcconfigs so it is available in 5 | // headers also when they are imported in the client 6 | // project. 7 | 8 | 9 | // AcknowledgementsBundle 10 | #define COCOAPODS_POD_AVAILABLE_AcknowledgementsBundle 11 | #define COCOAPODS_VERSION_MAJOR_AcknowledgementsBundle 0 12 | #define COCOAPODS_VERSION_MINOR_AcknowledgementsBundle 0 13 | #define COCOAPODS_VERSION_PATCH_AcknowledgementsBundle 2 14 | 15 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | install_resource() 10 | { 11 | case $1 in 12 | *.storyboard) 13 | echo "ibtool --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 14 | ibtool --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 15 | ;; 16 | *.xib) 17 | echo "ibtool --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 18 | ibtool --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 19 | ;; 20 | *.framework) 21 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 22 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 23 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 24 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 25 | ;; 26 | *.xcdatamodel) 27 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 28 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 29 | ;; 30 | *.xcdatamodeld) 31 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 32 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 33 | ;; 34 | *.xcmappingmodel) 35 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 36 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 37 | ;; 38 | *.xcassets) 39 | ;; 40 | /*) 41 | echo "$1" 42 | echo "$1" >> "$RESOURCES_TO_COPY" 43 | ;; 44 | *) 45 | echo "${PODS_ROOT}/$1" 46 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 47 | ;; 48 | esac 49 | } 50 | install_resource "${BUILT_PRODUCTS_DIR}/Settings.bundle" 51 | 52 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 53 | if [[ "${ACTION}" == "install" ]]; then 54 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 55 | fi 56 | rm -f "$RESOURCES_TO_COPY" 57 | 58 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ] 59 | then 60 | case "${TARGETED_DEVICE_FAMILY}" in 61 | 1,2) 62 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 63 | ;; 64 | 1) 65 | TARGET_DEVICE_ARGS="--target-device iphone" 66 | ;; 67 | 2) 68 | TARGET_DEVICE_ARGS="--target-device ipad" 69 | ;; 70 | *) 71 | TARGET_DEVICE_ARGS="--target-device mac" 72 | ;; 73 | esac 74 | find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 75 | fi 76 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AcknowledgementsBundle" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/AcknowledgementsBundle" 4 | OTHER_LDFLAGS = -ObjC -l"Pods-AcknowledgementsBundle" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AcknowledgementsBundle" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/AcknowledgementsBundle" 4 | OTHER_LDFLAGS = -ObjC -l"Pods-AcknowledgementsBundle" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Dummy.h: -------------------------------------------------------------------------------- 1 | // 2 | // Dummy.h 3 | // 4 | // Pass CocoaPods validation. 5 | // -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2014 Ernesto Rivera 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. -------------------------------------------------------------------------------- /Pods-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | ../Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | AcknowledgementsBundle 2 | ====================== 3 | 4 | Easily add a Settings.bundle with [CocoaPods](http://cocoapods.org)' acknowledgements to your iOS App. 5 | 6 | ![Screenshot 1](http://rivera-ernesto.github.io/AcknowledgementsBundle/images/screenshot1.png) ![Screenshot 2](http://rivera-ernesto.github.io/AcknowledgementsBundle/images/screenshot2.png) 7 | 8 | ## Installation 9 | 10 | Add `pod 'AcknowledgementsBundle'` to your [CocoaPods](http://cocoapods.org)' [Podfile](http://docs.cocoapods.org/podfile.html): 11 | 12 | ```ruby 13 | platform :ios 14 | 15 | pod 'AcknowledgementsBundle' 16 | 17 | # ...more Pods! 18 | ``` 19 | 20 | Done! No code needed. 21 | 22 | ## License 23 | 24 | Licensed under the Apache License, Version 2.0 (the "License"); 25 | you may not use this file except in compliance with the License. 26 | You may obtain a copy of the License at 27 | 28 | http://www.apache.org/licenses/LICENSE-2.0 29 | 30 | Unless required by applicable law or agreed to in writing, software 31 | distributed under the License is distributed on an "AS IS" BASIS, 32 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 33 | See the License for the specific language governing permissions and 34 | limitations under the License. 35 | 36 | 37 | -------------------------------------------------------------------------------- /Root.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | Test 7 | PreferenceSpecifiers 8 | 9 | 10 | Type 11 | PSChildPaneSpecifier 12 | Title 13 | Acknowledgments 14 | File 15 | Pods-acknowledgements 16 | 17 | 18 | 19 | 20 | --------------------------------------------------------------------------------