jasmine-headless-webkit-firstbanco 0.9.0.rc.4 → 0.9.0.rc.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MzhjZTQxNThjODQ2YWRhYzYzMGU3MmRmMDliMjM1MmY1Zjg1N2RlZQ==
4
+ ZTIyNDExMDUwMmUzNDI3NzM3ODIyODA0M2UwYWZlZDVlYTZiNGU3OQ==
5
5
  data.tar.gz: !binary |-
6
- NzYwZGQ3YWQ2N2UyMmE3OGQ2NGY1YzQyNTBjMWYzYzkxNjNkYTcyOQ==
6
+ NjcyYWQ2MmMyOTEzNGYxNzE0ZjcyODQ3ZjU3YjU3OThmMzcyNDA4YQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MjE2MzQ5MzBkMzI5ZGFlNTE4MWNkNWU4MGYyMTUwMzg5YmE2NWRlNTU5NzRm
10
- NzM2Y2ExZWMwNjI3ZTljYmRhOTEzNTYzNDFkNzI1NTc0ZjJiODNkZDczOTJj
11
- MmIzNDJkYmQ4NGU5YTJjZDM2MWU1YjY0MDgyNTA0OGM1YTc1OWY=
9
+ NDUyNjJlOGQxNGUzYzQ5ZTNkZjZhZGVlYmYyM2JiOTUwNGQyYTc2MDNmMjBl
10
+ MGM5NmEzNWY2NWI2NTdkODAwZmQzYjMzNWM0NThhYmZlYTBlNTQ0OTIwYjM0
11
+ NDY3ZWMwMDBlMmJhOTQxZGE5NTk4MTZkZWVlZTBjYWY5NTY2ZmE=
12
12
  data.tar.gz: !binary |-
13
- MDAyOTBiZTFiMmNiNTg3NGM5NmQ5OTgzY2JiODE0OTNkMDMyNWM1NDE1YTM4
14
- NzZmZDMyNzg3Njc2MWZkM2RlY2Y2YzgwNjViMTMxMWExM2JjMDE2MTJhYTNi
15
- MjA5YzgyYWI2ZWE1MzJmMmExNWQ4MWVjNDkwNDZiMDA5MmJmZjY=
13
+ ZDQ1N2VlZjhkMWM1OTI5NTc0ODQ4NmRmMThhNDFkOWMxNzNlZjdlNjI3OWY5
14
+ Y2MyMTllODcxYTc3YTkwYjA5YWE4ZGNhMjAyZGUxODA0NDA4MzUyYmVkZmI0
15
+ Nzk3NmE3N2I4ZDYxZDMwMjRhMjQwNTY2NzljMDA4N2JmNjEzMTY=
@@ -1,3 +1,7 @@
1
+ ## 0.9.0.rc.5
2
+
3
+ * Adding native extensions build check
4
+
1
5
  ## 0.7.2
2
6
 
3
7
  * Improved finding of CoffeeScript spec line locations
data/README.md CHANGED
@@ -1,46 +1,3 @@
1
1
  _This is a fork of the original project, from which we have cut our own gem to use with jasmine-coverage_
2
2
 
3
- # Jasmine Headless WebKit runner
4
-
5
- Run your specs at sonic boom speed! No pesky reload button or page rendering slowdowns!
6
-
7
- http://johnbintz.github.com/jasmine-headless-webkit/ has the most up-to-date information on using
8
- this project. You can see the source of that site on the gh-pages branch.
9
-
10
- ## For those who want to hack on the project...
11
-
12
- The best way to get everything running that you need for development and testing is
13
- to use Guard:
14
-
15
- ``` bash
16
- bundle install
17
- bundle exec guard
18
- ... build Qt runner ...
19
- ... compile CoffeeScript to JS ...
20
- ... run RSpec and JHW ...
21
- ```
22
-
23
- ## License
24
-
25
- * Copyright (c) 2011 John Bintz
26
- * Original Qt WebKit runner Copyright (c) 2010 Sencha Inc.
27
- * Jasmine JavaScript library Copyright (c) 2008-2011 Pivotal Labs
28
-
29
- Permission is hereby granted, free of charge, to any person obtaining a copy
30
- of this software and associated documentation files (the "Software"), to deal
31
- in the Software without restriction, including without limitation the rights
32
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
33
- copies of the Software, and to permit persons to whom the Software is
34
- furnished to do so, subject to the following conditions:
35
-
36
- The above copyright notice and this permission notice shall be included in
37
- all copies or substantial portions of the Software.
38
-
39
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
40
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
41
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
42
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
43
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
44
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
45
- THE SOFTWARE.
46
-
3
+ Please see https://github.com/johnbintz/jasmine-headless-webkit for the original.
@@ -7,4 +7,7 @@ require 'qt/qmake'
7
7
  system %{make clean}
8
8
  Qt::Qmake.make!('jasmine-headless-webkit', 'specrunner.pro')
9
9
 
10
+ # The build above can fail silently. So we check for the existence of the binary.
11
+ raise "\n***********************\nGem jasmine-headless-webkit-firstbanco failed to build. Have you got qtmake installed? On linux you need: sudo apt-get install libqtwebkit-dev qt4-dev-tools" unless File.exist?(File.expand_path('../jasmine-webkit-specrunner', __FILE__))
12
+
10
13
  FileUtils.cp File.expand_path('../Makefile.dummy', __FILE__), File.expand_path('../Makefile', __FILE__)
@@ -4,7 +4,7 @@ require "jasmine/headless/version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "jasmine-headless-webkit-firstbanco"
7
- s.version = '0.9.0.rc.4'
7
+ s.version = '0.9.0.rc.5'
8
8
  s.platform = Gem::Platform::RUBY
9
9
  s.authors = ["John Bintz", "Sencha Inc.", "Pivotal Labs"]
10
10
  s.email = ["john@coswellproductions.com"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jasmine-headless-webkit-firstbanco
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0.rc.4
4
+ version: 0.9.0.rc.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Bintz
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-12-17 00:00:00.000000000 Z
13
+ date: 2014-01-11 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: jasmine-core