zerg_xcode 0.3.4 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. data/CHANGELOG +2 -0
  2. data/Manifest +22 -14
  3. data/Rakefile +6 -0
  4. data/lib/zerg_xcode.rb +8 -3
  5. data/lib/zerg_xcode/builder/runner.rb +51 -0
  6. data/lib/zerg_xcode/builder/sdks.rb +34 -0
  7. data/lib/zerg_xcode/file_format/archiver.rb +15 -2
  8. data/lib/zerg_xcode/file_format/encoder.rb +15 -2
  9. data/lib/zerg_xcode/file_format/lexer.rb +15 -2
  10. data/lib/zerg_xcode/file_format/parser.rb +15 -2
  11. data/lib/zerg_xcode/file_format/paths.rb +15 -2
  12. data/lib/zerg_xcode/objects/pbx_build_file.rb +16 -3
  13. data/lib/zerg_xcode/objects/pbx_build_phase.rb +14 -2
  14. data/lib/zerg_xcode/objects/pbx_container_item_proxy.rb +14 -2
  15. data/lib/zerg_xcode/objects/pbx_group.rb +43 -3
  16. data/lib/zerg_xcode/objects/pbx_native_target.rb +15 -3
  17. data/lib/zerg_xcode/objects/pbx_project.rb +20 -4
  18. data/lib/zerg_xcode/objects/pbx_target_dependency.rb +15 -3
  19. data/lib/zerg_xcode/objects/xc_configuration_list.rb +14 -2
  20. data/lib/zerg_xcode/objects/xcode_object.rb +14 -3
  21. data/lib/zerg_xcode/plugins/addlibrary.rb +15 -2
  22. data/lib/zerg_xcode/plugins/core/core.rb +15 -6
  23. data/lib/zerg_xcode/plugins/help.rb +15 -2
  24. data/lib/zerg_xcode/plugins/import.rb +15 -2
  25. data/lib/zerg_xcode/plugins/irb.rb +16 -2
  26. data/lib/zerg_xcode/plugins/ls.rb +15 -2
  27. data/lib/zerg_xcode/plugins/lstargets.rb +16 -2
  28. data/lib/zerg_xcode/plugins/retarget.rb +15 -2
  29. data/lib/zerg_xcode/shortcuts.rb +10 -2
  30. data/test/builder/runner_test.rb +35 -0
  31. data/test/builder/sdk_test.rb +17 -0
  32. data/test/file_format/archiver_test.rb +6 -2
  33. data/test/file_format/encoder_test.rb +7 -3
  34. data/test/file_format/lexer_test.rb +7 -3
  35. data/test/file_format/parser_test.rb +6 -2
  36. data/test/file_format/path_test.rb +30 -24
  37. data/test/fixtures/ClosedLib/ClosedLib.xcodeproj/project.pbxproj +225 -0
  38. data/test/fixtures/ClosedLib/ClosedLib_Prefix.pch +7 -0
  39. data/test/fixtures/ClosedLib/ClosedNative.c +20 -0
  40. data/test/fixtures/ClosedLib/ClosedNative.h +12 -0
  41. data/{testdata → test/fixtures}/FlatTestApp/FlatTestApp.xcodeproj/project.pbxproj +0 -0
  42. data/{testdata → test/fixtures}/TestApp/TestApp.xcodeproj/project.pbxproj +0 -0
  43. data/{testdata → test/fixtures}/TestApp30.xcodeproj/project.pbxproj +0 -0
  44. data/{testdata → test/fixtures}/TestLib30.xcodeproj/project.pbxproj +0 -0
  45. data/{testdata → test/fixtures}/ZergSupport.xcodeproj/project.pbxproj +0 -0
  46. data/{testdata → test/fixtures}/project.pbxproj +0 -0
  47. data/{testdata → test/fixtures}/project.pbxproj.compat +0 -0
  48. data/test/objects/pbx_build_file_test.rb +7 -4
  49. data/test/objects/pbx_build_phase_test.rb +5 -2
  50. data/test/objects/pbx_container_item_proxy_test.rb +6 -2
  51. data/test/objects/pbx_group_test.rb +35 -3
  52. data/test/objects/pbx_native_target_test.rb +5 -2
  53. data/test/objects/pbx_project_test.rb +21 -9
  54. data/test/objects/pbx_target_dependency_test.rb +6 -2
  55. data/test/objects/xc_configuration_list_test.rb +5 -2
  56. data/test/objects/xcode_object_test.rb +5 -2
  57. data/test/plugins/addlibrary_test.rb +6 -3
  58. data/test/plugins/core/core_test.rb +5 -2
  59. data/test/plugins/helper.rb +4 -0
  60. data/test/plugins/import_test.rb +76 -72
  61. data/test/plugins/irb_test.rb +9 -4
  62. data/test/plugins/ls_test.rb +7 -4
  63. data/test/plugins/lstargets_test.rb +7 -4
  64. data/test/plugins/retarget_test.rb +7 -4
  65. data/test/shortcuts_test.rb +7 -3
  66. data/zerg_xcode.gemspec +6 -6
  67. metadata +32 -20
