candle 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (24) hide show
  1. data/README.md +13 -1
  2. data/VERSION +1 -1
  3. data/lib/candle.rb +1 -1
  4. data/lib/candle/generators/help.rb +3 -1
  5. data/lib/candle/generators/map.rb +128 -0
  6. data/lib/candle/generators/table.rb +1 -1
  7. data/lib/candle/generators/templates/map/WaxApplication.xcodeproj/project.pbxproj +851 -0
  8. data/lib/candle/generators/templates/map/WaxApplication.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  9. data/lib/candle/generators/templates/map/WaxApplication.xcodeproj/project.xcworkspace/xcuserdata/eiffel.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  10. data/lib/candle/generators/templates/map/WaxApplication.xcodeproj/xcuserdata/eiffel.xcuserdatad/xcschemes/WaxApplication.xcscheme +86 -0
  11. data/lib/candle/generators/templates/map/WaxApplication.xcodeproj/xcuserdata/eiffel.xcuserdatad/xcschemes/xcschememanagement.plist +22 -0
  12. data/lib/candle/generators/templates/map/WaxApplication/ProtocolLoader.h +12 -0
  13. data/lib/candle/generators/templates/map/WaxApplication/Rakefile +158 -0
  14. data/lib/candle/generators/templates/map/WaxApplication/WaxApplication-Info.plist.tt +36 -0
  15. data/lib/candle/generators/templates/map/WaxApplication/WaxApplication-Prefix.pch.tt +14 -0
  16. data/lib/candle/generators/templates/map/WaxApplication/en.lproj/InfoPlist.strings +2 -0
  17. data/lib/candle/generators/templates/map/WaxApplication/main.m.tt +20 -0
  18. data/lib/candle/generators/templates/map/scripts/AppDelegate.lua +14 -0
  19. data/lib/candle/generators/templates/map/scripts/SimpleAnnotation.lua +35 -0
  20. data/lib/candle/generators/templates/map/scripts/SimpleMapController.lua +28 -0
  21. data/lib/candle/generators/templates/map/scripts/tests/init.lua +6 -0
  22. data/lib/candle/generators/templates/map/scripts/tests/someTest.lua +12 -0
  23. data/lib/candle/generators/xib.rb +1 -1
  24. metadata +20 -3
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  candle
2
2
  ======
