symbiont 0.14.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/symbiont/version.rb +1 -1
- data/lib/symbiont.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9cfaf815aa4e5d2e137a959e075c008951d41982
|
4
|
+
data.tar.gz: 42e72aa8b6a3f1cc15ddfbb549de23e93b223da2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed69a62157cfe29f2ba6cb9512778959bca07147f663453e8be8a2923b83a6c963d6350dae35938ec960e22705347dcfa9d905b76f37c90d804f8dffcd8482a4
|
7
|
+
data.tar.gz: 29cd1a724214ee35954490f305a31446412840bf1fe70d1328944d060efe135777f8d7cd66e0b06771e804759838196e4749a3534b6fdfd7b39718e3c311f24a
|
data/README.md
CHANGED
@@ -45,7 +45,7 @@ You can also install Symbiont just as you would any other gem:
|
|
45
45
|
|
46
46
|
To learn how to use the framework, you can check out my [blog posts on Symbiont](http://testerstories.com/category/symbiont/) and for the most up to date information, you can check out the [Symbiont Wiki](https://github.com/jnyman/symbiont/wiki).
|
47
47
|
|
48
|
-
You can check out the [Symbiont test script](https://github.com/jnyman/symbiont/blob/master/test/symbiont-script.rb) for an idea of how the library can be interacted with. Do note that the test script requires a local copy of [
|
48
|
+
You can check out the [Symbiont test script](https://github.com/jnyman/symbiont/blob/master/test/symbiont-script.rb) for an idea of how the library can be interacted with. Do note that the test script requires a local copy of [Symbiote](https://github.com/jnyman/symbiote) to be running. To execute the test script:
|
49
49
|
|
50
50
|
$ rake test:script
|
51
51
|
|
data/lib/symbiont/version.rb
CHANGED
data/lib/symbiont.rb
CHANGED
@@ -66,8 +66,8 @@ Selenium-WebDriver: #{Gem.loaded_specs['selenium-webdriver'].version}
|
|
66
66
|
initialize_activity if respond_to?(:initialize_activity)
|
67
67
|
end
|
68
68
|
|
69
|
-
def self.set_browser(app = :firefox)
|
70
|
-
@browser = Watir::Browser.new(app)
|
69
|
+
def self.set_browser(app = :firefox, *args)
|
70
|
+
@browser = Watir::Browser.new(app, *args)
|
71
71
|
Symbiont.browser = @browser
|
72
72
|
end
|
73
73
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: symbiont
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeff Nyman
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-10-
|
11
|
+
date: 2015-10-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -211,7 +211,7 @@ licenses:
|
|
211
211
|
- MIT
|
212
212
|
metadata: {}
|
213
213
|
post_install_message: "\n(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)\n\n
|
214
|
-
\ Symbiont 0.
|
214
|
+
\ Symbiont 1.0.0 has been installed.\n\n(::) (::) (::) (::) (::) (::) (::) (::)
|
215
215
|
(::) (::) (::) (::)\n "
|
216
216
|
rdoc_options: []
|
217
217
|
require_paths:
|