Skip to content

Commit

Permalink
Remove warnings when Mac-only static libraries are included, add a co…
Browse files Browse the repository at this point in the history
…uple of small symbiote comments
  • Loading branch information
dlongmuir committed Mar 24, 2013
1 parent 29ce103 commit c7451dd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
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.

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

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
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@

Motion::Project::App.setup do |app|
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'
end
end
Expand Down

0 comments on commit c7451dd

Please sign in to comment.