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