xcmultilingual 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 14f6faff7578aaa5ffbbcc217f6ccab739f9fdce
4
- data.tar.gz: b0c96389d264f3c0be2ce3975bbf1e162459adef
3
+ metadata.gz: 64cef45b2ed34b83b9d27a5b275016bebea677ae
4
+ data.tar.gz: 7b79f35464e520cd309dc9008f1da898bc631e9f
5
5
  SHA512:
6
- metadata.gz: 9ce4b84030ce4111447c3cbcd112eec375c25f78f9c1ab2b3e26b6b2d43dcd0a83e5133246ca4383d958789399d31f4cdcd72466043a9d6abd5635db50d076aa
7
- data.tar.gz: df2f40ea20397761c49f97c0c11afc138d56994fb2c8c994756ace6aeca5137d474b0f0f2ee7fab2e56d170b3ead8f624fc776947ddd89aaabddb5547b5072da
6
+ metadata.gz: bdbeb8630fcfd7d08374158fa7cd243e31783e79207d79be1201a55eb9bd2e189dfed794bd1a6fd27ed951046152356f9aedfe68274f20365261d60d188566da
7
+ data.tar.gz: 26e1c30196de411d1501c28fb104ae072e147d051e13e8a51a7e9e5c1c018fa79edaf0ccaf356785a4ace28840b3c4034cbddbec3aac41409921213f50304685
@@ -315,7 +315,7 @@
315
315
  );
316
316
  runOnlyForDeploymentPostprocessing = 0;
317
317
  shellPath = /bin/sh;
318
- shellScript = "env > env.txt";
318
+ shellScript = "";
319
319
  };