@@ -1,7 +1,10 @@
1
- require 'test/unit'
2
- require 'test/plugins/helper.rb'
1
+ # Author:: Victor Costan
2
+ # Copyright:: Copyright (C) 2009 Zergling.Net
3
+ # License:: MIT
3
4
 
4
5
  require 'zerg_xcode'
6
+ require 'test/unit'
7
+ require 'test/plugins/helper.rb'
5
8
 
6
9
  require 'rubygems'
7
10
  require 'flexmock/test_unit'
@@ -18,10 +21,12 @@ class Plugins::IrbTest < Test::Unit::TestCase
18
21
  end
19
22
 
20
23
  def test_irb_call
21
- test_project = ZergXcode.load '.'
24
+ test_project = ZergXcode.load 'test'
22
25
 
23
26
  flexmock(IRB).should_receive(:start).and_return(nil)
24
- output = capture_output { @plugin.run([]) }
27
+ output = Dir.chdir('test') do
28
+ capture_output { @plugin.run([]) }
29
+ end
25
30
  assert_equal test_project.attrs, $p.attrs, 'Loaded incorrect project'
26
31
  assert output.index("'quit'"), 'Missing instructions on how to leave IRB'
27
32
  assert_equal "\n", output[-1, 1], 'Instructions missing trailing newline'
@@ -1,9 +1,12 @@
1
+ # Author:: Victor Costan
2
+ # Copyright:: Copyright (C) 2009 Zergling.Net
3
+ # License:: MIT
4
+
5
+ require 'zerg_xcode'
1
6
  require 'stringio'
2
7
  require 'test/unit'
3
8
  require 'test/plugins/helper.rb'
4
9
 
5
- require 'zerg_xcode'
6
-
7
10
  module Plugins; end
8
11
 
9
12
  class Plugins::LsTest < Test::Unit::TestCase
@@ -31,12 +34,12 @@ class Plugins::LsTest < Test::Unit::TestCase
31
34
  ["SDKROOT/System/Library/Frameworks/CoreGraphics.framework",
32
35
  "wrapper.framework"],
33
36
  ["BUILT_PRODUCTS_DIR/TestApp.app", nil]]
34
- file_list = @plugin.list_for 'testdata/project.pbxproj'
37
+ file_list = @plugin.list_for 'test/fixtures/project.pbxproj'
35
38
  assert_equal golden_list.sort, file_list.sort
36
39
  end
37
40
 
38
41
  def test_run
39
- output = capture_output { @plugin.run(['testdata']) }
42
+ output = capture_output { @plugin.run(['test/fixtures']) }
40
43
  assert_equal "sourcecode.c.h ./Classes/TestAppAppDelegate.h",
41
44
  output[/^(.*?)$/]
42
45
  end
@@ -1,9 +1,12 @@
1
+ # Author:: Victor Costan
2
+ # Copyright:: Copyright (C) 2009 Zergling.Net
3
+ # License:: MIT
4
+
5
+ require 'zerg_xcode'
1
6
  require 'stringio'
2
7
  require 'test/unit'
3
8
  require 'test/plugins/helper.rb'
4
9
 
5
- require 'zerg_xcode'
6
-
7
10
  module Plugins; end
8
11
 
9
12
  class Plugins::LstargetsTest < Test::Unit::TestCase
