[Add] ZJSDK 2.5.4.14
[CocoaPods.git] / Specs / d / 8 / f / BREnvironment / 1.0.0 / BREnvironment.podspec.json
blob4e30f5ffbf33953128794da0a5b50aa74c6883f4
2   "name": "BREnvironment",
3   "version": "1.0.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\n                   app communicates with. During development you might want to have\n                   the app use a *test* server, however, so **BREnvironment** \n                   supports a **LocalEnvironment.plist** file where you can override\n                   that *baseURL* setting to `http://my.crashful.service`.\n",
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.0.0"
17   },
18   "source_files": "BREnvironment/*.{h,m}",
19   "frameworks": "Foundation",
20   "requires_arc": true,
21   "prepare_command": "                    cat <<EOF\n                    You need to add a \"Run Script\" build phase to any target in your project that\n                    relies on using a LocalEnvironment.plist file. An example script is:\n\n                    filePath=${SRCROOT}/PathToYourOwn/LocalEnvironment.plist\n                    if [ -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}\n                    else\n                        echo $filePath not found.\n                    fi\n\n                    Just change the filePath to match the path to the file you want to use.\n                    EOF\n"