3
- Candle is a rubygem for wax iOS framework which writes iOS application in lua.
3
+ Candle is a rubygem for ([wax iOS framework](https://github.com/probablycorey/wax)) which writes iOS application in lua.
4
4
 
5
5
  ![candle](http://eiffelqiu.github.com/candle/images/candle.png)
6
6
 
@@ -64,6 +64,18 @@ Usage 4: generate a wax blank iOS project using tableview
64
64
 
65
65
  Xcode build and run
66
66
 
67
+ Usage 5: generate a wax blank iOS project using MapKit framework
68
+ -------
69
+ $ candle map demo
70
+ $ cd demo
71
+ $ open demo.xcodeproj
72
+
73
+ ![candle usage](http://eiffelqiu.github.com/candle/images/candle8.png)
74
+
75
+ ![candle usage](http://eiffelqiu.github.com/candle/images/candle9.png)
76
+
77
+ Xcode build and run
78
+
67
79
  Contributing to candle
68
80
  =======
69
81
  * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.6
1
+ 0.0.7
@@ -62,7 +62,7 @@ end # Candle
62
62
  ##
63
63
  # We add our generators to Candle::Genererator
64
64
  #
65
- Candle::Generators.load_paths << Dir[File.dirname(__FILE__) + '/candle/generators/{blank,help,xib,table}.rb']
65
+ Candle::Generators.load_paths << Dir[File.dirname(__FILE__) + '/candle/generators/{blank,help,xib,table,map}.rb']
66
66
 
67
67
 
68
68
 
@@ -37,7 +37,9 @@ module Candle
37
37
  puts colorize("Generator Options")
38
38
  opt = [{ :category => "generators", :command => "candle blank demo", :description => "generate a blank wax iOS project"},
39
39
  { :category => "generators", :command => "candle xib demo", :description => "generate a wax iOS project using xib and core animation"},
40
- { :category => "generators", :command => "candle table demo", :description => "generate a wax blank iOS project using tableview"}
40
+ { :category => "generators", :command => "candle table demo", :description => "generate a wax blank iOS project using tableview"},
41
+ { :category => "generators", :command => "candle map demo", :description => "generate a wax iOS application using MapKit framework"}
42
+
41
43
  ]
42
44
  View.render(opt, RENDER_OPTIONS)
43
45
  puts
@@ -0,0 +1,128 @@
1
+ # encoding: utf-8
2
+ require 'rubygems'
3
+ require 'cli-colorize'
4
+ require 'hirb'
5
+ require File.dirname(__FILE__) + '/jam'
6
+ require File.dirname(__FILE__) + '/../view'
7
+
8
+ module Candle
9
+ module Generators
10
+ class Map < Jam
11
+ include CLIColorize
12
+
13
+ CLIColorize.default_color = :red
14
+ author 'Eiffel Qiu'
15
+ homepage 'http://www.likenote.com'
16
+ email 'eiffelqiu@gmail.com'
17
+ version Candle::Version::STRING
18
+
19
+ # Add this generator to our candle
20
+ Candle::Generators.add_generator(:map, self)
21
+
22
+ init_generator
23
+
24
+ desc "Description:\n\n\tcandle will generates an new wax iOS application using MapKit framework"
25
+
26
+ argument :name, :desc => "The name of your wax application"
27
+
28
+ class_option :root, :desc => "The root destination", :aliases => '-r', :default => ".", :type => :string
29
+ class_option :destroy, :aliases => '-d', :default => false, :type => :boolean
30
+
31
+ def create_project
32
+ valid_constant?(options[:project] || name)
33
+ @project_name = (options[:app] || name).gsub(/\W/, "_").downcase
34
+ @class_name = (options[:app] || name).gsub(/\W/, "_").capitalize
35
+ @developer = "#{`whoami`.strip}"
36
+ @created_on = Date.today.to_s
37
+ self.destination_root = options[:root]
38
+ project = options[:project]
39
+ self.behavior = :revoke if options[:destroy]
40
+
41
+ puts colorize( "Candle Version: #{Candle::Version::STRING}", { :foreground => :red, :background => :white, :config => :underline } )
42
+ puts
43
+
44
+ eval(File.read(__FILE__) =~ /^__END__\n/ && $' || '')
45
+ say (<<-TEXT).gsub(/ {10}/,'')
46
+
47
+ =================================================================
48
+ Your #{@project_name} wax application has been generated.
49
+ Open #{@project_name}.xcodeproj
50
+ Build and Run
51
+ =================================================================
52
+
53
+ TEXT
54
+ end
55
+ end # Project
56
+ end # Generators
57
+ end # Candle
58
+
59
+ __END__
60
+ empty_directory "#{@project_name}"
61
+
62
+ directory "templates/map/scripts", "#{@project_name}/scripts"
63
+ directory "lua/wax", "#{@project_name}/wax"
64
+
65
+ directory "templates/map/WaxApplication.xcodeproj", "#{@project_name}/#{@project_name}.xcodeproj"
66
+
67
+ fileName = "#{options[:root]}/#{@project_name}/#{@project_name}.xcodeproj/project.pbxproj"
68
+ aFile = File.open(fileName, "r")
69
+ aString = aFile.read
70
+ aFile.close
71
+ aString.gsub!('WaxApplication', "#{@project_name}")
72
+ File.open(fileName, "w") { |file| file << aString }
73
+
74
+ fileName = "#{options[:root]}/#{@project_name}/#{@project_name}.xcodeproj/xcuserdata/eiffel.xcuserdatad/xcschemes/WaxApplication.xcscheme"
75
+ aFile = File.open(fileName, "r")
76
+ aString = aFile.read
77
+ aFile.close
78
+ aString.gsub!('WaxApplication', "#{@project_name}")
79
+ File.open(fileName, "w") { |file| file << aString }
80
+
81
+ fileName = "#{options[:root]}/#{@project_name}/#{@project_name}.xcodeproj/xcuserdata/eiffel.xcuserdatad/xcschemes/xcschememanagement.plist"
82
+ aFile = File.open(fileName, "r")
83
+ aString = aFile.read
84
+ aFile.close
85
+ aString.gsub!('WaxApplication', "#{@project_name}")
86
+ File.open(fileName, "w") { |file| file << aString }
87
+
88
+ fileName = "#{options[:root]}/#{@project_name}/#{@project_name}.xcodeproj/xcuserdata/eiffel.xcuserdatad/xcschemes/WaxApplication.xcscheme"
89
+ aFile = File.open(fileName, "r")
90
+ aString = aFile.read
91
+ aFile.close
92
+ aString.gsub!('WaxApplication', "#{@project_name}")
93
+ File.open(fileName, "w") { |file| file << aString }
94
+
95
+ fileName = "#{options[:root]}/#{@project_name}/#{@project_name}.xcodeproj/project.xcworkspace/contents.xcworkspacedata"
96
+ aFile = File.open(fileName, "r")
97
+ aString = aFile.read
98
+ aFile.close
99
+ aString.gsub!('WaxApplication', "#{@project_name}")
100
+ File.open(fileName, "w") { |file| file << aString }
101
+
102
+ fileName = "#{options[:root]}/#{@project_name}/#{@project_name}.xcodeproj/project.xcworkspace/xcuserdata/eiffel.xcuserdatad/UserInterfaceState.xcuserstate"
103
+ aFile = File.open(fileName, "r")
104
+ aString = aFile.read.unpack("C*").pack("U*")
105
+ aFile.close
106
+ aString.gsub!('WaxApplication', "#{@project_name}")
107
+ File.open(fileName, "w") { |file| file << aString }
108
+
109
+ system "mv #{options[:root]}/#{@project_name}/#{@project_name}.xcodeproj/project.xcworkspace/xcuserdata/eiffel.xcuserdatad #{options[:root]}/#{@project_name}/#{@project_name}.xcodeproj/project.xcworkspace/xcuserdata/#{`whoami`.strip}.xcuserdatad" if `whoami`.strip != 'eiffel'
110
+
111
+ system "mv #{options[:root]}/#{@project_name}/#{@project_name}.xcodeproj/xcuserdata/eiffel.xcuserdatad #{options[:root]}/#{@project_name}/#{@project_name}.xcodeproj/xcuserdata/#{`whoami`.strip}.xcuserdatad" if `whoami`.strip != 'eiffel'
112
+
113
+ system "mv #{options[:root]}/#{@project_name}/#{@project_name}.xcodeproj/xcuserdata/#{`whoami`.strip}.xcuserdatad/xcschemes/WaxApplication.xcscheme #{options[:root]}/#{@project_name}/#{@project_name}.xcodeproj/xcuserdata/#{`whoami`.strip}.xcuserdatad/xcschemes/#{@project_name}.xcscheme"
114
+
115
+ template "templates/map/WaxApplication/main.m.tt", "#{@project_name}/#{@project_name}/main.m"
116
+ template "templates/map/WaxApplication/ProtocolLoader.h", "#{@project_name}/#{@project_name}/ProtocolLoader.h"
117
+
118
+ directory "templates/map/WaxApplication/en.lproj", "#{@project_name}/#{@project_name}/en.lproj"
119
+
120
+ template "templates/map/WaxApplication/WaxApplication-Info.plist.tt", "#{@project_name}/#{@project_name}/#{@project_name}-Info.plist"
121
+ template "templates/map/WaxApplication/WaxApplication-Prefix.pch.tt", "#{@project_name}/#{@project_name}/#{@project_name}-Prefix.pch"
122
+
123
+ copy_file "templates/resources/Default-568h@2x.png", "#{@project_name}/#{@project_name}/Default-568h@2x.png"
124
+ copy_file "templates/resources/Default@2x.png", "#{@project_name}/#{@project_name}/Default@2x.png"
125
+ copy_file "templates/resources/Default.png", "#{@project_name}/#{@project_name}/Default.png"
126
+ copy_file "templates/project.rake", "#{@project_name}/#{@project_name}/Rakefile"
127
+
128
+ system "chmod 777 #{@project_name}/wax/lib/build-scripts/*"
@@ -21,7 +21,7 @@ module Candle
21
21
 
22
22
  init_generator
23
23
 
24
- desc "Description:\n\n\tcandle will generates an new wax iOS application"
24
+ desc "Description:\n\n\tcandle will generates a wax blank iOS project using tableview"
25
25
 
26
26
  argument :name, :desc => "The name of your wax application"
27
27
 
@@ -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
+ C58EDA0516EEE49100748E2B /* SimpleAnnotation.lua in Resources */ = {isa = PBXBuildFile; fileRef = C58EDA0316EEE49100748E2B /* SimpleAnnotation.lua */; };
78
+ C58EDA0616EEE49100748E2B /* SimpleMapController.lua in Resources */ = {isa = PBXBuildFile; fileRef = C58EDA0416EEE49100748E2B /* SimpleMapController.lua */; };
79
+ C58EDA0816EEE49E00748E2B /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C58EDA0716EEE49E00748E2B /* MapKit.framework */; };
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
+ C58EDA0316EEE49100748E2B /* SimpleAnnotation.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SimpleAnnotation.lua; sourceTree = "<group>"; };
230
+ C58EDA0416EEE49100748E2B /* SimpleMapController.lua */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SimpleMapController.lua; sourceTree = "<group>"; };
231
+ C58EDA0716EEE49E00748E2B /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
232
+ /* End PBXFileReference section */
233
+
234
+ /* Begin PBXFrameworksBuildPhase section */
235
+ C57ED6E316E59BF400F57BA4 /* Frameworks */ = {
236
+ isa = PBXFrameworksBuildPhase;
237
+ buildActionMask = 2147483647;
238
+ files = (
239
+ C58EDA0816EEE49E00748E2B /* MapKit.framework in Frameworks */,
240
+ C57ED6EA16E59BF400F57BA4 /* UIKit.framework in Frameworks */,
241
+ C57ED6EC16E59BF400F57BA4 /* Foundation.framework in Frameworks */,
242
+ C57ED6EE16E59BF400F57BA4 /* CoreGraphics.framework in Frameworks */,
243
+ );
244
+ runOnlyForDeploymentPostprocessing = 0;
245
+ };
246
+ /* End PBXFrameworksBuildPhase section */
247
+
248
+ /* Begin PBXGroup section */
249
+ C57ED6DD16E59BF400F57BA4 = {
250
+ isa = PBXGroup;
251
+ children = (
252
+ C57ED6EF16E59BF400F57BA4 /* WaxApplication */,
253
+ C57ED6E816E59BF400F57BA4 /* Frameworks */,
254
+ C57ED6E716E59BF400F57BA4 /* Products */,
255
+ );
256
+ sourceTree = "<group>";
257
+ };
258
+ C57ED6E716E59BF400F57BA4 /* Products */ = {
259
+ isa = PBXGroup;
260
+ children = (
261
+ C57ED6E616E59BF400F57BA4 /* WaxApplication.app */,
262
+ );
263
+ name = Products;
264
+ sourceTree = "<group>";
265
+ };
266
+ C57ED6E816E59BF400F57BA4 /* Frameworks */ = {
267
+ isa = PBXGroup;
268
+ children = (
269
+ C58EDA0716EEE49E00748E2B /* MapKit.framework */,
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
+ C58EDA0316EEE49100748E2B /* SimpleAnnotation.lua */,
306
+ C58EDA0416EEE49100748E2B /* SimpleMapController.lua */,
307
+ C57EDA2916E6187800F57BA4 /* AppDelegate.lua */,
308
+ C57EDA2A16E6187800F57BA4 /* tests */,
309
+ );
310
+ path = scripts;
311
+ sourceTree = SOURCE_ROOT;
312
+ };
313
+ C57EDA2A16E6187800F57BA4 /* tests */ = {
314
+ isa = PBXGroup;
315
+ children = (
316
+ C57EDA2B16E6187800F57BA4 /* init.lua */,
317
+ C57EDA2C16E6187800F57BA4 /* someTest.lua */,
318
+ );
319
+ path = tests;
320
+ sourceTree = "<group>";
321
+ };
322
+ C57EDA2D16E6187800F57BA4 /* wax */ = {
323
+ isa = PBXGroup;
324
+ children = (
325
+ C57EDA2E16E6187800F57BA4 /* bin */,
326
+ C57EDA3216E6187800F57BA4 /* lib */,
327
+ );
328
+ path = wax;
329
+ sourceTree = SOURCE_ROOT;
330
+ };
331
+ C57EDA2E16E6187800F57BA4 /* bin */ = {
332
+ isa = PBXGroup;
333
+ children = (
334
+ C57EDA2F16E6187800F57BA4 /* hammer */,
335
+ C57EDA3016E6187800F57BA4 /* update-xibs */,
336
+ C57EDA3116E6187800F57BA4 /* waxsim */,
337
+ );
338
+ path = bin;
339
+ sourceTree = "<group>";
340
+ };
341
+ C57EDA3216E6187800F57BA4 /* lib */ = {
342
+ isa = PBXGroup;
343
+ children = (
344
+ C57EDA3316E6187800F57BA4 /* build-scripts */,
345
+ C57EDA3716E6187800F57BA4 /* extensions */,
346
+ C57EDA6016E6187900F57BA4 /* lua */,
347
+ C57EDA9616E6187900F57BA4 /* project.rake */,
348
+ C57EDA9716E6187900F57BA4 /* stdlib */,
349
+ C57EDAB216E6187900F57BA4 /* wax.h */,
350
+ C57EDAB316E6187900F57BA4 /* wax.m */,
351
+ C57EDAB416E6187900F57BA4 /* wax_class.h */,
352
+ C57EDAB516E6187900F57BA4 /* wax_class.m */,
353
+ C57EDAB616E6187900F57BA4 /* wax_gc.h */,
354
+ C57EDAB716E6187900F57BA4 /* wax_gc.m */,
355
+ C57EDAB816E6187900F57BA4 /* wax_helpers.h */,
356
+ C57EDAB916E6187900F57BA4 /* wax_helpers.m */,
357
+ C57EDABA16E6187900F57BA4 /* wax_instance.h */,
358
+ C57EDABB16E6187900F57BA4 /* wax_instance.m */,
359
+ C57EDABC16E6187900F57BA4 /* wax_server.h */,
360
+ C57EDABD16E6187900F57BA4 /* wax_server.m */,
361
+ C57EDABE16E6187900F57BA4 /* wax_stdlib.h */,
362
+ C57EDABF16E6187900F57BA4 /* wax_struct.h */,
363
+ C57EDAC016E6187900F57BA4 /* wax_struct.m */,
364
+ );
365
+ path = lib;
366
+ sourceTree = "<group>";
367
+ };
368
+ C57EDA3316E6187800F57BA4 /* build-scripts */ = {
369
+ isa = PBXGroup;
370
+ children = (
371
+ C57EDA3416E6187800F57BA4 /* compile-stdlib.sh */,
372
+ C57EDA3516E6187800F57BA4 /* copy-scripts.sh */,
373
+ C57EDA3616E6187800F57BA4 /* luac.lua */,
374
+ );
375
+ path = "build-scripts";
376
+ sourceTree = "<group>";
377
+ };
378
+ C57EDA3716E6187800F57BA4 /* extensions */ = {
379
+ isa = PBXGroup;
380
+ children = (
381
+ C57EDA3816E6187800F57BA4 /* CGAffine */,
382
+ C57EDA3B16E6187800F57BA4 /* CGContext */,
383
+ C57EDA3E16E6187800F57BA4 /* filesystem */,
384
+ C57EDA4116E6187800F57BA4 /* HTTP */,
385
+ C57EDA4616E6187900F57BA4 /* json */,
386
+ );
387
+ path = extensions;
388
+ sourceTree = "<group>";
389
+ };
390
+ C57EDA3816E6187800F57BA4 /* CGAffine */ = {
391
+ isa = PBXGroup;
392
+ children = (
393
+ C57EDA3916E6187800F57BA4 /* wax_CGTransform.h */,
394
+ C57EDA3A16E6187800F57BA4 /* wax_CGTransform.m */,
395
+ );
396
+ path = CGAffine;
397
+ sourceTree = "<group>";
398
+ };
399
+ C57EDA3B16E6187800F57BA4 /* CGContext */ = {
400
+ isa = PBXGroup;
401
+ children = (
402
+ C57EDA3C16E6187800F57BA4 /* wax_CGContext.h */,
403
+ C57EDA3D16E6187800F57BA4 /* wax_CGContext.m */,
404
+ );
405
+ path = CGContext;
406
+ sourceTree = "<group>";
407
+ };
408
+ C57EDA3E16E6187800F57BA4 /* filesystem */ = {
409
+ isa = PBXGroup;
410
+ children = (
411
+ C57EDA3F16E6187800F57BA4 /* wax_filesystem.h */,
412
+ C57EDA4016E6187800F57BA4 /* wax_filesystem.m */,
413
+ );
414
+ path = filesystem;
415
+ sourceTree = "<group>";
416
+ };
417
+ C57EDA4116E6187800F57BA4 /* HTTP */ = {
418
+ isa = PBXGroup;
419
+ children = (
420
+ C57EDA4216E6187800F57BA4 /* wax_http.h */,
421
+ C57EDA4316E6187800F57BA4 /* wax_http.m */,
422
+ C57EDA4416E6187800F57BA4 /* wax_http_connection.h */,
423
+ C57EDA4516E6187900F57BA4 /* wax_http_connection.m */,
424
+ );
425
+ path = HTTP;
426
+ sourceTree = "<group>";
427
+ };
428
+ C57EDA4616E6187900F57BA4 /* json */ = {
429
+ isa = PBXGroup;
430
+ children = (
431
+ C57EDA4716E6187900F57BA4 /* Rakefile */,
432
+ C57EDA4816E6187900F57BA4 /* wax_json.c */,
433
+ C57EDA4916E6187900F57BA4 /* wax_json.h */,
434
+ C57EDA4A16E6187900F57BA4 /* yajl */,
435
+ C57EDA5F16E6187900F57BA4 /* yajl-1.0.9.tar.gz */,
436
+ );
437
+ path = json;
438
+ sourceTree = "<group>";
439
+ };
440
+ C57EDA4A16E6187900F57BA4 /* yajl */ = {
441
+ isa = PBXGroup;
442
+ children = (
443
+ C57EDA4B16E6187900F57BA4 /* api */,
444
+ C57EDA4F16E6187900F57BA4 /* yajl.c */,
445
+ C57EDA5016E6187900F57BA4 /* yajl_alloc.c */,
446
+ C57EDA5116E6187900F57BA4 /* yajl_alloc.h */,
447
+ C57EDA5216E6187900F57BA4 /* yajl_buf.c */,
448
+ C57EDA5316E6187900F57BA4 /* yajl_buf.h */,
449
+ C57EDA5416E6187900F57BA4 /* yajl_bytestack.h */,
450
+ C57EDA5516E6187900F57BA4 /* yajl_common.h */,
451
+ C57EDA5616E6187900F57BA4 /* yajl_encode.c */,
452
+ C57EDA5716E6187900F57BA4 /* yajl_encode.h */,
453
+ C57EDA5816E6187900F57BA4 /* yajl_gen.c */,
454
+ C57EDA5916E6187900F57BA4 /* yajl_gen.h */,
455
+ C57EDA5A16E6187900F57BA4 /* yajl_lex.c */,
456
+ C57EDA5B16E6187900F57BA4 /* yajl_lex.h */,
457
+ C57EDA5C16E6187900F57BA4 /* yajl_parse.h */,
458
+ C57EDA5D16E6187900F57BA4 /* yajl_parser.c */,
459
+ C57EDA5E16E6187900F57BA4 /* yajl_parser.h */,
460
+ );
461
+ path = yajl;
462
+ sourceTree = "<group>";
463
+ };
464
+ C57EDA4B16E6187900F57BA4 /* api */ = {
465
+ isa = PBXGroup;
466
+ children = (
467
+ C57EDA4C16E6187900F57BA4 /* yajl_common.h */,
468
+ C57EDA4D16E6187900F57BA4 /* yajl_gen.h */,
469
+ C57EDA4E16E6187900F57BA4 /* yajl_parse.h */,
470
+ );
471
+ path = api;
472
+ sourceTree = "<group>";
473
+ };
474
+ C57EDA6016E6187900F57BA4 /* lua */ = {
475
+ isa = PBXGroup;
476
+ children = (
477
+ C57EDA6116E6187900F57BA4 /* lapi.c */,
478
+ C57EDA6216E6187900F57BA4 /* lapi.h */,
479
+ C57EDA6316E6187900F57BA4 /* lauxlib.c */,
480
+ C57EDA6416E6187900F57BA4 /* lauxlib.h */,
481
+ C57EDA6516E6187900F57BA4 /* lbaselib.c */,
482
+ C57EDA6616E6187900F57BA4 /* lcode.c */,
483
+ C57EDA6716E6187900F57BA4 /* lcode.h */,
484
+ C57EDA6816E6187900F57BA4 /* ldblib.c */,
485
+ C57EDA6916E6187900F57BA4 /* ldebug.c */,
486
+ C57EDA6A16E6187900F57BA4 /* ldebug.h */,
487
+ C57EDA6B16E6187900F57BA4 /* ldo.c */,
488
+ C57EDA6C16E6187900F57BA4 /* ldo.h */,
489
+ C57EDA6D16E6187900F57BA4 /* ldump.c */,
490
+ C57EDA6E16E6187900F57BA4 /* lfunc.c */,
491
+ C57EDA6F16E6187900F57BA4 /* lfunc.h */,
492
+ C57EDA7016E6187900F57BA4 /* lgc.c */,
493
+ C57EDA7116E6187900F57BA4 /* lgc.h */,
494
+ C57EDA7216E6187900F57BA4 /* linit.c */,
495
+ C57EDA7316E6187900F57BA4 /* liolib.c */,
496
+ C57EDA7416E6187900F57BA4 /* llex.c */,
497
+ C57EDA7516E6187900F57BA4 /* llex.h */,
498
+ C57EDA7616E6187900F57BA4 /* llimits.h */,
499
+ C57EDA7716E6187900F57BA4 /* lmathlib.c */,
500
+ C57EDA7816E6187900F57BA4 /* lmem.c */,
501
+ C57EDA7916E6187900F57BA4 /* lmem.h */,
502
+ C57EDA7A16E6187900F57BA4 /* loadlib.c */,
503
+ C57EDA7B16E6187900F57BA4 /* lobject.c */,
504
+ C57EDA7C16E6187900F57BA4 /* lobject.h */,
505
+ C57EDA7D16E6187900F57BA4 /* lopcodes.c */,
506
+ C57EDA7E16E6187900F57BA4 /* lopcodes.h */,
507
+ C57EDA7F16E6187900F57BA4 /* loslib.c */,
508
+ C57EDA8016E6187900F57BA4 /* lparser.c */,
509
+ C57EDA8116E6187900F57BA4 /* lparser.h */,
510
+ C57EDA8216E6187900F57BA4 /* lstate.c */,
511
+ C57EDA8316E6187900F57BA4 /* lstate.h */,
512
+ C57EDA8416E6187900F57BA4 /* lstring.c */,
513
+ C57EDA8516E6187900F57BA4 /* lstring.h */,
514
+ C57EDA8616E6187900F57BA4 /* lstrlib.c */,
515
+ C57EDA8716E6187900F57BA4 /* ltable.c */,
516
+ C57EDA8816E6187900F57BA4 /* ltable.h */,
517
+ C57EDA8916E6187900F57BA4 /* ltablib.c */,
518
+ C57EDA8A16E6187900F57BA4 /* ltm.c */,
519
+ C57EDA8B16E6187900F57BA4 /* ltm.h */,
520
+ C57EDA8C16E6187900F57BA4 /* lua.h */,
521
+ C57EDA8D16E6187900F57BA4 /* luaconf.h */,
522
+ C57EDA8E16E6187900F57BA4 /* lualib.h */,
523
+ C57EDA8F16E6187900F57BA4 /* lundump.c */,
524
+ C57EDA9016E6187900F57BA4 /* lundump.h */,
525
+ C57EDA9116E6187900F57BA4 /* lvm.c */,
526
+ C57EDA9216E6187900F57BA4 /* lvm.h */,
527
+ C57EDA9316E6187900F57BA4 /* lzio.c */,
528
+ C57EDA9416E6187900F57BA4 /* lzio.h */,
529
+ C57EDA9516E6187900F57BA4 /* print.c */,
530
+ );
531
+ path = lua;
532
+ sourceTree = "<group>";
533
+ };
534
+ C57EDA9716E6187900F57BA4 /* stdlib */ = {
535
+ isa = PBXGroup;
536
+ children = (
537
+ C57EDA9816E6187900F57BA4 /* enums.lua */,
538
+ C57EDA9916E6187900F57BA4 /* ext */,
539
+ C57EDA9F16E6187900F57BA4 /* helpers */,
540
+ C57EDAAA16E6187900F57BA4 /* init.lua */,
541
+ C57EDAAB16E6187900F57BA4 /* luaspec */,
542
+ C57EDAAF16E6187900F57BA4 /* repl.lua */,
543
+ C57EDAB016E6187900F57BA4 /* structs.lua */,
544
+ C57EDAB116E6187900F57BA4 /* waxClass.lua */,
545
+ );
546
+ path = stdlib;
547
+ sourceTree = "<group>";
548
+ };
549
+ C57EDA9916E6187900F57BA4 /* ext */ = {
550
+ isa = PBXGroup;
551
+ children = (
552
+ C57EDA9A16E6187900F57BA4 /* http.lua */,
553
+ C57EDA9B16E6187900F57BA4 /* init.lua */,
554
+ C57EDA9C16E6187900F57BA4 /* number.lua */,
555
+ C57EDA9D16E6187900F57BA4 /* string.lua */,
556
+ C57EDA9E16E6187900F57BA4 /* table.lua */,
557
+ );
558
+ path = ext;
559
+ sourceTree = "<group>";
560
+ };
561
+ C57EDA9F16E6187900F57BA4 /* helpers */ = {
562
+ isa = PBXGroup;
563
+ children = (
564
+ C57EDAA016E6187900F57BA4 /* autoload.lua */,
565
+ C57EDAA116E6187900F57BA4 /* base64.lua */,
566
+ C57EDAA216E6187900F57BA4 /* bit.lua */,
567
+ C57EDAA316E6187900F57BA4 /* cache.lua */,
568
+ C57EDAA416E6187900F57BA4 /* callback.lua */,
569
+ C57EDAA516E6187900F57BA4 /* frame.lua */,
570
+ C57EDAA616E6187900F57BA4 /* init.lua */,
571
+ C57EDAA716E6187900F57BA4 /* pickView.lua */,
572
+ C57EDAA816E6187900F57BA4 /* time.lua */,
573
+ C57EDAA916E6187900F57BA4 /* WaxServer.lua */,
574
+ );
575
+ path = helpers;
576
+ sourceTree = "<group>";
577
+ };
578
+ C57EDAAB16E6187900F57BA4 /* luaspec */ = {
579
+ isa = PBXGroup;
580
+ children = (
581
+ C57EDAAC16E6187900F57BA4 /* init.lua */,
582
+ C57EDAAD16E6187900F57BA4 /* luamock.lua */,
583
+ C57EDAAE16E6187900F57BA4 /* luaspec.lua */,
584
+ );
585
+ path = luaspec;
586
+ sourceTree = "<group>";
587
+ };
588
+ /* End PBXGroup section */
589
+
590
+ /* Begin PBXNativeTarget section */
591
+ C57ED6E516E59BF400F57BA4 /* WaxApplication */ = {
592
+ isa = PBXNativeTarget;
593
+ buildConfigurationList = C57ED70316E59BF400F57BA4 /* Build configuration list for PBXNativeTarget "WaxApplication" */;
594
+ buildPhases = (
595
+ C57ED6E216E59BF400F57BA4 /* Sources */,
596
+ C57ED6E316E59BF400F57BA4 /* Frameworks */,
597
+ C57ED6E416E59BF400F57BA4 /* Resources */,
598
+ C57ED7F516E5A6C200F57BA4 /* ShellScript */,
599
+ );
600
+ buildRules = (
601
+ );
602
+ dependencies = (
603
+ );
604
+ name = WaxApplication;
605
+ productName = WaxApplication;
606
+ productReference = C57ED6E616E59BF400F57BA4 /* WaxApplication.app */;
607
+ productType = "com.apple.product-type.application";
608
+ };
609
+ /* End PBXNativeTarget section */
610
+
611
+ /* Begin PBXProject section */
612
+ C57ED6DE16E59BF400F57BA4 /* Project object */ = {
613
+ isa = PBXProject;
614
+ attributes = {
615
+ LastUpgradeCheck = 0460;
616
+ ORGANIZATIONNAME = likenote;
617
+ };
618
+ buildConfigurationList = C57ED6E116E59BF400F57BA4 /* Build configuration list for PBXProject "WaxApplication" */;
619
+ compatibilityVersion = "Xcode 3.2";
620
+ developmentRegion = English;
621
+ hasScannedForEncodings = 0;
622
+ knownRegions = (
623
+ en,
624
+ );
625
+ mainGroup = C57ED6DD16E59BF400F57BA4;
626
+ productRefGroup = C57ED6E716E59BF400F57BA4 /* Products */;
627
+ projectDirPath = "";
628
+ projectRoot = "";
629
+ targets = (
630
+ C57ED6E516E59BF400F57BA4 /* WaxApplication */,
631
+ );
632
+ };
633
+ /* End PBXProject section */
634
+
635
+ /* Begin PBXResourcesBuildPhase section */
636
+ C57ED6E416E59BF400F57BA4 /* Resources */ = {
637
+ isa = PBXResourcesBuildPhase;
638
+ buildActionMask = 2147483647;
639
+ files = (
640
+ C57ED6F416E59BF400F57BA4 /* InfoPlist.strings in Resources */,
641
+ C57ED6FC16E59BF400F57BA4 /* Default.png in Resources */,
642
+ C57ED6FE16E59BF400F57BA4 /* Default@2x.png in Resources */,
643
+ C57ED70016E59BF400F57BA4 /* Default-568h@2x.png in Resources */,
644
+ C57EDAC416E6187900F57BA4 /* hammer in Resources */,
645
+ C57EDAC516E6187900F57BA4 /* update-xibs in Resources */,
646
+ C57EDAC616E6187900F57BA4 /* waxsim in Resources */,
647
+ C57EDAC716E6187900F57BA4 /* compile-stdlib.sh in Resources */,
648
+ C57EDAC816E6187900F57BA4 /* copy-scripts.sh in Resources */,
649
+ C57EDAC916E6187900F57BA4 /* luac.lua in Resources */,
650
+ C57EDACF16E6187900F57BA4 /* Rakefile in Resources */,
651
+ C57EDAD816E6187900F57BA4 /* yajl-1.0.9.tar.gz in Resources */,
652
+ C57EDAF716E6187900F57BA4 /* project.rake in Resources */,
653
+ C58EDA0516EEE49100748E2B /* SimpleAnnotation.lua in Resources */,
654
+ C58EDA0616EEE49100748E2B /* SimpleMapController.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
+ }