candle 0.0.4 → 0.0.6

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.
Files changed (46) hide show
  1. data/README.md +27 -2
  2. data/VERSION +1 -1
  3. data/lib/candle/generators/blank.rb +3 -2
  4. data/lib/candle/generators/help.rb +3 -1
  5. data/lib/candle/generators/table.rb +129 -0
  6. data/lib/candle/generators/{lua → templates/blank}/scripts/AppDelegate.lua +0 -0
  7. data/lib/candle/generators/{lua → templates/blank}/scripts/tests/init.lua +0 -0
  8. data/lib/candle/generators/{lua → templates/blank}/scripts/tests/someTest.lua +0 -0
  9. data/lib/candle/generators/templates/project.rake +158 -0
  10. data/lib/candle/generators/templates/table/WaxApplication/ProtocolLoader.h +12 -0
  11. data/lib/candle/generators/templates/table/WaxApplication/WaxApplication-Info.plist.tt +36 -0
  12. data/lib/candle/generators/templates/table/WaxApplication/WaxApplication-Prefix.pch.tt +14 -0
  13. data/lib/candle/generators/templates/table/WaxApplication/en.lproj/InfoPlist.strings +2 -0
  14. data/lib/candle/generators/templates/table/WaxApplication/main.m.tt +20 -0
  15. data/lib/candle/generators/templates/table/WaxApplication.xcodeproj/project.pbxproj +851 -0
  16. data/lib/candle/generators/templates/table/WaxApplication.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  17. data/lib/candle/generators/templates/table/WaxApplication.xcodeproj/project.xcworkspace/xcuserdata/eiffel.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  18. data/lib/candle/generators/templates/table/WaxApplication.xcodeproj/xcuserdata/eiffel.xcuserdatad/xcschemes/WaxApplication.xcscheme +86 -0
  19. data/lib/candle/generators/templates/table/WaxApplication.xcodeproj/xcuserdata/eiffel.xcuserdatad/xcschemes/xcschememanagement.plist +22 -0
  20. data/lib/candle/generators/templates/table/scripts/AppDelegate.lua +33 -0
  21. data/lib/candle/generators/templates/table/scripts/CapitalsTable.lua +36 -0
  22. data/lib/candle/generators/templates/table/scripts/StatesTable.lua +50 -0
  23. data/lib/candle/generators/templates/table/scripts/states.plist +606 -0
  24. data/lib/candle/generators/templates/table/scripts/tests/init.lua +6 -0
  25. data/lib/candle/generators/templates/table/scripts/tests/someTest.lua +12 -0
  26. data/lib/candle/generators/templates/xib/WaxApplication/ProtocolLoader.h +12 -0
  27. data/lib/candle/generators/templates/xib/WaxApplication/WaxApplication-Info.plist.tt +36 -0
  28. data/lib/candle/generators/templates/xib/WaxApplication/WaxApplication-Prefix.pch.tt +14 -0
  29. data/lib/candle/generators/templates/xib/WaxApplication/en.lproj/InfoPlist.strings +2 -0
  30. data/lib/candle/generators/templates/xib/WaxApplication/main.m.tt +20 -0
  31. data/lib/candle/generators/templates/xib/WaxApplication.xcodeproj/project.pbxproj +855 -0
  32. data/lib/candle/generators/templates/xib/WaxApplication.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  33. data/lib/candle/generators/templates/xib/WaxApplication.xcodeproj/project.xcworkspace/xcuserdata/eiffel.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  34. data/lib/candle/generators/templates/xib/WaxApplication.xcodeproj/xcuserdata/eiffel.xcuserdatad/xcschemes/WaxApplication.xcscheme +86 -0
  35. data/lib/candle/generators/templates/xib/WaxApplication.xcodeproj/xcuserdata/eiffel.xcuserdatad/xcschemes/xcschememanagement.plist +22 -0
  36. data/lib/candle/generators/templates/xib/scripts/AppDelegate.lua +32 -0
  37. data/lib/candle/generators/templates/xib/scripts/BlueViewController.lua +23 -0
  38. data/lib/candle/generators/templates/xib/scripts/BlueViewController.xib +176 -0
  39. data/lib/candle/generators/templates/xib/scripts/OrangeViewController.lua +24 -0
  40. data/lib/candle/generators/templates/xib/scripts/OrangeViewController.xib +177 -0
  41. data/lib/candle/generators/templates/xib/scripts/tests/init.lua +6 -0
  42. data/lib/candle/generators/templates/xib/scripts/tests/someTest.lua +12 -0
  43. data/lib/candle/generators/xib.rb +128 -0
  44. data/lib/candle/version.rb +2 -4
  45. data/lib/candle.rb +1 -1
  46. metadata +365 -307
