calabash-android 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1,5 @@
1
- 1.0.0: Initial calabash release
1
+ 0.0.7: Output from the ant build and from running Cucumber is now in sync.
2
+ That means that you can now trust that the output you see is actually
3
+ the most recent output from ant or Cucumber.
4
+
5
+ 0.0.6: Introducing the CHANGES file
@@ -24,6 +24,7 @@ def calabash_build(args)
24
24
  "-Dkey.alias=#{@settings["keystore_alias"]}",
25
25
  "-Dkey.alias.password=#{@settings["keystore_alias_password"]}",
26
26
  ]
27
+ STDOUT.sync = true
27
28
  IO.popen(args.join(" ")) do |io|
28
29
  io.each { |s| print s }
29
30
  end
@@ -24,7 +24,7 @@ def print_usage
24
24
  environment and key store to user for signing.
25
25
  build
26
26
  builds the test server that will be used when testing the app.
27
- You need to run this command everytime you make changes to app.
27
+ You need to run this command every time you make changes to the app.
28
28
  run
29
29
  runs Cucumber in the current folder with the enviroment needed.
30
30
  EOF
@@ -10,9 +10,8 @@ def calabash_run(args)
10
10
  "TEST_APP_PATH=features/support/Test.apk "\
11
11
  "TEST_SERVER_PORT=34777"
12
12
 
13
-
13
+ STDOUT.sync = true
14
14
  cmd = "cucumber #{ARGV.join(" ")} #{env}"
15
- puts cmd
16
15
  IO.popen(cmd) do |io|
17
16
  io.each { |s| print s }
18
17
  end
@@ -17,6 +17,6 @@ Usage: calabash-android <command-name> [parameters]
17
17
  environment and key store to user for signing.
18
18
 
19
19
  build builds the test server that will be used when testing the app.
20
- You need to run this command everytime you make changes to app.
20
+ You need to run this command every time you make changes to the app.
21
21
 
22
22
  run runs Cucumber in the current folder with the enviroment needed.
@@ -1,6 +1,6 @@
1
1
  module Calabash
2
2
  module Android
3
- VERSION = "0.0.6"
4
- FRAMEWORK_VERSION = "0.0.6"
3
+ VERSION = "0.0.7"
4
+ FRAMEWORK_VERSION = "0.0.7"
5
5
  end
6
6
  end
@@ -36,7 +36,6 @@ public class CalabashChromeClient extends WebChromeClient {
36
36
 
37
37
  @Override
38
38
  public boolean onJsPrompt(WebView view, String url, String message, String defaultValue, JsPromptResult r) {
39
- System.out.println("message: " + message);
40
39
  if (message != null && message.startsWith("calabash:")) {
41
40
  r.confirm("CALABASH_ACK");
42
41
  System.out.println("onJsPrompt: " + message);
metadata CHANGED
@@ -1,13 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calabash-android
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
5
4
  prerelease:
6
- segments:
7
- - 0
8
- - 0
9
- - 6
10
- version: 0.0.6
5
+ version: 0.0.7
11
6
  platform: ruby
12
7
  authors:
13
8
  - Jonas Maturana Larsen
@@ -15,7 +10,8 @@ autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
12
 
18
- date: 2012-05-04 00:00:00 Z
13
+ date: 2012-05-16 00:00:00 -03:00
14
+ default_executable:
19
15
  dependencies:
20
16
  - !ruby/object:Gem::Dependency
21
17
  name: cucumber
@@ -25,9 +21,6 @@ dependencies:
25
21
  requirements:
26
22
  - - ">="
27
23
  - !ruby/object:Gem::Version
28
- hash: 3
29
- segments:
30
- - 0
31
24
  version: "0"
32
25
  type: :runtime
33
26
  version_requirements: *id001
@@ -39,9 +32,6 @@ dependencies:
39
32
  requirements:
40
33
  - - ">="
41
34
  - !ruby/object:Gem::Version
42
- hash: 3
43
- segments:
44
- - 0
45
35
  version: "0"
46
36
  type: :runtime
47
37
  version_requirements: *id002
@@ -53,9 +43,6 @@ dependencies:
53
43
  requirements:
54
44
  - - ">="
55
45
  - !ruby/object:Gem::Version
56
- hash: 3
57
- segments:
58
- - 0
59
46
  version: "0"
60
47
  type: :runtime
61
48
  version_requirements: *id003
@@ -603,6 +590,7 @@ files:
603
590
  - test-server/instrumentation-backend/src/sh/calaba/org/codehaus/jackson/util/package-info.java
604
591
  - test-server/calabash-js/src/calabash.js
605
592
  - test-server/calabash-js/src/set_text.js
593
+ has_rdoc: true
606
594
  homepage: http://github.com/calabash
607
595
  licenses: []
608
596
 
@@ -616,23 +604,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
616
604
  requirements:
617
605
  - - ">="
618
606
  - !ruby/object:Gem::Version
619
- hash: 3
620
- segments:
621
- - 0
622
607
  version: "0"
623
608
  required_rubygems_version: !ruby/object:Gem::Requirement
624
609
  none: false
625
610
  requirements:
626
611
  - - ">="
627
612
  - !ruby/object:Gem::Version
628
- hash: 3
629
- segments:
630
- - 0
631
613
  version: "0"
632
614
  requirements: []
633
615
 
634
616
  rubyforge_project:
635
- rubygems_version: 1.8.6
617
+ rubygems_version: 1.5.0
636
618
  signing_key:
637
619
  specification_version: 3
638
620
  summary: Client for calabash-android for automated functional testing on Android