@@ -21,12 +24,12 @@ class Plugins::LstargetsTest < Test::Unit::TestCase
21
24
  ["ZergSupportTests", "ZergSupportTests",
22
25
  "com.apple.product-type.application"],
23
26
  ]
24
- file_list = @plugin.list_for 'testdata/ZergSupport'
27
+ file_list = @plugin.list_for 'test/fixtures/ZergSupport'
25
28
  assert_equal golden_list.sort, file_list.sort
26
29
  end
27
30
 
28
31
  def test_run
29
- output = capture_output { @plugin.run(['testdata/ZergSupport']) }
32
+ output = capture_output { @plugin.run(['test/fixtures/ZergSupport']) }
30
33
  assert_equal "library.static ZergSupport > ZergSupport",
31
34
  output[/^(.*?)$/]
32
35
  end
@@ -1,9 +1,12 @@
1
- require 'stringio'
2
- require 'test/unit'
3
- require 'test/plugins/helper.rb'
1
+ # Author:: Victor Costan
2
+ # Copyright:: Copyright (C) 2009 Zergling.Net
3
+ # License:: MIT
4
4
 
5
5
  require 'zerg_xcode'
6
+ require 'stringio'
7
+ require 'test/unit'
6
8
 
9
+ require 'test/plugins/helper.rb'
7
10
  require 'rubygems'
8
11
  require 'flexmock'
9
12
 
@@ -13,7 +16,7 @@ class Plugins::RetargetTest < Test::Unit::TestCase
13
16
  def setup
14
17
  super
15
18
  @plugin = ZergXcode.plugin 'retarget'
16
- @proj = ZergXcode.load 'testdata/TestApp/TestApp.xcodeproj'
19
+ @proj = ZergXcode.load 'test/fixtures/TestApp/TestApp.xcodeproj'
17
20
  @regexp = /^Test.*\.[^a]/
18
21
 
19
22
  @golden_list_for_app = [
@@ -1,12 +1,16 @@
1
- require 'test/unit'
1
+ # Author:: Victor Costan
2
+ # Copyright:: Copyright (C) 2009 Zergling.Net
3
+ # License:: MIT
4
+
2
5
  require 'zerg_xcode'
6
+ require 'test/unit'
3
7
 
4
8
  class ShortcutsTest < Test::Unit::TestCase
5
9
  def test_load
6
- proj = ZergXcode.load 'testdata/ZergSupport'
10
+ proj = ZergXcode.load 'test/fixtures/ZergSupport'
7
11
  assert_equal ['ZergSupport', 'ZergTestSupport', 'ZergSupportTests'].sort,
8
12
  proj['targets'].map { |target| target['name'] }.sort
9
- assert_equal 'testdata/ZergSupport.xcodeproj/project.pbxproj',
13
+ assert_equal 'test/fixtures/ZergSupport.xcodeproj/project.pbxproj',
10
14
  proj.source_filename, 'Loading did not set project source'
11
15
  end
12
16
 
data/zerg_xcode.gemspec CHANGED
@@ -2,24 +2,24 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{zerg_xcode}
5
- s.version = "0.3.4"
5
+ s.version = "0.3.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Victor Costan"]
9
- s.date = %q{2009-07-05}
9
+ s.date = %q{2009-12-06}
10
10
  s.default_executable = %q{bin/zerg-xcode}
11
11
  s.description = %q{Automated modifications for Xcode project files}
12
12
  s.email = %q{victor@zergling.net}
13
13
  s.executables = ["zerg-xcode"]
