frank-cucumber 0.9.3 → 0.9.4
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.
- data/frank-cucumber.gemspec +2 -1
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/ViewAttributeMapping.plist +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/ajax-loader.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/file.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/folder-closed.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/folder.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/minus.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/plus.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/treeview-black-line.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/treeview-black.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/treeview-default-line.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/treeview-default.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/treeview-famfamfam-line.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/treeview-famfamfam.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/treeview-gray-line.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/treeview-gray.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/treeview-red-line.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/images/treeview-red.gif +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/index.haml +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/index.html +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/jquery-ui.css +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/jquery-ui.min.js +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/jquery.min.js +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/jquery.treeview.css +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/jquery.treeview.js +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/json2.js +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/raphael-min.js +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/symbiote.css +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/symbiote.js +0 -0
- data/{Users/Thoughtworks/git/Frank/gem/frank-skeleton → frank-skeleton}/frank_static_resources.bundle/underscore.js +0 -0
- data/lib/frank-cucumber/cli.rb +5 -0
- data/lib/frank-cucumber/version.rb +1 -1
- metadata +30 -30
data/frank-cucumber.gemspec
CHANGED
@@ -13,8 +13,9 @@ Gem::Specification.new do |s|
|
|
13
13
|
s.description = %q{Use cucumber to test native iOS apps via Frank}
|
14
14
|
|
15
15
|
git_files = `git ls-files`.split("\n")
|
16
|
-
symbiote_files = Dir[File.join(
|
16
|
+
symbiote_files = Dir[File.join('frank-skeleton','frank_static_resources.bundle','**','*')]
|
17
17
|
s.files = git_files+symbiote_files
|
18
|
+
puts s.files.join("\n")
|
18
19
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
19
20
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
20
21
|
s.require_paths = ["lib"]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/frank-cucumber/cli.rb
CHANGED
@@ -66,7 +66,12 @@ module Frank
|
|
66
66
|
end
|
67
67
|
|
68
68
|
desc "launch", "open the Frankified app in the simulator"
|
69
|
+
method_option :debug, :type => :boolean, :default => false
|
69
70
|
def launch
|
71
|
+
$DEBUG = options[:debug]
|
72
|
+
|
73
|
+
puts "debugging" if $DEBUG
|
74
|
+
|
70
75
|
in_root do
|
71
76
|
unless File.exists? frankified_app_dir
|
72
77
|
say "A Frankified version of the app doesn't appear to have been built. Building one now"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: frank-cucumber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -196,35 +196,35 @@ files:
|
|
196
196
|
- test/keyboard_helper_test.rb
|
197
197
|
- test/launcher_test.rb
|
198
198
|
- test/test_helper.rb
|
199
|
-
-
|
200
|
-
-
|
201
|
-
-
|
202
|
-
-
|
203
|
-
-
|
204
|
-
-
|
205
|
-
-
|
206
|
-
-
|
207
|
-
-
|
208
|
-
-
|
209
|
-
-
|
210
|
-
-
|
211
|
-
-
|
212
|
-
-
|
213
|
-
-
|
214
|
-
-
|
215
|
-
-
|
216
|
-
-
|
217
|
-
-
|
218
|
-
-
|
219
|
-
-
|
220
|
-
-
|
221
|
-
-
|
222
|
-
-
|
223
|
-
-
|
224
|
-
-
|
225
|
-
-
|
226
|
-
-
|
227
|
-
-
|
199
|
+
- frank-skeleton/frank_static_resources.bundle/images/ajax-loader.gif
|
200
|
+
- frank-skeleton/frank_static_resources.bundle/images/file.gif
|
201
|
+
- frank-skeleton/frank_static_resources.bundle/images/folder-closed.gif
|
202
|
+
- frank-skeleton/frank_static_resources.bundle/images/folder.gif
|
203
|
+
- frank-skeleton/frank_static_resources.bundle/images/minus.gif
|
204
|
+
- frank-skeleton/frank_static_resources.bundle/images/plus.gif
|
205
|
+
- frank-skeleton/frank_static_resources.bundle/images/treeview-black-line.gif
|
206
|
+
- frank-skeleton/frank_static_resources.bundle/images/treeview-black.gif
|
207
|
+
- frank-skeleton/frank_static_resources.bundle/images/treeview-default-line.gif
|
208
|
+
- frank-skeleton/frank_static_resources.bundle/images/treeview-default.gif
|
209
|
+
- frank-skeleton/frank_static_resources.bundle/images/treeview-famfamfam-line.gif
|
210
|
+
- frank-skeleton/frank_static_resources.bundle/images/treeview-famfamfam.gif
|
211
|
+
- frank-skeleton/frank_static_resources.bundle/images/treeview-gray-line.gif
|
212
|
+
- frank-skeleton/frank_static_resources.bundle/images/treeview-gray.gif
|
213
|
+
- frank-skeleton/frank_static_resources.bundle/images/treeview-red-line.gif
|
214
|
+
- frank-skeleton/frank_static_resources.bundle/images/treeview-red.gif
|
215
|
+
- frank-skeleton/frank_static_resources.bundle/index.haml
|
216
|
+
- frank-skeleton/frank_static_resources.bundle/index.html
|
217
|
+
- frank-skeleton/frank_static_resources.bundle/jquery-ui.css
|
218
|
+
- frank-skeleton/frank_static_resources.bundle/jquery-ui.min.js
|
219
|
+
- frank-skeleton/frank_static_resources.bundle/jquery.min.js
|
220
|
+
- frank-skeleton/frank_static_resources.bundle/jquery.treeview.css
|
221
|
+
- frank-skeleton/frank_static_resources.bundle/jquery.treeview.js
|
222
|
+
- frank-skeleton/frank_static_resources.bundle/json2.js
|
223
|
+
- frank-skeleton/frank_static_resources.bundle/raphael-min.js
|
224
|
+
- frank-skeleton/frank_static_resources.bundle/symbiote.css
|
225
|
+
- frank-skeleton/frank_static_resources.bundle/symbiote.js
|
226
|
+
- frank-skeleton/frank_static_resources.bundle/underscore.js
|
227
|
+
- frank-skeleton/frank_static_resources.bundle/ViewAttributeMapping.plist
|
228
228
|
homepage: http://rubygems.org/gems/frank-cucumber
|
229
229
|
licenses: []
|
230
230
|
post_install_message:
|