Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Mac libs warnings #1

Merged
merged 1 commit into from Mar 25, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Expand Up @@ -34,8 +34,12 @@ Before using ```rake frank:run``` you'll need some feature files to start. Use `


Symbiote is a web-based tool for inspecting the state of your native iOS application. See [the Symbiote site](https://github.com/TestingWithFrank/symbiote) for more details. Symbiote is a web-based tool for inspecting the state of your native iOS application. See [the Symbiote site](https://github.com/TestingWithFrank/symbiote) for more details.


Run ```rake frank:symbiote``` to enable symbiote in the simulator, and visit http://localhost:37265 to browse your app. Run ```rake frank:symbiote``` to enable symbiote in the simulator, and
visit http://localhost:37265 (or run ```frank inspect```) to browse your app.


Symbiote will crash if your application doesn't have a view, so you will
have to try it out with more than just a ```motion create``` app.

#### Versioning #### Versioning


The versions of this gem will track the version of frank-cucumber, so that 1.1.8.* requires frank-cucumber 1.1.8. The versions of this gem will track the version of frank-cucumber, so that 1.1.8.* requires frank-cucumber 1.1.8.
Expand Down
3 changes: 2 additions & 1 deletion lib/motion/project/frank.rb
Expand Up @@ -8,7 +8,8 @@


Motion::Project::App.setup do |app| Motion::Project::App.setup do |app|
app.development do app.development do
app.vendor_project(frank_skeleton, :static) app.vendor_project(frank_skeleton, :static,
:products => Dir.entries(frank_skeleton).select { |fnames| /.a$/ =~ fnames && !(/Mac.a$/ =~ fnames) })
app.frameworks << 'CFNetwork' app.frameworks << 'CFNetwork'
end end
end end
Expand Down