lesspainful 0.9.12 → 0.9.13
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/Gemfile.lock +2 -2
- data/bin/lesspainful +11 -2
- data/lib/version.rb +1 -1
- metadata +2 -3
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
lesspainful (0.9.
|
|
4
|
+
lesspainful (0.9.12)
|
|
5
5
|
bundler (~> 1.2)
|
|
6
6
|
json
|
|
7
7
|
rest-client
|
|
@@ -10,7 +10,7 @@ PATH
|
|
|
10
10
|
GEM
|
|
11
11
|
remote: http://rubygems.org/
|
|
12
12
|
specs:
|
|
13
|
-
json (1.7.
|
|
13
|
+
json (1.7.6)
|
|
14
14
|
mime-types (1.19)
|
|
15
15
|
rest-client (1.6.7)
|
|
16
16
|
mime-types (>= 1.16)
|
data/bin/lesspainful
CHANGED
|
@@ -79,8 +79,16 @@ def all_files
|
|
|
79
79
|
dir = File.join(dir,File::Separator)
|
|
80
80
|
end
|
|
81
81
|
|
|
82
|
-
|
|
83
|
-
files
|
|
82
|
+
|
|
83
|
+
files = Dir.glob(File.join("#{dir}features","**","*"))
|
|
84
|
+
|
|
85
|
+
if File.directory?("#{dir}playback")
|
|
86
|
+
files += Dir.glob(File.join("#{dir}playback","*"))
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
files += Dir.glob(File.join("#{workspace}vendor","cache","*"))
|
|
91
|
+
|
|
84
92
|
if workspace and workspace.strip != ""
|
|
85
93
|
files += Dir.glob("#{workspace}Gemfile")
|
|
86
94
|
files += Dir.glob("#{workspace}Gemfile.lock")
|
|
@@ -89,6 +97,7 @@ def all_files
|
|
|
89
97
|
if is_android?
|
|
90
98
|
files << test_server_path
|
|
91
99
|
end
|
|
100
|
+
p files
|
|
92
101
|
{:feature_prefix => dir, :workspace_prefix => workspace, :files => files.find_all { |file_or_dir| File.file? file_or_dir }}
|
|
93
102
|
end
|
|
94
103
|
|
data/lib/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lesspainful
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.13
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-02-04 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -133,4 +133,3 @@ signing_key:
|
|
|
133
133
|
specification_version: 3
|
|
134
134
|
summary: Client for uploading calabash test to www.lesspainful.com
|
|
135
135
|
test_files: []
|
|
136
|
-
has_rdoc:
|