[Add] BideaseConnect 1.0.79
[CocoaPods.git] / Specs / d / 8 / f / BREnvironment / 1.2.0 / BREnvironment.podspec.json
blob6067ebd288bf1df9d6f349de87176ce5414fda64
2   "name": "BREnvironment",
3   "version": "1.2.0",
4   "summary": "A little Objective-C helper class for supporting different deployment environments during development.",
5   "description": "Provides an easy way to define *environment* settings in a\n**Environment.plist** file. For example you might define a\n*baseURL* as `http://my.awesome.service` for some web service your\napp communicates with. During development you might want to have\nthe app use a *test* server, however, so **BREnvironment** \nsupports a **LocalEnvironment.plist** file where you can override\nthat *baseURL* setting to `http://my.crashful.service`.",
6   "homepage": "https://github.com/Blue-Rocket/BREnvironment",
7   "license": "Apache License, Version 2.0",
8   "authors": {
9     "Matt Magoffin": "git+matt@msqr.us"
10   },
11   "platforms": {
12     "ios": "5.0"
13   },
14   "source": {
15     "git": "https://github.com/Blue-Rocket/BREnvironment.git",
16     "tag": "1.2.0"
17   },
18   "source_files": "BREnvironment/*.{h,m}",
19   "frameworks": "Foundation",
20   "requires_arc": true,
21   "prepare_command": "cat <<EOF\nYou need to add a \"Run Script\" build phase to any target in your project that\nrelies on using a LocalEnvironment.plist file. An example script is:\n\nfilePath=${SRCROOT}/PathToYourOwn/LocalEnvironment.plist\nif [ -e \"$filePath\" ]; then\n    cp \"$filePath\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/\"\n    echo $filePath copied to ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\nelse\n    echo $filePath not found.\nfi\n\nJust change the filePath to match the path to the file you want to use.\nEOF"