320
320
  B5AF23A33F317ABA8BED30B5 /* Embed Pods Frameworks */ = {
321
321
  isa = PBXShellScriptBuildPhase;
@@ -2,7 +2,7 @@
2
2
  // Multilingual.swift
3
3
  // xcmultilingual
4
4
  //
5
- // Created by xcmultilingual on 2015-07-12 19:20:50 +0900.
5
+ // Created by xcmultilingual on 2015-07-12 19:40:59 +0900.
6
6
  //
7
7
  //
8
8
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- xcmultilingual (0.1.0)
4
+ xcmultilingual (0.1.1)
5
5
  thor
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Command line tool for Swift localizations: It parses localization files in the project and output swift file including functions with pretty complementations!
4
4
 
5
+ RubyGems: [xcmultilingual | RubyGems.org | your community gem host](https://rubygems.org/gems/xcmultilingual)
6
+
5
7
  ## Installation
6
8
 
7
9
  Add this line to your application's Gemfile:
@@ -28,7 +30,7 @@ This is command line tool distributed with [RubyGems.org](https://rubygems.org/)
28
30
 
29
31
  Named as `Multilingual.swift` in this example. **xcmultilingual** parses same and lower directries' .bundle and .lproj.
30
32
 
31
- ```
33
+ ```bash
32
34
  .
33
35
  ├── DemoApp
34
36
  │   ├── AppDelegate.swift
@@ -41,7 +43,7 @@ Named as `Multilingual.swift` in this example. **xcmultilingual** parses same an
41
43
 
42
44
  ### 3. Execute update command with destination file path
43
45
 
44
- ```
46
+ ```bash
45
47
  $ xcmultingual update ./DemoApp/Multilingual.swift
46
48
  ```
47
49
 
@@ -49,7 +51,7 @@ And then convenient functions will be generated in destination swift file.
49
51
 
50
52
  Example:
51
53
 
52
- ```
54
+ ```swift
53
55
  import Foundation
54
56
 
55
57
  struct Multilingual {
@@ -105,14 +107,14 @@ And now, you can access your localization string with pretty good complementatio
105
107
 
106
108
  For example, when write: Multilingual, complementations are below:
107
109
 
108
- ```
110
+ ```swift
109
111
  Multilingual.Localizable
110
112
  Multilingual.Animal
111
113
  ```
112
114
 
113
115
  And then, select `Multilingual.Animan`, complementations are blow:
114
116
 
115
- ```
117
+ ```swift
116
118
  Multilingual.Animal.CAT
117
119
  Multilingual.Animal.DOG
118
120
  Multilingual.Animal.BEAR
@@ -123,7 +125,7 @@ Awesome!
123
125
 
124
126
  And print localized string is:
125
127
 
126
- ```
128
+ ```swift
127
129
  Multilingual.Animal.DOG.string()
128
130
  ```
129
131
 
@@ -151,13 +153,13 @@ Example:
151
153
 
152
154
  When you want to use Animal table's DOG key localization.
153
155
 
154
- ```
156
+ ```swift
155
157
  Multilingual.Animal.DOG.string() // Dog
156
158
  ```
157
159
 
158
160
  When you want to show every localizations in test.
159
161
 
160
- ```
162
+ ```swift
161
163
  Multilingual.Animal.localizations() // ["Cat", "Dog", "Bear", "Dear"]
162
164
  ```
163
165
 
@@ -2,7 +2,7 @@
2
2
  // <%= @filename %>
3
3
  // xcmultilingual
4
4
  //
5
- // Created by xcmultilingual on <%= Time.now %>.
5
+ // Created by xcmultilingual.
6
6
  //
7
7
  //
8
8
 
@@ -1,3 +1,3 @@
1
1
  module Xcmultilingual
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcmultilingual
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Naoki Morita
@@ -177,7 +177,6 @@ files:
177
177
  - DemoApp/Pods/Target Support Files/Pods/Pods.debug.xcconfig
178
178
  - DemoApp/Pods/Target Support Files/Pods/Pods.modulemap
179
179
  - DemoApp/Pods/Target Support Files/Pods/Pods.release.xcconfig
180
- - DemoApp/env.txt
181
180
  - Gemfile
182
181
  - Gemfile.lock
183
182
  - LICENSE
data/DemoApp/env.txt DELETED
@@ -1,367 +0,0 @@
1
- COPY_PHASE_STRIP=NO
2
- JAVA_ZIP_FLAGS=-urg
3
- SDK_PRODUCT_BUILD_VERSION=12H141
4
- HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
5
- EXECUTABLES_FOLDER_PATH=DemoApp.app/Executables
6
- LOCAL_APPS_DIR=/Applications
7
- SWIFT_OPTIMIZATION_LEVEL=-Onone
8
- ENABLE_STRICT_OBJC_MSGSEND=YES
9
- REMOVE_CVS_FROM_RESOURCES=YES
10
- SED=/usr/bin/sed
11
- SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
12
- PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
13
- UNLOCALIZED_RESOURCES_FOLDER_PATH=DemoApp.app
14
- SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR=/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
15
- PRODUCT_NAME=DemoApp
16
- TEMP_FILES_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build
17
- LIBRARY_FLAG_NOSPACE=YES
18
- USE_DYNAMIC_NO_PIC=YES
19
- DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
20
- LD_GENERATE_MAP_FILE=NO
21
- DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
22
- CLANG_WARN_EMPTY_BODY=YES
23
- REZ_COLLECTOR_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build/ResourceManagerResources
24
- MAC_OS_X_PRODUCT_BUILD_VERSION=14E46
25
- LD_DEPENDENCY_INFO_FILE=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build/Objects-normal/x86_64/DemoApp_dependency_info.dat
26
- GCC_WARN_UNUSED_FUNCTION=YES
27
- TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
28
- GCC_SYMBOLS_PRIVATE_EXTERN=NO
29
- APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
30
- GCC_C_LANGUAGE_STANDARD=gnu99
31
- DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
32
- PRIVATE_HEADERS_FOLDER_PATH=DemoApp.app/PrivateHeaders
33
- NATIVE_ARCH_64_BIT=x86_64
34
- LIBRARY_FLAG_PREFIX=-l
35
- CONFIGURATION=Debug
36
- SHELL=/bin/bash
37
- GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
38
- COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
39
- PROJECT=DemoApp
40
- OBJROOT=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates
41
- VERSION_INFO_BUILDER=moritanaoki
42
- PLUGINS_FOLDER_PATH=DemoApp.app/PlugIns
43
- DEVELOPMENT_LANGUAGE=English
44
- PRODUCT_TYPE=com.apple.product-type.application
45
- SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
46
- DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
47
- SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
48
- SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
49
- MACH_O_TYPE=mh_execute
50
- TMPDIR=/var/folders/xy/ml6v9xv1321g3g67ghrlkl_m0000gn/T/
51
- PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
52
- CLASS_FILE_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build/JavaClasses
53
- CLANG_WARN_ENUM_CONVERSION=YES
54
- Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.b3cIVCpdIr/Render
55
- INSTALL_DIR=/tmp/DemoApp.dst/Applications
56
- TARGET_BUILD_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products/Debug-iphonesimulator
57
- PBDEVELOPMENTPLIST_PATH=DemoApp.app/pbdevelopment.plist
58
- WRAPPER_EXTENSION=app
59
- CLEAN_PRECOMPS=YES
60
- SYSTEM_DEVELOPER_DOC_DIR=/Applications/Xcode.app/Contents/Developer/ADC Reference Library
61
- JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
62
- PLIST_FILE_OUTPUT_FORMAT=binary
63
- CONFIGURATION_TEMP_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator
64
- variant=normal
65
- TARGETED_DEVICE_FAMILY=1,2
66
- ARCHS_STANDARD_32_64_BIT=i386 x86_64
67
- MallocNanoZone=0
68
- APPLE_INTERNAL_DIR=/AppleInternal
69
- AVAILABLE_PLATFORMS=iphonesimulator macosx iphoneos
70
- GCC_WARN_UNDECLARED_SELECTOR=YES
71
- MAC_OS_X_VERSION_MINOR=1004
72
- SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator8.4.sdk
73
- NATIVE_ARCH_32_BIT=i386
74
- SHARED_SUPPORT_FOLDER_PATH=DemoApp.app/SharedSupport
75
- LIBRARY_SEARCH_PATHS=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products/Debug-iphonesimulator
76
- BUILD_VARIANTS=normal
77
- PLATFORM_NAME=iphonesimulator
78
- INFOPLIST_PREPROCESS=NO
79
- REMOVE_HG_FROM_RESOURCES=YES
80
- SYSTEM_DEVELOPER_RELEASENOTES_DIR=/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
81
- USER_LIBRARY_DIR=/Users/moritanaoki/Library
82
- DSTROOT=/tmp/DemoApp.dst
83
- SDK_NAME=iphonesimulator8.4
84
- TEMP_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build
85
- OS=MACOS
86
- GCC_INLINES_ARE_PRIVATE_EXTERN=YES
87
- LD_MAP_FILE_PATH=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build/DemoApp-LinkMap-normal-x86_64.txt
88
- LOCALIZED_RESOURCES_FOLDER_PATH=DemoApp.app/English.lproj
89
- CONFIGURATION_BUILD_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products/Debug-iphonesimulator
90
- WRAPPER_SUFFIX=.app
91
- CLANG_WARN_UNREACHABLE_CODE=YES
92
- APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
93
- XCODE_PRODUCT_BUILD_VERSION=6E35b
94
- EFFECTIVE_PLATFORM_NAME=-iphonesimulator
95
- DERIVED_FILES_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build/DerivedSources
96
- DEFINES_MODULE=NO
97
- OBJECT_FILE_DIR_normal=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build/Objects-normal
98
- DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
99
- PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES=/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
100
- GCC_PFE_FILE_C_DIALECTS=c objective-c c++ objective-c++
101
- DOCUMENTATION_FOLDER_PATH=DemoApp.app/English.lproj/Documentation
102
- GROUP=staff
103
- VERSION_INFO_STRING="@(#)PROGRAM:DemoApp PROJECT:DemoApp-"
104
- USER=moritanaoki
105
- CLANG_MODULES_BUILD_SESSION_FILE=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation
106
- CURRENT_ARCH=x86_64
107
- JAVA_JAR_FLAGS=cv
108
- EXECUTABLE_PATH=DemoApp.app/DemoApp
109
- OSAC=/usr/bin/osacompile
110
- OTHER_LDFLAGS= -ObjC -framework "TUSafariActivity"
111
- COMMAND_MODE=legacy
112
- DEPLOYMENT_POSTPROCESSING=NO
113
- TARGET_NAME=DemoApp
114
- PLATFORM_VERSION_AVAILABILITY_H_FORMAT=80400
115
- TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
116
- EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES=*.nib *.lproj *.framework *.gch (*) .DS_Store CVS .svn .git .hg *.xcodeproj *.xcode *.pbproj *.pbxproj
117
- CLONE_HEADERS=NO
118
- YACC=yacc
119
- STRIP_STYLE=all
120
- DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
121
- OTHER_CFLAGS= -iquote "/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products/Debug-iphonesimulator/Pods/TUSafariActivity.framework/Headers"
122
- CLANG_ENABLE_OBJC_ARC=YES
123
- GCC3_VERSION=3.3
124
- OTHER_CPLUSPLUSFLAGS= -iquote "/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products/Debug-iphonesimulator/Pods/TUSafariActivity.framework/Headers"
125
- VALIDATE_PRODUCT=NO
126
- SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.pqujRQaymJ/Listeners
127
- OBJECT_FILE_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build/Objects
128
- PLATFORM_PREFERRED_ARCH=i386
129
- VERSIONPLIST_PATH=DemoApp.app/version.plist
130
- TARGETNAME=DemoApp
131
- SYSTEM_APPS_DIR=/Applications
132
- __CF_USER_TEXT_ENCODING=0x1F5:0x1:0xE
133
- PODS_ROOT=/Users/moritanaoki/repositories/bitbucket/xcmultilingual/DemoApp/Pods
134
- MODULE_CACHE_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/ModuleCache
135
- BUILT_PRODUCTS_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products/Debug-iphonesimulator
136
- ICONV=/usr/bin/iconv
137
- PACKAGE_TYPE=com.apple.package-type.wrapper.application
138
- XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
139
- XCODE_VERSION_ACTUAL=0640
140
- HEADER_SEARCH_PATHS=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products/Debug-iphonesimulator/include /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
141
- DERIVED_FILE_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build/DerivedSources
142
- LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
143
- USER_APPS_DIR=/Users/moritanaoki/Applications
144
- DO_HEADER_SCANNING_IN_JAM=NO
145
- SCRIPT_OUTPUT_FILE_COUNT=0
146
- GCC_VERSION=com.apple.compilers.llvm.clang.1_0
147
- DERIVED_SOURCES_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build/DerivedSources
148
- GCC_OPTIMIZATION_LEVEL=0
149
- GCC_WARN_64_TO_32_BIT_CONVERSION=YES
150
- PKGINFO_PATH=DemoApp.app/PkgInfo
151
- ARCHS_STANDARD=i386 x86_64
152
- DEAD_CODE_STRIPPING=NO
153
- DWARF_DSYM_FOLDER_PATH=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products/Debug-iphonesimulator
154
- REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
155
- ENABLE_HEADER_DEPENDENCIES=YES
156
- SET_FILE_MODE_OWNER_GROUP=NO
157
- OTHER_LIBTOOLFLAGS= -ObjC -framework "TUSafariActivity"
158
- ARCHS_STANDARD_INCLUDING_64_BIT=i386 x86_64
159
- EXPANDED_CODE_SIGN_IDENTITY_NAME=
160
- SHARED_DERIVED_FILE_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products/Debug-iphonesimulator/DerivedSources
161
- PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
162
- GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
163
- SYSTEM_DEMOS_DIR=/Applications/Extras
164
- COPYING_PRESERVES_HFS_DATA=NO
165
- REZ_SEARCH_PATHS=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products/Debug-iphonesimulator
166
- GCC_TREAT_WARNINGS_AS_ERRORS=NO
167
- CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
168
- DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
169
- BUILD_COMPONENTS=headers build
170
- JAVA_USE_DEPENDENCIES=YES
171
- ALTERNATE_MODE=u+w,go-w,a+rX
172
- OPTIMIZATION_LEVEL=0
173
- INSTALL_GROUP=staff
174
- CLANG_ENABLE_MODULES=YES
175
- PATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/usr/bin:/bin:/usr/sbin:/sbin
176
- GCC_OBJC_LEGACY_DISPATCH=YES
177
- ONLY_ACTIVE_ARCH=YES
178
- INFOPLIST_OUTPUT_FORMAT=binary
179
- INSTALL_MODE_FLAG=u+w,go-w,a+rX
180
- ACTION=build
181
- CODE_SIGNING_ALLOWED=NO
182
- DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
183
- _=/usr/bin/env
184
- SHARED_PRECOMPS_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/PrecompiledHeaders
185
- PROJECT_NAME=DemoApp
186
- STRINGS_FILE_OUTPUT_ENCODING=binary
187
- FULL_PRODUCT_NAME=DemoApp.app
188
- HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
189
- SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator8.4.sdk
190
- COMPRESS_PNG_FILES=YES
191
- EXPANDED_CODE_SIGN_IDENTITY=
192
- GID=20
193
- SEPARATE_STRIP=NO
194
- INSTALL_OWNER=moritanaoki
195
- PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
196
- CONTENTS_FOLDER_PATH=DemoApp.app
197
- STRIP_INSTALLED_PRODUCT=YES
198
- JAVAC_DEFAULT_FLAGS=-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
199
- FILE_LIST=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build/Objects/LinkFileList
200
- PWD=/Users/moritanaoki/repositories/bitbucket/xcmultilingual/DemoApp
201
- JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
202
- PRODUCT_MODULE_NAME=DemoApp
203
- REMOVE_GIT_FROM_RESOURCES=YES
204
- CCHROOT=/var/folders/xy/ml6v9xv1321g3g67ghrlkl_m0000gn/C/com.apple.DeveloperTools/6.4-6E35b/Xcode
205
- GCC_DYNAMIC_NO_PIC=NO
206
- PROJECT_FILE_PATH=/Users/moritanaoki/repositories/bitbucket/xcmultilingual/DemoApp/DemoApp.xcodeproj
207
- FRAMEWORK_SEARCH_PATHS=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products/Debug-iphonesimulator "/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products/Debug-iphonesimulator/Pods"
208
- EXECUTABLE_NAME=DemoApp
209
- APPLICATION_EXTENSION_API_ONLY=NO
210
- SUPPORTED_DEVICE_FAMILIES=1 2
211
- NO_COMMON=YES
212
- LD_RUNPATH_SEARCH_PATHS= '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
213
- CREATE_INFOPLIST_SECTION_IN_BINARY=NO
214
- PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
215
- DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
216
- JAVA_COMPILER=/usr/bin/javac
217
- HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
218
- VERSION_INFO_FILE=DemoApp_vers.c
219
- UNSTRIPPED_PRODUCT=NO
220
- SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
221
- JAVA_SOURCE_SUBDIR=.
222
- DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
223
- DEPLOYMENT_LOCATION=NO
224
- CLANG_CXX_LIBRARY=libc++
225
- AD_HOC_CODE_SIGNING_ALLOWED=NO
226
- SEPARATE_SYMBOL_EDIT=NO
227
- DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
228
- SRCROOT=/Users/moritanaoki/repositories/bitbucket/xcmultilingual/DemoApp
229
- LOCAL_DEVELOPER_DIR=/Library/Developer
230
- REZ_OBJECTS_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build/ResourceManagerResources/Objects
231
- PODS_FRAMEWORK_BUILD_PATH=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products/Debug-iphonesimulator/Pods
232
- INFOPLIST_PATH=DemoApp.app/Info.plist
233
- CHOWN=/usr/sbin/chown
234
- SYSTEM_DEVELOPER_JAVA_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Java Tools
235
- PUBLIC_HEADERS_FOLDER_PATH=DemoApp.app/Headers
236
- PROJECT_DIR=/Users/moritanaoki/repositories/bitbucket/xcmultilingual/DemoApp
237
- JAVA_FOLDER_PATH=DemoApp.app/Java
238
- XPC_FLAGS=0x0
239
- PASCAL_STRINGS=YES
240
- COMPOSITE_SDK_DIRS=/var/folders/xy/ml6v9xv1321g3g67ghrlkl_m0000gn/C/com.apple.DeveloperTools/6.4-6E35b/Xcode/CompositeSDKs
241
- TEMP_FILE_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build
242
- EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
243
- PROJECT_TEMP_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build
244
- GCC_NO_COMMON_BLOCKS=YES
245
- MAC_OS_X_VERSION_MAJOR=101000
246
- CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
247
- SYMROOT=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products
248
- CP=/bin/cp
249
- SKIP_INSTALL=NO
250
- SCRIPT_INPUT_FILE_COUNT=0
251
- JAVA_ARCHIVE_CLASSES=YES
252
- PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
253
- ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
254
- DWARF_DSYM_FILE_NAME=DemoApp.app.dSYM
255
- XPC_SERVICE_NAME=0
256
- APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
257
- PROJECT_TEMP_ROOT=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates
258
- SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
259
- MAC_OS_X_VERSION_ACTUAL=101004
260
- LEX=lex
261
- FRAMEWORK_FLAG_PREFIX=-framework
262
- INSTALL_ROOT=/tmp/DemoApp.dst
263
- CLANG_WARN_BOOL_CONVERSION=YES
264
- MTL_ENABLE_DEBUG_INFO=YES
265
- RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
266
- HOME=/Users/moritanaoki
267
- SHLVL=2
268
- PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
269
- EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=.DS_Store .svn .git .hg CVS
270
- LINK_FILE_LIST_normal_x86_64=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build/Objects-normal/x86_64/DemoApp.LinkFileList
271
- PROFILING_CODE=NO
272
- GENERATE_PROFILING_CODE=NO
273
- SET_DIR_MODE_OWNER_GROUP=YES
274
- APPLY_RULES_IN_COPY_FILES=NO
275
- CLANG_WARN_INT_CONVERSION=YES
276
- REMOVE_SVN_FROM_RESOURCES=YES
277
- SYSTEM_LIBRARY_DIR=/System/Library
278
- DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
279
- VERBOSE_PBXCP=NO
280
- XCODE_VERSION_MINOR=0640
281
- OBJC_ABI_VERSION=2
282
- FRAMEWORKS_FOLDER_PATH=DemoApp.app/Frameworks
283
- SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
284
- VALID_ARCHS=i386 x86_64
285
- INSTALL_PATH=/Applications
286
- COMBINE_HIDPI_IMAGES=NO
287
- LD_NO_PIE=NO
288
- CACHE_ROOT=/var/folders/xy/ml6v9xv1321g3g67ghrlkl_m0000gn/C/com.apple.DeveloperTools/6.4-6E35b/Xcode
289
- SYSTEM_DEVELOPER_DEMOS_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
290
- PROJECT_DERIVED_FILE_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/DerivedSources
291
- GCC_PREPROCESSOR_DEFINITIONS=DEBUG=1 COCOAPODS=1
292
- JAVA_ARCHIVE_TYPE=JAR
293
- LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
294
- ALWAYS_USE_SEPARATE_HEADERMAPS=YES
295
- SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
296
- DEBUGGING_SYMBOLS=YES
297
- CODESIGNING_FOLDER_PATH=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products/Debug-iphonesimulator/DemoApp.app
298
- EXPANDED_PROVISIONING_PROFILE=
299
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
300
- LOGNAME=moritanaoki
301
- CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
302
- SHALLOW_BUNDLE=YES
303
- PRECOMP_DESTINATION_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build/PrefixHeaders
304
- PKGINFO_FILE_PATH=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build/PkgInfo
305
- APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
306
- BUILD_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products
307
- HEADERMAP_USES_VFS=NO
308
- XCODE_VERSION_MAJOR=0600
309
- PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
310
- COLOR_DIAGNOSTICS=NO
311
- GCC_WARN_UNUSED_VARIABLE=YES
312
- JIKES_DEFAULT_FLAGS=+E +OLDCSO
313
- INFOPLIST_FILE=DemoApp/Info.plist
314
- LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
315
- LINK_WITH_STANDARD_LIBRARIES=YES
316
- LOCAL_LIBRARY_DIR=/Library
317
- CURRENT_VARIANT=normal
318
- ALWAYS_SEARCH_USER_PATHS=NO
319
- USE_HEADER_SYMLINKS=NO
320
- CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
321
- UID=501
322
- ALTERNATE_GROUP=staff
323
- SCRIPTS_FOLDER_PATH=DemoApp.app/Scripts
324
- PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
325
- KEEP_PRIVATE_EXTERNS=NO
326
- SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
327
- SUPPORTED_PLATFORMS=iphonesimulator iphoneos
328
- SYSTEM_DEVELOPER_TOOLS_DOC_DIR=/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
329
- SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
330
- IPHONEOS_DEPLOYMENT_TARGET=8.4
331
- SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
332
- XPCSERVICES_FOLDER_PATH=DemoApp.app/XPCServices
333
- INFOSTRINGS_PATH=DemoApp.app/English.lproj/InfoPlist.strings
334
- arch=x86_64
335
- PLATFORM_PRODUCT_BUILD_VERSION=12H141
336
- GENERATE_MASTER_OBJECT_FILE=NO
337
- NATIVE_ARCH_ACTUAL=x86_64
338
- GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
339
- SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
340
- ALTERNATE_OWNER=moritanaoki
341
- DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
342
- INFOPLIST_EXPAND_BUILD_SETTINGS=YES
343
- SHARED_FRAMEWORKS_FOLDER_PATH=DemoApp.app/SharedFrameworks
344
- BUILD_STYLE=
345
- ARCHS_STANDARD_64_BIT=x86_64
346
- HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
347
- ARCHS=x86_64
348
- ARCHS_STANDARD_32_BIT=i386
349
- GENERATE_PKGINFO_FILE=YES
350
- CHMOD=/bin/chmod
351
- LINKER_DISPLAYS_MANGLED_NAMES=NO
352
- DEBUG_INFORMATION_FORMAT=dwarf-with-dsym
353
- TARGET_TEMP_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build
354
- NATIVE_ARCH=i386
355
- CLANG_WARN_CONSTANT_CONVERSION=YES
356
- FRAMEWORK_VERSION=A
357
- WRAPPER_NAME=DemoApp.app
358
- HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
359
- TEMP_ROOT=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates
360
- FIXED_FILES_DIR=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Intermediates/DemoApp.build/Debug-iphonesimulator/DemoApp.build/FixedFiles
361
- LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
362
- SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
363
- SOURCE_ROOT=/Users/moritanaoki/repositories/bitbucket/xcmultilingual/DemoApp
364
- BUILD_ROOT=/Users/moritanaoki/Library/Developer/Xcode/DerivedData/DemoApp-agtxdegvdwmunvfzsroiqeidpwri/Build/Products
365
- USE_HEADERMAP=YES
366
- EXECUTABLE_FOLDER_PATH=DemoApp.app
367
- PRODUCT_SETTINGS_PATH=/Users/moritanaoki/repositories/bitbucket/xcmultilingual/DemoApp/DemoApp/Info.plist