README.md in xcodeproject-0.3.0 vs README.md in xcodeproject-0.3.1
- old
+ new
@@ -68,11 +68,11 @@
Or from the current group:
group.add_group('path/from/current_group')
-To add a directory to the project, you must specify the file path to it:
+To add a directory to the project, you must specify the file path:
data.add_dir('group_path/to/parent', '/file_path/to/dir')
group.add_dir('/file_path/to/dir')
Adding files are same:
@@ -123,10 +123,10 @@
rake example:clean # Cleans the build using the same build settings.
rake example:cleanbuild # Builds the specified target(s) from a clean slate.
Configuring your tasks:
- XcodeProject::Tasks::BuildTask.new(proj) do
+ XcodeProject::Tasks::BuildTask.new(proj) do |t|
t.target = "libexample"
t.configuration = "Release"
end
You can find out more about XcodeBuilder [here][xcodebuilder].