capybara-webkit 0.1.3 → 0.1.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.
Files changed (3) hide show
  1. data/Rakefile +2 -2
  2. data/capybara-webkit.gemspec +1 -1
  3. metadata +3 -3
data/Rakefile CHANGED
@@ -24,9 +24,9 @@ task :build => :qmake do
24
24
  FileUtils.mkdir("bin") unless File.directory?("bin")
25
25
 
26
26
  if File.exist?("src/webkit_server.app")
27
- FileUtils.cp("src/webkit_server.app/Contents/MacOS/webkit_server", "bin")
27
+ FileUtils.cp("src/webkit_server.app/Contents/MacOS/webkit_server", "bin", :preserve => true)
28
28
  else
29
- FileUtils.cp("src/webkit_server", "bin")
29
+ FileUtils.cp("src/webkit_server", "bin", :preserve => true)
30
30
  end
31
31
  end
32
32
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "capybara-webkit"
3
- s.version = "0.1.3"
3
+ s.version = "0.1.4"
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")
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: 29
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 3
10
- version: 0.1.3
9
+ - 4
10
+ version: 0.1.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - thoughtbot