tuev 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +1 -1
- data/VERSION +1 -1
- data/lib/tuev/tuev_runner.rb +3 -3
- data/tuev.gemspec +1 -1
- metadata +2 -2
data/Gemfile.lock
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.1
|
data/lib/tuev/tuev_runner.rb
CHANGED
@@ -16,16 +16,16 @@ class QunitRunner
|
|
16
16
|
end
|
17
17
|
|
18
18
|
def split_url
|
19
|
-
@test_file.match(/(
|
19
|
+
@test_file.match(/(.*:\/\/[^\/]+)(.*)$/)
|
20
20
|
end
|
21
21
|
|
22
22
|
# host & path as is needed below ...
|
23
23
|
def host
|
24
|
-
local_file? ? "file://" : split_url[
|
24
|
+
local_file? ? "file://" : split_url[1]
|
25
25
|
end
|
26
26
|
|
27
27
|
def path
|
28
|
-
local_file? ? @test_file : split_url[
|
28
|
+
local_file? ? @test_file : split_url[2]
|
29
29
|
end
|
30
30
|
|
31
31
|
|
data/tuev.gemspec
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: tuev
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.5.
|
5
|
+
version: 0.5.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- kesselborn
|
@@ -154,7 +154,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
154
154
|
requirements:
|
155
155
|
- - ">="
|
156
156
|
- !ruby/object:Gem::Version
|
157
|
-
hash: -
|
157
|
+
hash: -3245969154304492143
|
158
158
|
segments:
|
159
159
|
- 0
|
160
160
|
version: "0"
|