capybara-webkit 0.1.4 → 0.1.5
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/README.md +5 -1
- data/capybara-webkit.gemspec +2 -1
- metadata +17 -3
data/README.md
CHANGED
@@ -10,7 +10,11 @@ capybara-webkit depends on a WebKit implementation from Qt, a cross-platform dev
|
|
10
10
|
|
11
11
|
* [Download Qt](http://qt.nokia.com/downloads/downloads)
|
12
12
|
|
13
|
-
If you're on
|
13
|
+
If you're on OS X, the installer at the above link will set up everything you need.
|
14
|
+
|
15
|
+
If you're on Ubuntu, you can install the libqt4-dev package.
|
16
|
+
|
17
|
+
On Linux platforms, capybara-webkit requires an X server to run, although it doesn't create any visible windows. Xvfb works fine for this.
|
14
18
|
|
15
19
|
Usage
|
16
20
|
-----
|
data/capybara-webkit.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "capybara-webkit"
|
3
|
-
s.version = "0.1.
|
3
|
+
s.version = "0.1.5"
|
4
4
|
s.authors = ["thoughtbot", "Joe Ferris", "Jason Morrison", "Tristan Dunn"]
|
5
5
|
s.email = "support@thoughtbot.com"
|
6
6
|
s.files = `git ls-files`.split("\n")
|
@@ -10,6 +10,7 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.rubygems_version = "1.3.5"
|
11
11
|
s.summary = "Headless Webkit driver for Capybara"
|
12
12
|
s.add_runtime_dependency "capybara", "~> 0.4.1"
|
13
|
+
s.add_runtime_dependency "rake"
|
13
14
|
s.extensions = "extconf.rb"
|
14
15
|
end
|
15
16
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capybara-webkit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 17
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 5
|
10
|
+
version: 0.1.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- thoughtbot
|
@@ -37,6 +37,20 @@ dependencies:
|
|
37
37
|
version_requirements: *id001
|
38
38
|
name: capybara
|
39
39
|
prerelease: false
|
40
|
+
- !ruby/object:Gem::Dependency
|
41
|
+
type: :runtime
|
42
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
hash: 3
|
48
|
+
segments:
|
49
|
+
- 0
|
50
|
+
version: "0"
|
51
|
+
version_requirements: *id002
|
52
|
+
name: rake
|
53
|
+
prerelease: false
|
40
54
|
description:
|
41
55
|
email: support@thoughtbot.com
|
42
56
|
executables: []
|