@@ -0,0 +1,851 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ C57ED6EA16E59BF400F57BA4 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C57ED6E916E59BF400F57BA4 /* UIKit.framework */; };
11
+ C57ED6EC16E59BF400F57BA4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C57ED6EB16E59BF400F57BA4 /* Foundation.framework */; };
12
+ C57ED6EE16E59BF400F57BA4 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C57ED6ED16E59BF400F57BA4 /* CoreGraphics.framework */; };
13
+ C57ED6F416E59BF400F57BA4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = C57ED6F216E59BF400F57BA4 /* InfoPlist.strings */; };
14
+ C57ED6F616E59BF400F57BA4 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = C57ED6F516E59BF400F57BA4 /* main.m */; };
15
+ C57ED6FC16E59BF400F57BA4 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = C57ED6FB16E59BF400F57BA4 /* Default.png */; };
16
+ C57ED6FE16E59BF400F57BA4 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C57ED6FD16E59BF400F57BA4 /* Default@2x.png */; };
17
+ C57ED70016E59BF400F57BA4 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C57ED6FF16E59BF400F57BA4 /* Default-568h@2x.png */; };
18
+ C57EDAC416E6187900F57BA4 /* hammer in Resources */ = {isa = PBXBuildFile; fileRef = C57EDA2F16E6187800F57BA4 /* hammer */; };
19
+ C57EDAC516E6187900F57BA4 /* update-xibs in Resources */ = {isa = PBXBuildFile; fileRef = C57EDA3016E6187800F57BA4 /* update-xibs */; };
20
+ C57EDAC616E6187900F57BA4 /* waxsim in Resources */ = {isa = PBXBuildFile; fileRef = C57EDA3116E6187800F57BA4 /* waxsim */; };
21
+ C57EDAC716E6187900F57BA4 /* compile-stdlib.sh in Resources */ = {isa = PBXBuildFile; fileRef = C57EDA3416E6187800F57BA4 /* compile-stdlib.sh */; };
22
+ C57EDAC816E6187900F57BA4 /* copy-scripts.sh in Resources */ = {isa = PBXBuildFile; fileRef = C57EDA3516E6187800F57BA4 /* copy-scripts.sh */; };
23
+ C57EDAC916E6187900F57BA4 /* luac.lua in Resources */ = {isa = PBXBuildFile; fileRef = C57EDA3616E6187800F57BA4 /* luac.lua */; };
24
+ C57EDACA16E6187900F57BA4 /* wax_CGTransform.m in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA3A16E6187800F57BA4 /* wax_CGTransform.m */; };
25
+ C57EDACB16E6187900F57BA4 /* wax_CGContext.m in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA3D16E6187800F57BA4 /* wax_CGContext.m */; };
26
+ C57EDACC16E6187900F57BA4 /* wax_filesystem.m in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA4016E6187800F57BA4 /* wax_filesystem.m */; };
27
+ C57EDACD16E6187900F57BA4 /* wax_http.m in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA4316E6187800F57BA4 /* wax_http.m */; };
28
+ C57EDACE16E6187900F57BA4 /* wax_http_connection.m in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA4516E6187900F57BA4 /* wax_http_connection.m */; };
29
+ C57EDACF16E6187900F57BA4 /* Rakefile in Resources */ = {isa = PBXBuildFile; fileRef = C57EDA4716E6187900F57BA4 /* Rakefile */; };
30
+ C57EDAD016E6187900F57BA4 /* wax_json.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA4816E6187900F57BA4 /* wax_json.c */; };
31
+ C57EDAD116E6187900F57BA4 /* yajl.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA4F16E6187900F57BA4 /* yajl.c */; };
32
+ C57EDAD216E6187900F57BA4 /* yajl_alloc.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA5016E6187900F57BA4 /* yajl_alloc.c */; };
33
+ C57EDAD316E6187900F57BA4 /* yajl_buf.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA5216E6187900F57BA4 /* yajl_buf.c */; };
34
+ C57EDAD416E6187900F57BA4 /* yajl_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA5616E6187900F57BA4 /* yajl_encode.c */; };
35
+ C57EDAD516E6187900F57BA4 /* yajl_gen.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA5816E6187900F57BA4 /* yajl_gen.c */; };
36
+ C57EDAD616E6187900F57BA4 /* yajl_lex.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA5A16E6187900F57BA4 /* yajl_lex.c */; };
37
+ C57EDAD716E6187900F57BA4 /* yajl_parser.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA5D16E6187900F57BA4 /* yajl_parser.c */; };
38
+ C57EDAD816E6187900F57BA4 /* yajl-1.0.9.tar.gz in Resources */ = {isa = PBXBuildFile; fileRef = C57EDA5F16E6187900F57BA4 /* yajl-1.0.9.tar.gz */; };
39
+ C57EDAD916E6187900F57BA4 /* lapi.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA6116E6187900F57BA4 /* lapi.c */; };
40
+ C57EDADA16E6187900F57BA4 /* lauxlib.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA6316E6187900F57BA4 /* lauxlib.c */; };
41
+ C57EDADB16E6187900F57BA4 /* lbaselib.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA6516E6187900F57BA4 /* lbaselib.c */; };
42
+ C57EDADC16E6187900F57BA4 /* lcode.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA6616E6187900F57BA4 /* lcode.c */; };
43
+ C57EDADD16E6187900F57BA4 /* ldblib.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA6816E6187900F57BA4 /* ldblib.c */; };
44
+ C57EDADE16E6187900F57BA4 /* ldebug.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA6916E6187900F57BA4 /* ldebug.c */; };
45
+ C57EDADF16E6187900F57BA4 /* ldo.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA6B16E6187900F57BA4 /* ldo.c */; };
46
+ C57EDAE016E6187900F57BA4 /* ldump.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA6D16E6187900F57BA4 /* ldump.c */; };
47
+ C57EDAE116E6187900F57BA4 /* lfunc.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA6E16E6187900F57BA4 /* lfunc.c */; };
48
+ C57EDAE216E6187900F57BA4 /* lgc.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA7016E6187900F57BA4 /* lgc.c */; };
49
+ C57EDAE316E6187900F57BA4 /* linit.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA7216E6187900F57BA4 /* linit.c */; };
50
+ C57EDAE416E6187900F57BA4 /* liolib.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA7316E6187900F57BA4 /* liolib.c */; };
51
+ C57EDAE516E6187900F57BA4 /* llex.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA7416E6187900F57BA4 /* llex.c */; };
52
+ C57EDAE616E6187900F57BA4 /* lmathlib.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA7716E6187900F57BA4 /* lmathlib.c */; };
53
+ C57EDAE716E6187900F57BA4 /* lmem.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA7816E6187900F57BA4 /* lmem.c */; };
54
+ C57EDAE816E6187900F57BA4 /* loadlib.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA7A16E6187900F57BA4 /* loadlib.c */; };
55
+ C57EDAE916E6187900F57BA4 /* lobject.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA7B16E6187900F57BA4 /* lobject.c */; };
56
+ C57EDAEA16E6187900F57BA4 /* lopcodes.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA7D16E6187900F57BA4 /* lopcodes.c */; };
57
+ C57EDAEB16E6187900F57BA4 /* loslib.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA7F16E6187900F57BA4 /* loslib.c */; };
58
+ C57EDAEC16E6187900F57BA4 /* lparser.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA8016E6187900F57BA4 /* lparser.c */; };
59
+ C57EDAED16E6187900F57BA4 /* lstate.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA8216E6187900F57BA4 /* lstate.c */; };
60
+ C57EDAEE16E6187900F57BA4 /* lstring.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA8416E6187900F57BA4 /* lstring.c */; };
61
+ C57EDAEF16E6187900F57BA4 /* lstrlib.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA8616E6187900F57BA4 /* lstrlib.c */; };
62
+ C57EDAF016E6187900F57BA4 /* ltable.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA8716E6187900F57BA4 /* ltable.c */; };
63
+ C57EDAF116E6187900F57BA4 /* ltablib.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA8916E6187900F57BA4 /* ltablib.c */; };
64
+ C57EDAF216E6187900F57BA4 /* ltm.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA8A16E6187900F57BA4 /* ltm.c */; };
65
+ C57EDAF316E6187900F57BA4 /* lundump.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA8F16E6187900F57BA4 /* lundump.c */; };
66
+ C57EDAF416E6187900F57BA4 /* lvm.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA9116E6187900F57BA4 /* lvm.c */; };
67
+ C57EDAF516E6187900F57BA4 /* lzio.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA9316E6187900F57BA4 /* lzio.c */; };
68
+ C57EDAF616E6187900F57BA4 /* print.c in Sources */ = {isa = PBXBuildFile; fileRef = C57EDA9516E6187900F57BA4 /* print.c */; };
69
+ C57EDAF716E6187900F57BA4 /* project.rake in Resources */ = {isa = PBXBuildFile; fileRef = C57EDA9616E6187900F57BA4 /* project.rake */; };
70
+ C57EDB0F16E6187900F57BA4 /* wax.m in Sources */ = {isa = PBXBuildFile; fileRef = C57EDAB316E6187900F57BA4 /* wax.m */; };
71
+ C57EDB1016E6187900F57BA4 /* wax_class.m in Sources */ = {isa = PBXBuildFile; fileRef = C57EDAB516E6187900F57BA4 /* wax_class.m */; };
72
+ C57EDB1116E6187900F57BA4 /* wax_gc.m in Sources */ = {isa = PBXBuildFile; fileRef = C57EDAB716E6187900F57BA4 /* wax_gc.m */; };
73
+ C57EDB1216E6187900F57BA4 /* wax_helpers.m in Sources */ = {isa = PBXBuildFile; fileRef = C57EDAB916E6187900F57BA4 /* wax_helpers.m */; };
74
+ C57EDB1316E6187900F57BA4 /* wax_instance.m in Sources */ = {isa = PBXBuildFile; fileRef = C57EDABB16E6187900F57BA4 /* wax_instance.m */; };
75
+ C57EDB1416E6187900F57BA4 /* wax_server.m in Sources */ = {isa = PBXBuildFile; fileRef = C57EDABD16E6187900F57BA4 /* wax_server.m */; };
76
+ C57EDB1516E6187900F57BA4 /* wax_struct.m in Sources */ = {isa = PBXBuildFile; fileRef = C57EDAC016E6187900F57BA4 /* wax_struct.m */; };
77
+ C5FB108F16E8A49B003B9D4D /* states.plist in Resources */ = {isa = PBXBuildFile; fileRef = C5FB108E16E8A49B003B9D4D /* states.plist */; };
78
+ C5FB109216E8A4A4003B9D4D /* CapitalsTable.lua in Resources */ = {isa = PBXBuildFile; fileRef = C5FB109016E8A4A4003B9D4D /* CapitalsTable.lua */; };
79
+ C5FB109316E8A4A4003B9D4D /* StatesTable.lua in Resources */ = {isa = PBXBuildFile; fileRef = C5FB109116E8A4A4003B9D4D /* StatesTable.lua */; };
80
+ /* End PBXBuildFile section */
81
+
82
+ /* Begin PBXFileReference section */
83
+ C57ED6E616E59BF400F57BA4 /* WaxApplication.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = WaxApplication.app; sourceTree = BUILT_PRODUCTS_DIR; };
84
+ C57ED6E916E59BF400F57BA4 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
85
+ C57ED6EB16E59BF400F57BA4 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
86
+ C57ED6ED16E59BF400F57BA4 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
87
+ C57ED6F116E59BF400F57BA4 /* WaxApplication-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "WaxApplication-Info.plist"; sourceTree = "<group>"; };
88
+ C57ED6F316E59BF400F57BA4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
89
+ C57ED6F516E59BF400F57BA4 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
90
+ C57ED6F716E59BF400F57BA4 /* WaxApplication-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "WaxApplication-Prefix.pch"; sourceTree = "<group>"; };
91
+ C57ED6FB16E59BF400F57BA4 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
92
+ C57ED6FD16E59BF400F57BA4 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
93
+ C57ED6FF16E59BF400F57BA4 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
94
+ C57ED70616E5A65C00F57BA4 /* ProtocolLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProtocolLoader.h; sourceTree = "<group>"; };
95
+ C57EDA2916E6187800F57BA4 /* AppDelegate.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AppDelegate.lua; sourceTree = "<group>"; };
96
+ C57EDA2B16E6187800F57BA4 /* init.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = init.lua; sourceTree = "<group>"; };
97
+ C57EDA2C16E6187800F57BA4 /* someTest.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = someTest.lua; sourceTree = "<group>"; };
98
+ C57EDA2F16E6187800F57BA4 /* hammer */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = hammer; sourceTree = "<group>"; };
99
+ C57EDA3016E6187800F57BA4 /* update-xibs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "update-xibs"; sourceTree = "<group>"; };
100
+ C57EDA3116E6187800F57BA4 /* waxsim */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = waxsim; sourceTree = "<group>"; };
101
+ C57EDA3416E6187800F57BA4 /* compile-stdlib.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = "compile-stdlib.sh"; sourceTree = "<group>"; };
102
+ C57EDA3516E6187800F57BA4 /* copy-scripts.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = "copy-scripts.sh"; sourceTree = "<group>"; };
103
+ C57EDA3616E6187800F57BA4 /* luac.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = luac.lua; sourceTree = "<group>"; };
104
+ C57EDA3916E6187800F57BA4 /* wax_CGTransform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wax_CGTransform.h; sourceTree = "<group>"; };
105
+ C57EDA3A16E6187800F57BA4 /* wax_CGTransform.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = wax_CGTransform.m; sourceTree = "<group>"; };
106
+ C57EDA3C16E6187800F57BA4 /* wax_CGContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wax_CGContext.h; sourceTree = "<group>"; };
107
+ C57EDA3D16E6187800F57BA4 /* wax_CGContext.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = wax_CGContext.m; sourceTree = "<group>"; };
108
+ C57EDA3F16E6187800F57BA4 /* wax_filesystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wax_filesystem.h; sourceTree = "<group>"; };
109
+ C57EDA4016E6187800F57BA4 /* wax_filesystem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = wax_filesystem.m; sourceTree = "<group>"; };
110
+ C57EDA4216E6187800F57BA4 /* wax_http.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wax_http.h; sourceTree = "<group>"; };
111
+ C57EDA4316E6187800F57BA4 /* wax_http.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = wax_http.m; sourceTree = "<group>"; };
112
+ C57EDA4416E6187800F57BA4 /* wax_http_connection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wax_http_connection.h; sourceTree = "<group>"; };
113
+ C57EDA4516E6187900F57BA4 /* wax_http_connection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = wax_http_connection.m; sourceTree = "<group>"; };
114
+ C57EDA4716E6187900F57BA4 /* Rakefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Rakefile; sourceTree = "<group>"; };
115
+ C57EDA4816E6187900F57BA4 /* wax_json.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = wax_json.c; sourceTree = "<group>"; };
116
+ C57EDA4916E6187900F57BA4 /* wax_json.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wax_json.h; sourceTree = "<group>"; };
117
+ C57EDA4C16E6187900F57BA4 /* yajl_common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yajl_common.h; sourceTree = "<group>"; };
118
+ C57EDA4D16E6187900F57BA4 /* yajl_gen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yajl_gen.h; sourceTree = "<group>"; };
119
+ C57EDA4E16E6187900F57BA4 /* yajl_parse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yajl_parse.h; sourceTree = "<group>"; };
120
+ C57EDA4F16E6187900F57BA4 /* yajl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yajl.c; sourceTree = "<group>"; };
121
+ C57EDA5016E6187900F57BA4 /* yajl_alloc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yajl_alloc.c; sourceTree = "<group>"; };
122
+ C57EDA5116E6187900F57BA4 /* yajl_alloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yajl_alloc.h; sourceTree = "<group>"; };
123
+ C57EDA5216E6187900F57BA4 /* yajl_buf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yajl_buf.c; sourceTree = "<group>"; };
124
+ C57EDA5316E6187900F57BA4 /* yajl_buf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yajl_buf.h; sourceTree = "<group>"; };
125
+ C57EDA5416E6187900F57BA4 /* yajl_bytestack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yajl_bytestack.h; sourceTree = "<group>"; };
126
+ C57EDA5516E6187900F57BA4 /* yajl_common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yajl_common.h; sourceTree = "<group>"; };
127
+ C57EDA5616E6187900F57BA4 /* yajl_encode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yajl_encode.c; sourceTree = "<group>"; };
128
+ C57EDA5716E6187900F57BA4 /* yajl_encode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yajl_encode.h; sourceTree = "<group>"; };
129
+ C57EDA5816E6187900F57BA4 /* yajl_gen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yajl_gen.c; sourceTree = "<group>"; };
130
+ C57EDA5916E6187900F57BA4 /* yajl_gen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yajl_gen.h; sourceTree = "<group>"; };
131
+ C57EDA5A16E6187900F57BA4 /* yajl_lex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yajl_lex.c; sourceTree = "<group>"; };
132
+ C57EDA5B16E6187900F57BA4 /* yajl_lex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yajl_lex.h; sourceTree = "<group>"; };
133
+ C57EDA5C16E6187900F57BA4 /* yajl_parse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yajl_parse.h; sourceTree = "<group>"; };
134
+ C57EDA5D16E6187900F57BA4 /* yajl_parser.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yajl_parser.c; sourceTree = "<group>"; };
135
+ C57EDA5E16E6187900F57BA4 /* yajl_parser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yajl_parser.h; sourceTree = "<group>"; };
136
+ C57EDA5F16E6187900F57BA4 /* yajl-1.0.9.tar.gz */ = {isa = PBXFileReference; lastKnownFileType = archive.gzip; path = "yajl-1.0.9.tar.gz"; sourceTree = "<group>"; };
137
+ C57EDA6116E6187900F57BA4 /* lapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lapi.c; sourceTree = "<group>"; };
138
+ C57EDA6216E6187900F57BA4 /* lapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lapi.h; sourceTree = "<group>"; };
139
+ C57EDA6316E6187900F57BA4 /* lauxlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lauxlib.c; sourceTree = "<group>"; };
140
+ C57EDA6416E6187900F57BA4 /* lauxlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lauxlib.h; sourceTree = "<group>"; };
141
+ C57EDA6516E6187900F57BA4 /* lbaselib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lbaselib.c; sourceTree = "<group>"; };
142
+ C57EDA6616E6187900F57BA4 /* lcode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lcode.c; sourceTree = "<group>"; };
143
+ C57EDA6716E6187900F57BA4 /* lcode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lcode.h; sourceTree = "<group>"; };
144
+ C57EDA6816E6187900F57BA4 /* ldblib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ldblib.c; sourceTree = "<group>"; };
145
+ C57EDA6916E6187900F57BA4 /* ldebug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ldebug.c; sourceTree = "<group>"; };
146
+ C57EDA6A16E6187900F57BA4 /* ldebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ldebug.h; sourceTree = "<group>"; };
147
+ C57EDA6B16E6187900F57BA4 /* ldo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ldo.c; sourceTree = "<group>"; };
148
+ C57EDA6C16E6187900F57BA4 /* ldo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ldo.h; sourceTree = "<group>"; };
149
+ C57EDA6D16E6187900F57BA4 /* ldump.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ldump.c; sourceTree = "<group>"; };
150
+ C57EDA6E16E6187900F57BA4 /* lfunc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lfunc.c; sourceTree = "<group>"; };
151
+ C57EDA6F16E6187900F57BA4 /* lfunc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lfunc.h; sourceTree = "<group>"; };
152
+ C57EDA7016E6187900F57BA4 /* lgc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lgc.c; sourceTree = "<group>"; };
153
+ C57EDA7116E6187900F57BA4 /* lgc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lgc.h; sourceTree = "<group>"; };
154
+ C57EDA7216E6187900F57BA4 /* linit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = linit.c; sourceTree = "<group>"; };
155
+ C57EDA7316E6187900F57BA4 /* liolib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = liolib.c; sourceTree = "<group>"; };
156
+ C57EDA7416E6187900F57BA4 /* llex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = llex.c; sourceTree = "<group>"; };
157
+ C57EDA7516E6187900F57BA4 /* llex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = llex.h; sourceTree = "<group>"; };
158
+ C57EDA7616E6187900F57BA4 /* llimits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = llimits.h; sourceTree = "<group>"; };
159
+ C57EDA7716E6187900F57BA4 /* lmathlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lmathlib.c; sourceTree = "<group>"; };
160
+ C57EDA7816E6187900F57BA4 /* lmem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lmem.c; sourceTree = "<group>"; };
161
+ C57EDA7916E6187900F57BA4 /* lmem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lmem.h; sourceTree = "<group>"; };
162
+ C57EDA7A16E6187900F57BA4 /* loadlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = loadlib.c; sourceTree = "<group>"; };
163
+ C57EDA7B16E6187900F57BA4 /* lobject.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lobject.c; sourceTree = "<group>"; };
164
+ C57EDA7C16E6187900F57BA4 /* lobject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lobject.h; sourceTree = "<group>"; };
165
+ C57EDA7D16E6187900F57BA4 /* lopcodes.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lopcodes.c; sourceTree = "<group>"; };
166
+ C57EDA7E16E6187900F57BA4 /* lopcodes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lopcodes.h; sourceTree = "<group>"; };
167
+ C57EDA7F16E6187900F57BA4 /* loslib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = loslib.c; sourceTree = "<group>"; };
168
+ C57EDA8016E6187900F57BA4 /* lparser.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lparser.c; sourceTree = "<group>"; };
169
+ C57EDA8116E6187900F57BA4 /* lparser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lparser.h; sourceTree = "<group>"; };
170
+ C57EDA8216E6187900F57BA4 /* lstate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lstate.c; sourceTree = "<group>"; };
171
+ C57EDA8316E6187900F57BA4 /* lstate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lstate.h; sourceTree = "<group>"; };
172
+ C57EDA8416E6187900F57BA4 /* lstring.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lstring.c; sourceTree = "<group>"; };
173
+ C57EDA8516E6187900F57BA4 /* lstring.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lstring.h; sourceTree = "<group>"; };
174
+ C57EDA8616E6187900F57BA4 /* lstrlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lstrlib.c; sourceTree = "<group>"; };
175
+ C57EDA8716E6187900F57BA4 /* ltable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ltable.c; sourceTree = "<group>"; };
176
+ C57EDA8816E6187900F57BA4 /* ltable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ltable.h; sourceTree = "<group>"; };
177
+ C57EDA8916E6187900F57BA4 /* ltablib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ltablib.c; sourceTree = "<group>"; };
178
+ C57EDA8A16E6187900F57BA4 /* ltm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ltm.c; sourceTree = "<group>"; };
179
+ C57EDA8B16E6187900F57BA4 /* ltm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ltm.h; sourceTree = "<group>"; };
180
+ C57EDA8C16E6187900F57BA4 /* lua.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lua.h; sourceTree = "<group>"; };
181
+ C57EDA8D16E6187900F57BA4 /* luaconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = luaconf.h; sourceTree = "<group>"; };
182
+ C57EDA8E16E6187900F57BA4 /* lualib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lualib.h; sourceTree = "<group>"; };
183
+ C57EDA8F16E6187900F57BA4 /* lundump.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lundump.c; sourceTree = "<group>"; };
184
+ C57EDA9016E6187900F57BA4 /* lundump.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lundump.h; sourceTree = "<group>"; };
185
+ C57EDA9116E6187900F57BA4 /* lvm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lvm.c; sourceTree = "<group>"; };
186
+ C57EDA9216E6187900F57BA4 /* lvm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lvm.h; sourceTree = "<group>"; };
187
+ C57EDA9316E6187900F57BA4 /* lzio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lzio.c; sourceTree = "<group>"; };
188
+ C57EDA9416E6187900F57BA4 /* lzio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lzio.h; sourceTree = "<group>"; };
189
+ C57EDA9516E6187900F57BA4 /* print.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = print.c; sourceTree = "<group>"; };
190
+ C57EDA9616E6187900F57BA4 /* project.rake */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = project.rake; sourceTree = "<group>"; };
191
+ C57EDA9816E6187900F57BA4 /* enums.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = enums.lua; sourceTree = "<group>"; };
192
+ C57EDA9A16E6187900F57BA4 /* http.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = http.lua; sourceTree = "<group>"; };
193
+ C57EDA9B16E6187900F57BA4 /* init.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = init.lua; sourceTree = "<group>"; };
194
+ C57EDA9C16E6187900F57BA4 /* number.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = number.lua; sourceTree = "<group>"; };
195
+ C57EDA9D16E6187900F57BA4 /* string.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = string.lua; sourceTree = "<group>"; };
196
+ C57EDA9E16E6187900F57BA4 /* table.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = table.lua; sourceTree = "<group>"; };
197
+ C57EDAA016E6187900F57BA4 /* autoload.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = autoload.lua; sourceTree = "<group>"; };
198
+ C57EDAA116E6187900F57BA4 /* base64.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = base64.lua; sourceTree = "<group>"; };
199
+ C57EDAA216E6187900F57BA4 /* bit.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = bit.lua; sourceTree = "<group>"; };
200
+ C57EDAA316E6187900F57BA4 /* cache.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cache.lua; sourceTree = "<group>"; };
201
+ C57EDAA416E6187900F57BA4 /* callback.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = callback.lua; sourceTree = "<group>"; };
202
+ C57EDAA516E6187900F57BA4 /* frame.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = frame.lua; sourceTree = "<group>"; };
203
+ C57EDAA616E6187900F57BA4 /* init.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = init.lua; sourceTree = "<group>"; };
204
+ C57EDAA716E6187900F57BA4 /* pickView.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pickView.lua; sourceTree = "<group>"; };
205
+ C57EDAA816E6187900F57BA4 /* time.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = time.lua; sourceTree = "<group>"; };
206
+ C57EDAA916E6187900F57BA4 /* WaxServer.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = WaxServer.lua; sourceTree = "<group>"; };
207
+ C57EDAAA16E6187900F57BA4 /* init.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = init.lua; sourceTree = "<group>"; };
208
+ C57EDAAC16E6187900F57BA4 /* init.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = init.lua; sourceTree = "<group>"; };
209
+ C57EDAAD16E6187900F57BA4 /* luamock.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = luamock.lua; sourceTree = "<group>"; };
210
+ C57EDAAE16E6187900F57BA4 /* luaspec.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = luaspec.lua; sourceTree = "<group>"; };
211
+ C57EDAAF16E6187900F57BA4 /* repl.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = repl.lua; sourceTree = "<group>"; };
212
+ C57EDAB016E6187900F57BA4 /* structs.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = structs.lua; sourceTree = "<group>"; };
213
+ C57EDAB116E6187900F57BA4 /* waxClass.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = waxClass.lua; sourceTree = "<group>"; };
214
+ C57EDAB216E6187900F57BA4 /* wax.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wax.h; sourceTree = "<group>"; };
215
+ C57EDAB316E6187900F57BA4 /* wax.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = wax.m; sourceTree = "<group>"; };
216
+ C57EDAB416E6187900F57BA4 /* wax_class.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wax_class.h; sourceTree = "<group>"; };
217
+ C57EDAB516E6187900F57BA4 /* wax_class.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = wax_class.m; sourceTree = "<group>"; };
218
+ C57EDAB616E6187900F57BA4 /* wax_gc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wax_gc.h; sourceTree = "<group>"; };
219
+ C57EDAB716E6187900F57BA4 /* wax_gc.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = wax_gc.m; sourceTree = "<group>"; };
220
+ C57EDAB816E6187900F57BA4 /* wax_helpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wax_helpers.h; sourceTree = "<group>"; };
221
+ C57EDAB916E6187900F57BA4 /* wax_helpers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = wax_helpers.m; sourceTree = "<group>"; };
222
+ C57EDABA16E6187900F57BA4 /* wax_instance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wax_instance.h; sourceTree = "<group>"; };
223
+ C57EDABB16E6187900F57BA4 /* wax_instance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = wax_instance.m; sourceTree = "<group>"; };
224
+ C57EDABC16E6187900F57BA4 /* wax_server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wax_server.h; sourceTree = "<group>"; };
225
+ C57EDABD16E6187900F57BA4 /* wax_server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = wax_server.m; sourceTree = "<group>"; };
226
+ C57EDABE16E6187900F57BA4 /* wax_stdlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wax_stdlib.h; sourceTree = "<group>"; };
227
+ C57EDABF16E6187900F57BA4 /* wax_struct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wax_struct.h; sourceTree = "<group>"; };
228
+ C57EDAC016E6187900F57BA4 /* wax_struct.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = wax_struct.m; sourceTree = "<group>"; };
229
+ C5FB108E16E8A49B003B9D4D /* states.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = states.plist; sourceTree = "<group>"; };
230
+ C5FB109016E8A4A4003B9D4D /* CapitalsTable.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CapitalsTable.lua; sourceTree = "<group>"; };
231
+ C5FB109116E8A4A4003B9D4D /* StatesTable.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StatesTable.lua; sourceTree = "<group>"; };
232
+ /* End PBXFileReference section */
233
+
234
+ /* Begin PBXFrameworksBuildPhase section */
235
+ C57ED6E316E59BF400F57BA4 /* Frameworks */ = {
236
+ isa = PBXFrameworksBuildPhase;
237
+ buildActionMask = 2147483647;
238
+ files = (
239
+ C57ED6EA16E59BF400F57BA4 /* UIKit.framework in Frameworks */,
240
+ C57ED6EC16E59BF400F57BA4 /* Foundation.framework in Frameworks */,
241
+ C57ED6EE16E59BF400F57BA4 /* CoreGraphics.framework in Frameworks */,
242
+ );
243
+ runOnlyForDeploymentPostprocessing = 0;
244
+ };
245
+ /* End PBXFrameworksBuildPhase section */
246
+
247
+ /* Begin PBXGroup section */
248
+ C57ED6DD16E59BF400F57BA4 = {
249
+ isa = PBXGroup;
250
+ children = (
251
+ C57ED6EF16E59BF400F57BA4 /* WaxApplication */,
252
+ C57ED6E816E59BF400F57BA4 /* Frameworks */,
253
+ C57ED6E716E59BF400F57BA4 /* Products */,
254
+ );
255
+ sourceTree = "<group>";
256
+ };
257
+ C57ED6E716E59BF400F57BA4 /* Products */ = {
258
+ isa = PBXGroup;
259
+ children = (
260
+ C57ED6E616E59BF400F57BA4 /* WaxApplication.app */,
261
+ );
262
+ name = Products;
263
+ sourceTree = "<group>";
264
+ };
265
+ C57ED6E816E59BF400F57BA4 /* Frameworks */ = {
266
+ isa = PBXGroup;
267
+ children = (
268
+ C57ED6E916E59BF400F57BA4 /* UIKit.framework */,
269
+ C57ED6EB16E59BF400F57BA4 /* Foundation.framework */,
270
+ C57ED6ED16E59BF400F57BA4 /* CoreGraphics.framework */,
271
+ );
272
+ name = Frameworks;
273
+ sourceTree = "<group>";
274
+ };
275
+ C57ED6EF16E59BF400F57BA4 /* WaxApplication */ = {
276
+ isa = PBXGroup;
277
+ children = (
278
+ C57EDA2816E6187800F57BA4 /* scripts */,
279
+ C57EDA2D16E6187800F57BA4 /* wax */,
280
+ C57ED70616E5A65C00F57BA4 /* ProtocolLoader.h */,
281
+ C57ED6F016E59BF400F57BA4 /* Supporting Files */,
282
+ );
283
+ path = WaxApplication;
284
+ sourceTree = "<group>";
285
+ };
286
+ C57ED6F016E59BF400F57BA4 /* Supporting Files */ = {
287
+ isa = PBXGroup;
288
+ children = (
289
+ C5FB108E16E8A49B003B9D4D /* states.plist */,
290
+ C57ED6F116E59BF400F57BA4 /* WaxApplication-Info.plist */,
291
+ C57ED6F216E59BF400F57BA4 /* InfoPlist.strings */,
292
+ C57ED6F516E59BF400F57BA4 /* main.m */,
293
+ C57ED6F716E59BF400F57BA4 /* WaxApplication-Prefix.pch */,
294
+ C57ED6FB16E59BF400F57BA4 /* Default.png */,
295
+ C57ED6FD16E59BF400F57BA4 /* Default@2x.png */,
296
+ C57ED6FF16E59BF400F57BA4 /* Default-568h@2x.png */,
297
+ );
298
+ name = "Supporting Files";
299
+ sourceTree = "<group>";
300
+ };
301
+ C57EDA2816E6187800F57BA4 /* scripts */ = {
302
+ isa = PBXGroup;
303
+ children = (
304
+ C5FB109016E8A4A4003B9D4D /* CapitalsTable.lua */,
305
+ C5FB109116E8A4A4003B9D4D /* StatesTable.lua */,
306
+ C57EDA2916E6187800F57BA4 /* AppDelegate.lua */,
307
+ C57EDA2A16E6187800F57BA4 /* tests */,
308
+ );
309
+ path = scripts;
310
+ sourceTree = SOURCE_ROOT;
311
+ };
312
+ C57EDA2A16E6187800F57BA4 /* tests */ = {
313
+ isa = PBXGroup;
314
+ children = (
315
+ C57EDA2B16E6187800F57BA4 /* init.lua */,
316
+ C57EDA2C16E6187800F57BA4 /* someTest.lua */,
317
+ );
318
+ path = tests;
319
+ sourceTree = "<group>";
320
+ };
321
+ C57EDA2D16E6187800F57BA4 /* wax */ = {
322
+ isa = PBXGroup;
323
+ children = (
324
+ C57EDA2E16E6187800F57BA4 /* bin */,
325
+ C57EDA3216E6187800F57BA4 /* lib */,
326
+ );
327
+ path = wax;
328
+ sourceTree = SOURCE_ROOT;
329
+ };
330
+ C57EDA2E16E6187800F57BA4 /* bin */ = {
331
+ isa = PBXGroup;
332
+ children = (
333
+ C57EDA2F16E6187800F57BA4 /* hammer */,
334
+ C57EDA3016E6187800F57BA4 /* update-xibs */,
335
+ C57EDA3116E6187800F57BA4 /* waxsim */,
336
+ );
337
+ path = bin;
338
+ sourceTree = "<group>";
339
+ };
340
+ C57EDA3216E6187800F57BA4 /* lib */ = {
341
+ isa = PBXGroup;
342
+ children = (
343
+ C57EDA3316E6187800F57BA4 /* build-scripts */,
344
+ C57EDA3716E6187800F57BA4 /* extensions */,
345
+ C57EDA6016E6187900F57BA4 /* lua */,
346
+ C57EDA9616E6187900F57BA4 /* project.rake */,
347
+ C57EDA9716E6187900F57BA4 /* stdlib */,
348
+ C57EDAB216E6187900F57BA4 /* wax.h */,
349
+ C57EDAB316E6187900F57BA4 /* wax.m */,
350
+ C57EDAB416E6187900F57BA4 /* wax_class.h */,
351
+ C57EDAB516E6187900F57BA4 /* wax_class.m */,
352
+ C57EDAB616E6187900F57BA4 /* wax_gc.h */,
353
+ C57EDAB716E6187900F57BA4 /* wax_gc.m */,
354
+ C57EDAB816E6187900F57BA4 /* wax_helpers.h */,
355
+ C57EDAB916E6187900F57BA4 /* wax_helpers.m */,
356
+ C57EDABA16E6187900F57BA4 /* wax_instance.h */,
357
+ C57EDABB16E6187900F57BA4 /* wax_instance.m */,
358
+ C57EDABC16E6187900F57BA4 /* wax_server.h */,
359
+ C57EDABD16E6187900F57BA4 /* wax_server.m */,
360
+ C57EDABE16E6187900F57BA4 /* wax_stdlib.h */,
361
+ C57EDABF16E6187900F57BA4 /* wax_struct.h */,
362
+ C57EDAC016E6187900F57BA4 /* wax_struct.m */,
363
+ );
364
+ path = lib;
365
+ sourceTree = "<group>";
366
+ };
367
+ C57EDA3316E6187800F57BA4 /* build-scripts */ = {
368
+ isa = PBXGroup;
369
+ children = (
370
+ C57EDA3416E6187800F57BA4 /* compile-stdlib.sh */,
371
+ C57EDA3516E6187800F57BA4 /* copy-scripts.sh */,
372
+ C57EDA3616E6187800F57BA4 /* luac.lua */,
373
+ );
374
+ path = "build-scripts";
375
+ sourceTree = "<group>";
376
+ };
377
+ C57EDA3716E6187800F57BA4 /* extensions */ = {
378
+ isa = PBXGroup;
379
+ children = (
380
+ C57EDA3816E6187800F57BA4 /* CGAffine */,
381
+ C57EDA3B16E6187800F57BA4 /* CGContext */,
382
+ C57EDA3E16E6187800F57BA4 /* filesystem */,
383
+ C57EDA4116E6187800F57BA4 /* HTTP */,
384
+ C57EDA4616E6187900F57BA4 /* json */,
385
+ );
386
+ path = extensions;
387
+ sourceTree = "<group>";
388
+ };
389
+ C57EDA3816E6187800F57BA4 /* CGAffine */ = {
390
+ isa = PBXGroup;
391
+ children = (
392
+ C57EDA3916E6187800F57BA4 /* wax_CGTransform.h */,
393
+ C57EDA3A16E6187800F57BA4 /* wax_CGTransform.m */,
394
+ );
395
+ path = CGAffine;
396
+ sourceTree = "<group>";
397
+ };
398
+ C57EDA3B16E6187800F57BA4 /* CGContext */ = {
399
+ isa = PBXGroup;
400
+ children = (
401
+ C57EDA3C16E6187800F57BA4 /* wax_CGContext.h */,
402
+ C57EDA3D16E6187800F57BA4 /* wax_CGContext.m */,
403
+ );
404
+ path = CGContext;
405
+ sourceTree = "<group>";
406
+ };
407
+ C57EDA3E16E6187800F57BA4 /* filesystem */ = {
408
+ isa = PBXGroup;
409
+ children = (
410
+ C57EDA3F16E6187800F57BA4 /* wax_filesystem.h */,
411
+ C57EDA4016E6187800F57BA4 /* wax_filesystem.m */,
412
+ );
413
+ path = filesystem;
414
+ sourceTree = "<group>";
415
+ };
416
+ C57EDA4116E6187800F57BA4 /* HTTP */ = {
417
+ isa = PBXGroup;
418
+ children = (
419
+ C57EDA4216E6187800F57BA4 /* wax_http.h */,
420
+ C57EDA4316E6187800F57BA4 /* wax_http.m */,
421
+ C57EDA4416E6187800F57BA4 /* wax_http_connection.h */,
422
+ C57EDA4516E6187900F57BA4 /* wax_http_connection.m */,
423
+ );
424
+ path = HTTP;
425
+ sourceTree = "<group>";
426
+ };
427
+ C57EDA4616E6187900F57BA4 /* json */ = {
428
+ isa = PBXGroup;
429
+ children = (
430
+ C57EDA4716E6187900F57BA4 /* Rakefile */,
431
+ C57EDA4816E6187900F57BA4 /* wax_json.c */,
432
+ C57EDA4916E6187900F57BA4 /* wax_json.h */,
433
+ C57EDA4A16E6187900F57BA4 /* yajl */,
434
+ C57EDA5F16E6187900F57BA4 /* yajl-1.0.9.tar.gz */,
435
+ );
436
+ path = json;
437
+ sourceTree = "<group>";
438
+ };
439
+ C57EDA4A16E6187900F57BA4 /* yajl */ = {
440
+ isa = PBXGroup;
441
+ children = (
442
+ C57EDA4B16E6187900F57BA4 /* api */,
443
+ C57EDA4F16E6187900F57BA4 /* yajl.c */,
444
+ C57EDA5016E6187900F57BA4 /* yajl_alloc.c */,
445
+ C57EDA5116E6187900F57BA4 /* yajl_alloc.h */,
446
+ C57EDA5216E6187900F57BA4 /* yajl_buf.c */,
447
+ C57EDA5316E6187900F57BA4 /* yajl_buf.h */,
448
+ C57EDA5416E6187900F57BA4 /* yajl_bytestack.h */,
449
+ C57EDA5516E6187900F57BA4 /* yajl_common.h */,
450
+ C57EDA5616E6187900F57BA4 /* yajl_encode.c */,
451
+ C57EDA5716E6187900F57BA4 /* yajl_encode.h */,
452
+ C57EDA5816E6187900F57BA4 /* yajl_gen.c */,
453
+ C57EDA5916E6187900F57BA4 /* yajl_gen.h */,
454
+ C57EDA5A16E6187900F57BA4 /* yajl_lex.c */,
455
+ C57EDA5B16E6187900F57BA4 /* yajl_lex.h */,
456
+ C57EDA5C16E6187900F57BA4 /* yajl_parse.h */,
457
+ C57EDA5D16E6187900F57BA4 /* yajl_parser.c */,
458
+ C57EDA5E16E6187900F57BA4 /* yajl_parser.h */,
459
+ );
460
+ path = yajl;
461
+ sourceTree = "<group>";
462
+ };
463
+ C57EDA4B16E6187900F57BA4 /* api */ = {
464
+ isa = PBXGroup;
465
+ children = (
466
+ C57EDA4C16E6187900F57BA4 /* yajl_common.h */,
467
+ C57EDA4D16E6187900F57BA4 /* yajl_gen.h */,
468
+ C57EDA4E16E6187900F57BA4 /* yajl_parse.h */,
469
+ );
470
+ path = api;
471
+ sourceTree = "<group>";
472
+ };
473
+ C57EDA6016E6187900F57BA4 /* lua */ = {
474
+ isa = PBXGroup;
475
+ children = (
476
+ C57EDA6116E6187900F57BA4 /* lapi.c */,
477
+ C57EDA6216E6187900F57BA4 /* lapi.h */,
478
+ C57EDA6316E6187900F57BA4 /* lauxlib.c */,
479
+ C57EDA6416E6187900F57BA4 /* lauxlib.h */,
480
+ C57EDA6516E6187900F57BA4 /* lbaselib.c */,
481
+ C57EDA6616E6187900F57BA4 /* lcode.c */,
482
+ C57EDA6716E6187900F57BA4 /* lcode.h */,
483
+ C57EDA6816E6187900F57BA4 /* ldblib.c */,
484
+ C57EDA6916E6187900F57BA4 /* ldebug.c */,
485
+ C57EDA6A16E6187900F57BA4 /* ldebug.h */,
486
+ C57EDA6B16E6187900F57BA4 /* ldo.c */,
487
+ C57EDA6C16E6187900F57BA4 /* ldo.h */,
488
+ C57EDA6D16E6187900F57BA4 /* ldump.c */,
489
+ C57EDA6E16E6187900F57BA4 /* lfunc.c */,
490
+ C57EDA6F16E6187900F57BA4 /* lfunc.h */,
491
+ C57EDA7016E6187900F57BA4 /* lgc.c */,
492
+ C57EDA7116E6187900F57BA4 /* lgc.h */,
493
+ C57EDA7216E6187900F57BA4 /* linit.c */,
494
+ C57EDA7316E6187900F57BA4 /* liolib.c */,
495
+ C57EDA7416E6187900F57BA4 /* llex.c */,
496
+ C57EDA7516E6187900F57BA4 /* llex.h */,
497
+ C57EDA7616E6187900F57BA4 /* llimits.h */,
498
+ C57EDA7716E6187900F57BA4 /* lmathlib.c */,
499
+ C57EDA7816E6187900F57BA4 /* lmem.c */,
500
+ C57EDA7916E6187900F57BA4 /* lmem.h */,
501
+ C57EDA7A16E6187900F57BA4 /* loadlib.c */,
502
+ C57EDA7B16E6187900F57BA4 /* lobject.c */,
503
+ C57EDA7C16E6187900F57BA4 /* lobject.h */,
504
+ C57EDA7D16E6187900F57BA4 /* lopcodes.c */,
505
+ C57EDA7E16E6187900F57BA4 /* lopcodes.h */,
506
+ C57EDA7F16E6187900F57BA4 /* loslib.c */,
507
+ C57EDA8016E6187900F57BA4 /* lparser.c */,
508
+ C57EDA8116E6187900F57BA4 /* lparser.h */,
509
+ C57EDA8216E6187900F57BA4 /* lstate.c */,
510
+ C57EDA8316E6187900F57BA4 /* lstate.h */,
511
+ C57EDA8416E6187900F57BA4 /* lstring.c */,
512
+ C57EDA8516E6187900F57BA4 /* lstring.h */,
513
+ C57EDA8616E6187900F57BA4 /* lstrlib.c */,
514
+ C57EDA8716E6187900F57BA4 /* ltable.c */,
515
+ C57EDA8816E6187900F57BA4 /* ltable.h */,
516
+ C57EDA8916E6187900F57BA4 /* ltablib.c */,
517
+ C57EDA8A16E6187900F57BA4 /* ltm.c */,
518
+ C57EDA8B16E6187900F57BA4 /* ltm.h */,
519
+ C57EDA8C16E6187900F57BA4 /* lua.h */,
520
+ C57EDA8D16E6187900F57BA4 /* luaconf.h */,
521
+ C57EDA8E16E6187900F57BA4 /* lualib.h */,
522
+ C57EDA8F16E6187900F57BA4 /* lundump.c */,
523
+ C57EDA9016E6187900F57BA4 /* lundump.h */,
524
+ C57EDA9116E6187900F57BA4 /* lvm.c */,
525
+ C57EDA9216E6187900F57BA4 /* lvm.h */,
526
+ C57EDA9316E6187900F57BA4 /* lzio.c */,
527
+ C57EDA9416E6187900F57BA4 /* lzio.h */,
528
+ C57EDA9516E6187900F57BA4 /* print.c */,
529
+ );
530
+ path = lua;
531
+ sourceTree = "<group>";
532
+ };
533
+ C57EDA9716E6187900F57BA4 /* stdlib */ = {
534
+ isa = PBXGroup;
535
+ children = (
536
+ C57EDA9816E6187900F57BA4 /* enums.lua */,
537
+ C57EDA9916E6187900F57BA4 /* ext */,
538
+ C57EDA9F16E6187900F57BA4 /* helpers */,
539
+ C57EDAAA16E6187900F57BA4 /* init.lua */,
540
+ C57EDAAB16E6187900F57BA4 /* luaspec */,
541
+ C57EDAAF16E6187900F57BA4 /* repl.lua */,
542
+ C57EDAB016E6187900F57BA4 /* structs.lua */,
543
+ C57EDAB116E6187900F57BA4 /* waxClass.lua */,
544
+ );
545
+ path = stdlib;
546
+ sourceTree = "<group>";
547
+ };
548
+ C57EDA9916E6187900F57BA4 /* ext */ = {
549
+ isa = PBXGroup;
550
+ children = (
551
+ C57EDA9A16E6187900F57BA4 /* http.lua */,
552
+ C57EDA9B16E6187900F57BA4 /* init.lua */,
553
+ C57EDA9C16E6187900F57BA4 /* number.lua */,
554
+ C57EDA9D16E6187900F57BA4 /* string.lua */,
555
+ C57EDA9E16E6187900F57BA4 /* table.lua */,
556
+ );
557
+ path = ext;
558
+ sourceTree = "<group>";
559
+ };
560
+ C57EDA9F16E6187900F57BA4 /* helpers */ = {
561
+ isa = PBXGroup;
562
+ children = (
563
+ C57EDAA016E6187900F57BA4 /* autoload.lua */,
564
+ C57EDAA116E6187900F57BA4 /* base64.lua */,
565
+ C57EDAA216E6187900F57BA4 /* bit.lua */,
566
+ C57EDAA316E6187900F57BA4 /* cache.lua */,
567
+ C57EDAA416E6187900F57BA4 /* callback.lua */,
568
+ C57EDAA516E6187900F57BA4 /* frame.lua */,
569
+ C57EDAA616E6187900F57BA4 /* init.lua */,
570
+ C57EDAA716E6187900F57BA4 /* pickView.lua */,
571
+ C57EDAA816E6187900F57BA4 /* time.lua */,
572
+ C57EDAA916E6187900F57BA4 /* WaxServer.lua */,
573
+ );
574
+ path = helpers;
575
+ sourceTree = "<group>";
576
+ };
577
+ C57EDAAB16E6187900F57BA4 /* luaspec */ = {
578
+ isa = PBXGroup;
579
+ children = (
580
+ C57EDAAC16E6187900F57BA4 /* init.lua */,
581
+ C57EDAAD16E6187900F57BA4 /* luamock.lua */,
582
+ C57EDAAE16E6187900F57BA4 /* luaspec.lua */,
583
+ );
584
+ path = luaspec;
585
+ sourceTree = "<group>";
586
+ };
587
+ /* End PBXGroup section */
588
+
589
+ /* Begin PBXNativeTarget section */
590
+ C57ED6E516E59BF400F57BA4 /* WaxApplication */ = {
591
+ isa = PBXNativeTarget;
592
+ buildConfigurationList = C57ED70316E59BF400F57BA4 /* Build configuration list for PBXNativeTarget "WaxApplication" */;
593
+ buildPhases = (
594
+ C57ED6E216E59BF400F57BA4 /* Sources */,
595
+ C57ED6E316E59BF400F57BA4 /* Frameworks */,
596
+ C57ED6E416E59BF400F57BA4 /* Resources */,
597
+ C57ED7F516E5A6C200F57BA4 /* ShellScript */,
598
+ );
599
+ buildRules = (
600
+ );
601
+ dependencies = (
602
+ );
603
+ name = WaxApplication;
604
+ productName = WaxApplication;
605
+ productReference = C57ED6E616E59BF400F57BA4 /* WaxApplication.app */;
606
+ productType = "com.apple.product-type.application";
607
+ };
608
+ /* End PBXNativeTarget section */
609
+
610
+ /* Begin PBXProject section */
611
+ C57ED6DE16E59BF400F57BA4 /* Project object */ = {
612
+ isa = PBXProject;
613
+ attributes = {
614
+ LastUpgradeCheck = 0460;
615
+ ORGANIZATIONNAME = likenote;
616
+ };
617
+ buildConfigurationList = C57ED6E116E59BF400F57BA4 /* Build configuration list for PBXProject "WaxApplication" */;
618
+ compatibilityVersion = "Xcode 3.2";
619
+ developmentRegion = English;
620
+ hasScannedForEncodings = 0;
621
+ knownRegions = (
622
+ en,
623
+ );
624
+ mainGroup = C57ED6DD16E59BF400F57BA4;
625
+ productRefGroup = C57ED6E716E59BF400F57BA4 /* Products */;
626
+ projectDirPath = "";
627
+ projectRoot = "";
628
+ targets = (
629
+ C57ED6E516E59BF400F57BA4 /* WaxApplication */,
630
+ );
631
+ };
632
+ /* End PBXProject section */
633
+
634
+ /* Begin PBXResourcesBuildPhase section */
635
+ C57ED6E416E59BF400F57BA4 /* Resources */ = {
636
+ isa = PBXResourcesBuildPhase;
637
+ buildActionMask = 2147483647;
638
+ files = (
639
+ C57ED6F416E59BF400F57BA4 /* InfoPlist.strings in Resources */,
640
+ C57ED6FC16E59BF400F57BA4 /* Default.png in Resources */,
641
+ C57ED6FE16E59BF400F57BA4 /* Default@2x.png in Resources */,
642
+ C57ED70016E59BF400F57BA4 /* Default-568h@2x.png in Resources */,
643
+ C57EDAC416E6187900F57BA4 /* hammer in Resources */,
644
+ C57EDAC516E6187900F57BA4 /* update-xibs in Resources */,
645
+ C57EDAC616E6187900F57BA4 /* waxsim in Resources */,
646
+ C57EDAC716E6187900F57BA4 /* compile-stdlib.sh in Resources */,
647
+ C57EDAC816E6187900F57BA4 /* copy-scripts.sh in Resources */,
648
+ C57EDAC916E6187900F57BA4 /* luac.lua in Resources */,
649
+ C57EDACF16E6187900F57BA4 /* Rakefile in Resources */,
650
+ C57EDAD816E6187900F57BA4 /* yajl-1.0.9.tar.gz in Resources */,
651
+ C57EDAF716E6187900F57BA4 /* project.rake in Resources */,
652
+ C5FB108F16E8A49B003B9D4D /* states.plist in Resources */,
653
+ C5FB109216E8A4A4003B9D4D /* CapitalsTable.lua in Resources */,
654
+ C5FB109316E8A4A4003B9D4D /* StatesTable.lua in Resources */,
655
+ );
656
+ runOnlyForDeploymentPostprocessing = 0;
657
+ };
658
+ /* End PBXResourcesBuildPhase section */
659
+
660
+ /* Begin PBXShellScriptBuildPhase section */
661
+ C57ED7F516E5A6C200F57BA4 /* ShellScript */ = {
662
+ isa = PBXShellScriptBuildPhase;
663
+ buildActionMask = 2147483647;
664
+ files = (
665
+ );
666
+ inputPaths = (
667
+ );
668
+ outputPaths = (
669
+ );
670
+ runOnlyForDeploymentPostprocessing = 0;
671
+ shellPath = /bin/zsh;
672
+ shellScript = "$PROJECT_DIR/wax/lib/build-scripts/copy-scripts.sh";
673
+ };
674
+ /* End PBXShellScriptBuildPhase section */
675
+
676
+ /* Begin PBXSourcesBuildPhase section */
677
+ C57ED6E216E59BF400F57BA4 /* Sources */ = {
678
+ isa = PBXSourcesBuildPhase;
679
+ buildActionMask = 2147483647;
680
+ files = (
681
+ C57ED6F616E59BF400F57BA4 /* main.m in Sources */,
682
+ C57EDACA16E6187900F57BA4 /* wax_CGTransform.m in Sources */,
683
+ C57EDACB16E6187900F57BA4 /* wax_CGContext.m in Sources */,
684
+ C57EDACC16E6187900F57BA4 /* wax_filesystem.m in Sources */,
685
+ C57EDACD16E6187900F57BA4 /* wax_http.m in Sources */,
686
+ C57EDACE16E6187900F57BA4 /* wax_http_connection.m in Sources */,
687
+ C57EDAD016E6187900F57BA4 /* wax_json.c in Sources */,
688
+ C57EDAD116E6187900F57BA4 /* yajl.c in Sources */,
689
+ C57EDAD216E6187900F57BA4 /* yajl_alloc.c in Sources */,
690
+ C57EDAD316E6187900F57BA4 /* yajl_buf.c in Sources */,
691
+ C57EDAD416E6187900F57BA4 /* yajl_encode.c in Sources */,
692
+ C57EDAD516E6187900F57BA4 /* yajl_gen.c in Sources */,
693
+ C57EDAD616E6187900F57BA4 /* yajl_lex.c in Sources */,
694
+ C57EDAD716E6187900F57BA4 /* yajl_parser.c in Sources */,
695
+ C57EDAD916E6187900F57BA4 /* lapi.c in Sources */,
696
+ C57EDADA16E6187900F57BA4 /* lauxlib.c in Sources */,
697
+ C57EDADB16E6187900F57BA4 /* lbaselib.c in Sources */,
698
+ C57EDADC16E6187900F57BA4 /* lcode.c in Sources */,
699
+ C57EDADD16E6187900F57BA4 /* ldblib.c in Sources */,
700
+ C57EDADE16E6187900F57BA4 /* ldebug.c in Sources */,
701
+ C57EDADF16E6187900F57BA4 /* ldo.c in Sources */,
702
+ C57EDAE016E6187900F57BA4 /* ldump.c in Sources */,
703
+ C57EDAE116E6187900F57BA4 /* lfunc.c in Sources */,
704
+ C57EDAE216E6187900F57BA4 /* lgc.c in Sources */,
705
+ C57EDAE316E6187900F57BA4 /* linit.c in Sources */,
706
+ C57EDAE416E6187900F57BA4 /* liolib.c in Sources */,
707
+ C57EDAE516E6187900F57BA4 /* llex.c in Sources */,
708
+ C57EDAE616E6187900F57BA4 /* lmathlib.c in Sources */,
709
+ C57EDAE716E6187900F57BA4 /* lmem.c in Sources */,
710
+ C57EDAE816E6187900F57BA4 /* loadlib.c in Sources */,
711
+ C57EDAE916E6187900F57BA4 /* lobject.c in Sources */,
712
+ C57EDAEA16E6187900F57BA4 /* lopcodes.c in Sources */,
713
+ C57EDAEB16E6187900F57BA4 /* loslib.c in Sources */,
714
+ C57EDAEC16E6187900F57BA4 /* lparser.c in Sources */,
715
+ C57EDAED16E6187900F57BA4 /* lstate.c in Sources */,
716
+ C57EDAEE16E6187900F57BA4 /* lstring.c in Sources */,
717
+ C57EDAEF16E6187900F57BA4 /* lstrlib.c in Sources */,
718
+ C57EDAF016E6187900F57BA4 /* ltable.c in Sources */,
719
+ C57EDAF116E6187900F57BA4 /* ltablib.c in Sources */,
720
+ C57EDAF216E6187900F57BA4 /* ltm.c in Sources */,
721
+ C57EDAF316E6187900F57BA4 /* lundump.c in Sources */,
722
+ C57EDAF416E6187900F57BA4 /* lvm.c in Sources */,
723
+ C57EDAF516E6187900F57BA4 /* lzio.c in Sources */,
724
+ C57EDAF616E6187900F57BA4 /* print.c in Sources */,
725
+ C57EDB0F16E6187900F57BA4 /* wax.m in Sources */,
726
+ C57EDB1016E6187900F57BA4 /* wax_class.m in Sources */,
727
+ C57EDB1116E6187900F57BA4 /* wax_gc.m in Sources */,
728
+ C57EDB1216E6187900F57BA4 /* wax_helpers.m in Sources */,
729
+ C57EDB1316E6187900F57BA4 /* wax_instance.m in Sources */,
730
+ C57EDB1416E6187900F57BA4 /* wax_server.m in Sources */,
731
+ C57EDB1516E6187900F57BA4 /* wax_struct.m in Sources */,
732
+ );
733
+ runOnlyForDeploymentPostprocessing = 0;
734
+ };
735
+ /* End PBXSourcesBuildPhase section */
736
+
737
+ /* Begin PBXVariantGroup section */
738
+ C57ED6F216E59BF400F57BA4 /* InfoPlist.strings */ = {
739
+ isa = PBXVariantGroup;
740
+ children = (
741
+ C57ED6F316E59BF400F57BA4 /* en */,
742
+ );
743
+ name = InfoPlist.strings;
744
+ sourceTree = "<group>";
745
+ };
746
+ /* End PBXVariantGroup section */
747
+
748
+ /* Begin XCBuildConfiguration section */
749
+ C57ED70116E59BF400F57BA4 /* Debug */ = {
750
+ isa = XCBuildConfiguration;
751
+ buildSettings = {
752
+ ALWAYS_SEARCH_USER_PATHS = NO;
753
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
754
+ CLANG_CXX_LIBRARY = "libc++";
755
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
756
+ CLANG_WARN_EMPTY_BODY = YES;
757
+ CLANG_WARN_ENUM_CONVERSION = YES;
758
+ CLANG_WARN_INT_CONVERSION = YES;
759
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
760
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
761
+ COPY_PHASE_STRIP = NO;
762
+ GCC_C_LANGUAGE_STANDARD = gnu99;
763
+ GCC_DYNAMIC_NO_PIC = NO;
764
+ GCC_OPTIMIZATION_LEVEL = 0;
765
+ GCC_PREPROCESSOR_DEFINITIONS = (
766
+ "DEBUG=1",
767
+ "$(inherited)",
768
+ );
769
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
770
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
771
+ GCC_WARN_UNINITIALIZED_AUTOS = YES;
772
+ GCC_WARN_UNUSED_VARIABLE = YES;
773
+ IPHONEOS_DEPLOYMENT_TARGET = 6.1;
774
+ ONLY_ACTIVE_ARCH = YES;
775
+ SDKROOT = iphoneos;
776
+ };
777
+ name = Debug;
778
+ };
779
+ C57ED70216E59BF400F57BA4 /* Release */ = {
780
+ isa = XCBuildConfiguration;
781
+ buildSettings = {
782
+ ALWAYS_SEARCH_USER_PATHS = NO;
783
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
784
+ CLANG_CXX_LIBRARY = "libc++";
785
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
786
+ CLANG_WARN_EMPTY_BODY = YES;
787
+ CLANG_WARN_ENUM_CONVERSION = YES;
788
+ CLANG_WARN_INT_CONVERSION = YES;
789
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
790
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
791
+ COPY_PHASE_STRIP = YES;
792
+ GCC_C_LANGUAGE_STANDARD = gnu99;
793
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
794
+ GCC_WARN_UNINITIALIZED_AUTOS = YES;
795
+ GCC_WARN_UNUSED_VARIABLE = YES;
796
+ IPHONEOS_DEPLOYMENT_TARGET = 6.1;
797
+ OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
798
+ SDKROOT = iphoneos;
799
+ VALIDATE_PRODUCT = YES;
800
+ };
801
+ name = Release;
802
+ };
803
+ C57ED70416E59BF400F57BA4 /* Debug */ = {
804
+ isa = XCBuildConfiguration;
805
+ buildSettings = {
806
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
807
+ GCC_PREFIX_HEADER = "WaxApplication/WaxApplication-Prefix.pch";
808
+ INFOPLIST_FILE = "WaxApplication/WaxApplication-Info.plist";
809
+ IPHONEOS_DEPLOYMENT_TARGET = 5.0;
810
+ PRODUCT_NAME = "$(TARGET_NAME)";
811
+ WRAPPER_EXTENSION = app;
812
+ };
813
+ name = Debug;
814
+ };
815
+ C57ED70516E59BF400F57BA4 /* Release */ = {
816
+ isa = XCBuildConfiguration;
817
+ buildSettings = {
818
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
819
+ GCC_PREFIX_HEADER = "WaxApplication/WaxApplication-Prefix.pch";
820
+ INFOPLIST_FILE = "WaxApplication/WaxApplication-Info.plist";
821
+ IPHONEOS_DEPLOYMENT_TARGET = 5.0;
822
+ PRODUCT_NAME = "$(TARGET_NAME)";
823
+ WRAPPER_EXTENSION = app;
824
+ };
825
+ name = Release;
826
+ };
827
+ /* End XCBuildConfiguration section */
828
+
829
+ /* Begin XCConfigurationList section */
830
+ C57ED6E116E59BF400F57BA4 /* Build configuration list for PBXProject "WaxApplication" */ = {
831
+ isa = XCConfigurationList;
832
+ buildConfigurations = (
833
+ C57ED70116E59BF400F57BA4 /* Debug */,
834
+ C57ED70216E59BF400F57BA4 /* Release */,
835
+ );
836
+ defaultConfigurationIsVisible = 0;
837
+ defaultConfigurationName = Release;
838
+ };
839
+ C57ED70316E59BF400F57BA4 /* Build configuration list for PBXNativeTarget "WaxApplication" */ = {
840
+ isa = XCConfigurationList;
841
+ buildConfigurations = (
842
+ C57ED70416E59BF400F57BA4 /* Debug */,
843
+ C57ED70516E59BF400F57BA4 /* Release */,
844
+ );
845
+ defaultConfigurationIsVisible = 0;
846
+ defaultConfigurationName = Release;
847
+ };
848
+ /* End XCConfigurationList section */
849
+ };
850
+ rootObject = C57ED6DE16E59BF400F57BA4 /* Project object */;
851
+ }