motion-frank 1.1.8.1 → 1.1.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/README.md +5 -1
  2. data/lib/motion/project/frank.rb +2 -1
  3. metadata +2 -2
data/README.md CHANGED
@@ -34,8 +34,12 @@ Before using ```rake frank:run``` you'll need some feature files to start. Use `
34
34
 
35
35
  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.
36
36
 
37
- Run ```rake frank:symbiote``` to enable symbiote in the simulator, and visit http://localhost:37265 to browse your app.
37
+ Run ```rake frank:symbiote``` to enable symbiote in the simulator, and
38
+ visit http://localhost:37265 (or run ```frank inspect```) to browse your app.
38
39
 
40
+ Symbiote will crash if your application doesn't have a view, so you will
41
+ have to try it out with more than just a ```motion create``` app.
42
+
39
43
  #### Versioning
40
44
 
41
45
  The versions of this gem will track the version of frank-cucumber, so that 1.1.8.* requires frank-cucumber 1.1.8.
@@ -8,7 +8,8 @@ frank_skeleton = File.join(Gem.loaded_specs['frank-cucumber'].full_gem_path, 'fr
8
8
 
9
9
  Motion::Project::App.setup do |app|
10
10
  app.development do
11
- app.vendor_project(frank_skeleton, :static)
11
+ app.vendor_project(frank_skeleton, :static,
12
+ :products => Dir.entries(frank_skeleton).select { |fnames| /.a$/ =~ fnames && !(/Mac.a$/ =~ fnames) })
12
13
  app.frameworks << 'CFNetwork'
13
14
  end
14
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motion-frank
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.8.1
4
+ version: 1.1.8.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-03-19 00:00:00.000000000 Z
12
+ date: 2013-03-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: frank-cucumber