14
- s.extra_rdoc_files = ["bin/zerg-xcode", "CHANGELOG", "lib/zerg_xcode/file_format/archiver.rb", "lib/zerg_xcode/file_format/encoder.rb", "lib/zerg_xcode/file_format/lexer.rb", "lib/zerg_xcode/file_format/parser.rb", "lib/zerg_xcode/file_format/paths.rb", "lib/zerg_xcode/objects/pbx_build_file.rb", "lib/zerg_xcode/objects/pbx_build_phase.rb", "lib/zerg_xcode/objects/pbx_container_item_proxy.rb", "lib/zerg_xcode/objects/pbx_group.rb", "lib/zerg_xcode/objects/pbx_native_target.rb", "lib/zerg_xcode/objects/pbx_project.rb", "lib/zerg_xcode/objects/pbx_target_dependency.rb", "lib/zerg_xcode/objects/xc_configuration_list.rb", "lib/zerg_xcode/objects/xcode_object.rb", "lib/zerg_xcode/plugins/addlibrary.rb", "lib/zerg_xcode/plugins/core/core.rb", "lib/zerg_xcode/plugins/help.rb", "lib/zerg_xcode/plugins/import.rb", "lib/zerg_xcode/plugins/irb.rb", "lib/zerg_xcode/plugins/ls.rb", "lib/zerg_xcode/plugins/lstargets.rb", "lib/zerg_xcode/plugins/retarget.rb", "lib/zerg_xcode/shortcuts.rb", "lib/zerg_xcode.rb", "LICENSE", "README.textile"]
15
- s.files = ["bin/zerg-xcode", "CHANGELOG", "lib/zerg_xcode/file_format/archiver.rb", "lib/zerg_xcode/file_format/encoder.rb", "lib/zerg_xcode/file_format/lexer.rb", "lib/zerg_xcode/file_format/parser.rb", "lib/zerg_xcode/file_format/paths.rb", "lib/zerg_xcode/objects/pbx_build_file.rb", "lib/zerg_xcode/objects/pbx_build_phase.rb", "lib/zerg_xcode/objects/pbx_container_item_proxy.rb", "lib/zerg_xcode/objects/pbx_group.rb", "lib/zerg_xcode/objects/pbx_native_target.rb", "lib/zerg_xcode/objects/pbx_project.rb", "lib/zerg_xcode/objects/pbx_target_dependency.rb", "lib/zerg_xcode/objects/xc_configuration_list.rb", "lib/zerg_xcode/objects/xcode_object.rb", "lib/zerg_xcode/plugins/addlibrary.rb", "lib/zerg_xcode/plugins/core/core.rb", "lib/zerg_xcode/plugins/help.rb", "lib/zerg_xcode/plugins/import.rb", "lib/zerg_xcode/plugins/irb.rb", "lib/zerg_xcode/plugins/ls.rb", "lib/zerg_xcode/plugins/lstargets.rb", "lib/zerg_xcode/plugins/retarget.rb", "lib/zerg_xcode/shortcuts.rb", "lib/zerg_xcode.rb", "LICENSE", "Manifest", "Rakefile", "README.textile", "RUBYFORGE", "test/file_format/archiver_test.rb", "test/file_format/encoder_test.rb", "test/file_format/lexer_test.rb", "test/file_format/parser_test.rb", "test/file_format/path_test.rb", "test/objects/pbx_build_file_test.rb", "test/objects/pbx_build_phase_test.rb", "test/objects/pbx_container_item_proxy_test.rb", "test/objects/pbx_group_test.rb", "test/objects/pbx_native_target_test.rb", "test/objects/pbx_project_test.rb", "test/objects/pbx_target_dependency_test.rb", "test/objects/xc_configuration_list_test.rb", "test/objects/xcode_object_test.rb", "test/plugins/addlibrary_test.rb", "test/plugins/core/core_test.rb", "test/plugins/helper.rb", "test/plugins/import_test.rb", "test/plugins/irb_test.rb", "test/plugins/ls_test.rb", "test/plugins/lstargets_test.rb", "test/plugins/retarget_test.rb", "test/shortcuts_test.rb", "testdata/FlatTestApp/FlatTestApp.xcodeproj/project.pbxproj", "testdata/project.pbxproj", "testdata/project.pbxproj.compat", "testdata/TestApp/TestApp.xcodeproj/project.pbxproj", "testdata/TestApp30.xcodeproj/project.pbxproj", "testdata/TestLib30.xcodeproj/project.pbxproj", "testdata/ZergSupport.xcodeproj/project.pbxproj", "zerg_xcode.gemspec"]
14
+ s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README.textile", "bin/zerg-xcode", "lib/zerg_xcode.rb", "lib/zerg_xcode/builder/runner.rb", "lib/zerg_xcode/builder/sdks.rb", "lib/zerg_xcode/file_format/archiver.rb", "lib/zerg_xcode/file_format/encoder.rb", "lib/zerg_xcode/file_format/lexer.rb", "lib/zerg_xcode/file_format/parser.rb", "lib/zerg_xcode/file_format/paths.rb", "lib/zerg_xcode/objects/pbx_build_file.rb", "lib/zerg_xcode/objects/pbx_build_phase.rb", "lib/zerg_xcode/objects/pbx_container_item_proxy.rb", "lib/zerg_xcode/objects/pbx_group.rb", "lib/zerg_xcode/objects/pbx_native_target.rb", "lib/zerg_xcode/objects/pbx_project.rb", "lib/zerg_xcode/objects/pbx_target_dependency.rb", "lib/zerg_xcode/objects/xc_configuration_list.rb", "lib/zerg_xcode/objects/xcode_object.rb", "lib/zerg_xcode/plugins/addlibrary.rb", "lib/zerg_xcode/plugins/core/core.rb", "lib/zerg_xcode/plugins/help.rb", "lib/zerg_xcode/plugins/import.rb", "lib/zerg_xcode/plugins/irb.rb", "lib/zerg_xcode/plugins/ls.rb", "lib/zerg_xcode/plugins/lstargets.rb", "lib/zerg_xcode/plugins/retarget.rb", "lib/zerg_xcode/shortcuts.rb"]
15
+ s.files = ["CHANGELOG", "LICENSE", "Manifest", "README.textile", "RUBYFORGE", "Rakefile", "bin/zerg-xcode", "lib/zerg_xcode.rb", "lib/zerg_xcode/builder/runner.rb", "lib/zerg_xcode/builder/sdks.rb", "lib/zerg_xcode/file_format/archiver.rb", "lib/zerg_xcode/file_format/encoder.rb", "lib/zerg_xcode/file_format/lexer.rb", "lib/zerg_xcode/file_format/parser.rb", "lib/zerg_xcode/file_format/paths.rb", "lib/zerg_xcode/objects/pbx_build_file.rb", "lib/zerg_xcode/objects/pbx_build_phase.rb", "lib/zerg_xcode/objects/pbx_container_item_proxy.rb", "lib/zerg_xcode/objects/pbx_group.rb", "lib/zerg_xcode/objects/pbx_native_target.rb", "lib/zerg_xcode/objects/pbx_project.rb", "lib/zerg_xcode/objects/pbx_target_dependency.rb", "lib/zerg_xcode/objects/xc_configuration_list.rb", "lib/zerg_xcode/objects/xcode_object.rb", "lib/zerg_xcode/plugins/addlibrary.rb", "lib/zerg_xcode/plugins/core/core.rb", "lib/zerg_xcode/plugins/help.rb", "lib/zerg_xcode/plugins/import.rb", "lib/zerg_xcode/plugins/irb.rb", "lib/zerg_xcode/plugins/ls.rb", "lib/zerg_xcode/plugins/lstargets.rb", "lib/zerg_xcode/plugins/retarget.rb", "lib/zerg_xcode/shortcuts.rb", "test/builder/runner_test.rb", "test/builder/sdk_test.rb", "test/file_format/archiver_test.rb", "test/file_format/encoder_test.rb", "test/file_format/lexer_test.rb", "test/file_format/parser_test.rb", "test/file_format/path_test.rb", "test/fixtures/ClosedLib/ClosedLib.xcodeproj/project.pbxproj", "test/fixtures/ClosedLib/ClosedLib_Prefix.pch", "test/fixtures/ClosedLib/ClosedNative.c", "test/fixtures/ClosedLib/ClosedNative.h", "test/fixtures/FlatTestApp/FlatTestApp.xcodeproj/project.pbxproj", "test/fixtures/TestApp/TestApp.xcodeproj/project.pbxproj", "test/fixtures/TestApp30.xcodeproj/project.pbxproj", "test/fixtures/TestLib30.xcodeproj/project.pbxproj", "test/fixtures/ZergSupport.xcodeproj/project.pbxproj", "test/fixtures/project.pbxproj", "test/fixtures/project.pbxproj.compat", "test/objects/pbx_build_file_test.rb", "test/objects/pbx_build_phase_test.rb", "test/objects/pbx_container_item_proxy_test.rb", "test/objects/pbx_group_test.rb", "test/objects/pbx_native_target_test.rb", "test/objects/pbx_project_test.rb", "test/objects/pbx_target_dependency_test.rb", "test/objects/xc_configuration_list_test.rb", "test/objects/xcode_object_test.rb", "test/plugins/addlibrary_test.rb", "test/plugins/core/core_test.rb", "test/plugins/helper.rb", "test/plugins/import_test.rb", "test/plugins/irb_test.rb", "test/plugins/ls_test.rb", "test/plugins/lstargets_test.rb", "test/plugins/retarget_test.rb", "test/shortcuts_test.rb", "zerg_xcode.gemspec"]
16
16
  s.homepage = %q{http://www.zergling.net/}
17
17
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Zerg_xcode", "--main", "README.textile"]
18
18
  s.require_paths = ["lib"]
19
19
  s.rubyforge_project = %q{zerglings}
20
- s.rubygems_version = %q{1.3.4}
20
+ s.rubygems_version = %q{1.3.5}
21
21
  s.summary = %q{Automated modifications for Xcode project files}
22
- s.test_files = ["test/file_format/archiver_test.rb", "test/file_format/encoder_test.rb", "test/file_format/lexer_test.rb", "test/file_format/parser_test.rb", "test/file_format/path_test.rb", "test/objects/pbx_build_file_test.rb", "test/objects/pbx_build_phase_test.rb", "test/objects/pbx_container_item_proxy_test.rb", "test/objects/pbx_group_test.rb", "test/objects/pbx_native_target_test.rb", "test/objects/pbx_project_test.rb", "test/objects/pbx_target_dependency_test.rb", "test/objects/xc_configuration_list_test.rb", "test/objects/xcode_object_test.rb", "test/plugins/addlibrary_test.rb", "test/plugins/core/core_test.rb", "test/plugins/import_test.rb", "test/plugins/irb_test.rb", "test/plugins/ls_test.rb", "test/plugins/lstargets_test.rb", "test/plugins/retarget_test.rb", "test/shortcuts_test.rb"]
22
+ s.test_files = ["test/builder/runner_test.rb", "test/builder/sdk_test.rb", "test/file_format/archiver_test.rb", "test/file_format/encoder_test.rb", "test/file_format/lexer_test.rb", "test/file_format/parser_test.rb", "test/file_format/path_test.rb", "test/objects/pbx_build_file_test.rb", "test/objects/pbx_build_phase_test.rb", "test/objects/pbx_container_item_proxy_test.rb", "test/objects/pbx_group_test.rb", "test/objects/pbx_native_target_test.rb", "test/objects/pbx_project_test.rb", "test/objects/pbx_target_dependency_test.rb", "test/objects/xc_configuration_list_test.rb", "test/objects/xcode_object_test.rb", "test/plugins/addlibrary_test.rb", "test/plugins/core/core_test.rb", "test/plugins/import_test.rb", "test/plugins/irb_test.rb", "test/plugins/ls_test.rb", "test/plugins/lstargets_test.rb", "test/plugins/retarget_test.rb", "test/shortcuts_test.rb"]
23
23
 
24
24
  if s.respond_to? :specification_version then
25
25
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zerg_xcode
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Costan
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-07-05 00:00:00 -04:00
12
+ date: 2009-12-06 00:00:00 -05:00
13
13
  default_executable: bin/zerg-xcode
14
14
  dependencies: []
15
15
 
@@ -20,8 +20,13 @@ executables:
20
20
  extensions: []
21
21
 
22
22
  extra_rdoc_files:
23
- - bin/zerg-xcode
24
23
  - CHANGELOG
24
+ - LICENSE
25
+ - README.textile
26
+ - bin/zerg-xcode
27
+ - lib/zerg_xcode.rb
28
+ - lib/zerg_xcode/builder/runner.rb
29
+ - lib/zerg_xcode/builder/sdks.rb
25
30
  - lib/zerg_xcode/file_format/archiver.rb
26
31
  - lib/zerg_xcode/file_format/encoder.rb
27
32
  - lib/zerg_xcode/file_format/lexer.rb
@@ -45,12 +50,17 @@ extra_rdoc_files:
45
50
  - lib/zerg_xcode/plugins/lstargets.rb
46
51
  - lib/zerg_xcode/plugins/retarget.rb
47
52
  - lib/zerg_xcode/shortcuts.rb
48
- - lib/zerg_xcode.rb
53
+ files:
54
+ - CHANGELOG
49
55
  - LICENSE
56
+ - Manifest
50
57
  - README.textile
51
- files:
58
+ - RUBYFORGE
59
+ - Rakefile
52
60
  - bin/zerg-xcode
53
- - CHANGELOG
61
+ - lib/zerg_xcode.rb
62
+ - lib/zerg_xcode/builder/runner.rb
63
+ - lib/zerg_xcode/builder/sdks.rb
54
64
  - lib/zerg_xcode/file_format/archiver.rb
55
65
  - lib/zerg_xcode/file_format/encoder.rb
56
66
  - lib/zerg_xcode/file_format/lexer.rb
@@ -74,17 +84,24 @@ files:
74
84
  - lib/zerg_xcode/plugins/lstargets.rb
75
85
  - lib/zerg_xcode/plugins/retarget.rb
76
86
  - lib/zerg_xcode/shortcuts.rb
77
- - lib/zerg_xcode.rb
78
- - LICENSE
79
- - Manifest
80
- - Rakefile
81
- - README.textile
82
- - RUBYFORGE
87
+ - test/builder/runner_test.rb
88
+ - test/builder/sdk_test.rb
83
89
  - test/file_format/archiver_test.rb
84
90
  - test/file_format/encoder_test.rb
85
91
  - test/file_format/lexer_test.rb
86
92
  - test/file_format/parser_test.rb
87
93
  - test/file_format/path_test.rb
94
+ - test/fixtures/ClosedLib/ClosedLib.xcodeproj/project.pbxproj
95
+ - test/fixtures/ClosedLib/ClosedLib_Prefix.pch
96
+ - test/fixtures/ClosedLib/ClosedNative.c
97
+ - test/fixtures/ClosedLib/ClosedNative.h
98
+ - test/fixtures/FlatTestApp/FlatTestApp.xcodeproj/project.pbxproj
99
+ - test/fixtures/TestApp/TestApp.xcodeproj/project.pbxproj
100
+ - test/fixtures/TestApp30.xcodeproj/project.pbxproj
101
+ - test/fixtures/TestLib30.xcodeproj/project.pbxproj
102
+ - test/fixtures/ZergSupport.xcodeproj/project.pbxproj
103
+ - test/fixtures/project.pbxproj
104
+ - test/fixtures/project.pbxproj.compat
88
105
  - test/objects/pbx_build_file_test.rb
89
106
  - test/objects/pbx_build_phase_test.rb
90
107
  - test/objects/pbx_container_item_proxy_test.rb
@@ -103,13 +120,6 @@ files:
103
120
  - test/plugins/lstargets_test.rb
104
121
  - test/plugins/retarget_test.rb
105
122
  - test/shortcuts_test.rb
106
- - testdata/FlatTestApp/FlatTestApp.xcodeproj/project.pbxproj
107
- - testdata/project.pbxproj
108
- - testdata/project.pbxproj.compat
109
- - testdata/TestApp/TestApp.xcodeproj/project.pbxproj
110
- - testdata/TestApp30.xcodeproj/project.pbxproj
111
- - testdata/TestLib30.xcodeproj/project.pbxproj
112
- - testdata/ZergSupport.xcodeproj/project.pbxproj
113
123
  - zerg_xcode.gemspec
114
124
  has_rdoc: true
115
125
  homepage: http://www.zergling.net/
@@ -140,11 +150,13 @@ required_rubygems_version: !ruby/object:Gem::Requirement
140
150
  requirements: []
141
151
 
142
152
  rubyforge_project: zerglings
143
- rubygems_version: 1.3.4
153
+ rubygems_version: 1.3.5
144
154
  signing_key:
145
155
  specification_version: 3
146
156
  summary: Automated modifications for Xcode project files
147
157
  test_files:
158
+ - test/builder/runner_test.rb
159
+ - test/builder/sdk_test.rb
148
160
  - test/file_format/archiver_test.rb
149
161
  - test/file_format/encoder_test.rb
150
162
  - test/file_format/lexer_test.rb