spassky 0.1.0 → 0.1.1

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/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
1
  tmp
2
2
  *.swp
3
3
  pkg/*
4
+ wurfl/*
data/Gemfile.lock CHANGED
@@ -6,10 +6,13 @@ PATH
6
6
  rainbow
7
7
  rest-client
8
8
  sinatra
9
+ wurfl-lite
9
10
 
10
11
  GEM
11
12
  remote: http://rubygems.org/
12
13
  specs:
14
+ amatch (0.2.7)
15
+ spruz (~> 0.2)
13
16
  aruba (0.4.3)
14
17
  bcat (>= 0.6.1)
15
18
  childprocess (>= 0.1.9)
@@ -35,9 +38,11 @@ GEM
35
38
  json (>= 1.4.6)
36
39
  term-ansicolor (>= 1.0.5)
37
40
  diff-lcs (1.1.2)
41
+ fakefs (0.3.2)
38
42
  ffi (1.0.9)
39
43
  gherkin (2.4.5)
40
44
  json (>= 1.4.6)
45
+ hpricot (0.8.4)
41
46
  json (1.5.3)
42
47
  json_pure (1.5.3)
43
48
  mime-types (1.16)
@@ -67,8 +72,12 @@ GEM
67
72
  sinatra (1.2.6)
68
73
  rack (~> 1.1)
69
74
  tilt (< 2.0, >= 1.2.2)
75
+ spruz (0.2.13)
70
76
  term-ansicolor (1.0.5)
71
77
  tilt (1.3.2)
78
+ wurfl-lite (1.1.0)
79
+ amatch (>= 0.2.5)
80
+ hpricot (!= 0.8.3, >= 0.8.2)
72
81
  xpath (0.1.4)
73
82
  nokogiri (~> 1.3)
74
83
 
@@ -79,6 +88,7 @@ DEPENDENCIES
79
88
  aruba
80
89
  capybara
81
90
  cucumber
91
+ fakefs
82
92
  rake
83
93
  rspec
84
94
  spassky!
@@ -0,0 +1,11 @@
1
+ QUnit.done = function(result) {
2
+ if (result.failed > 0) {
3
+ assert(false, "qunit failed");
4
+ } else {
5
+ assert(true, "qunit passed");
6
+ }
7
+ };
8
+
9
+ test("it fails", function() {
10
+ ok(false, "it failed");
11
+ });