rubotium 0.0.7 → 0.0.17

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubotium
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Slawomir Smiechura
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-04 00:00:00.000000000 Z
11
+ date: 2015-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.5'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.5'
27
27
  - !ruby/object:Gem::Dependency
@@ -58,40 +58,26 @@ dependencies:
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 2.14.1
61
+ version: 3.2.0
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
- version: 2.14.1
69
- - !ruby/object:Gem::Dependency
70
- name: rspec-mocks
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - '>='
74
- - !ruby/object:Gem::Version
75
- version: '0'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - '>='
81
- - !ruby/object:Gem::Version
82
- version: '0'
68
+ version: 3.2.0
83
69
  - !ruby/object:Gem::Dependency
84
70
  name: rake
85
71
  requirement: !ruby/object:Gem::Requirement
86
72
  requirements:
87
- - - '>='
73
+ - - ">="
88
74
  - !ruby/object:Gem::Version
89
75
  version: '0'
90
76
  type: :development
91
77
  prerelease: false
92
78
  version_requirements: !ruby/object:Gem::Requirement
93
79
  requirements:
94
- - - '>='
80
+ - - ">="
95
81
  - !ruby/object:Gem::Version
96
82
  version: '0'
97
83
  - !ruby/object:Gem::Dependency
@@ -136,20 +122,6 @@ dependencies:
136
122
  - - '='
137
123
  - !ruby/object:Gem::Version
138
124
  version: 0.9.2
139
- - !ruby/object:Gem::Dependency
140
- name: dex2jar
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - '='
144
- - !ruby/object:Gem::Version
145
- version: 0.0.6
146
- type: :runtime
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - '='
151
- - !ruby/object:Gem::Version
152
- version: 0.0.6
153
125
  description: This gem allows to run Robotium tests in parallel on multiple devices
154
126
  email:
155
127
  - ssmiech@gmail.com
@@ -158,7 +130,8 @@ executables:
158
130
  extensions: []
159
131
  extra_rdoc_files: []
160
132
  files:
161
- - .gitignore
133
+ - ".gitignore"
134
+ - ".travis.yml"
162
135
  - Gemfile
163
136
  - LICENSE.txt
164
137
  - README.md
@@ -170,8 +143,10 @@ files:
170
143
  - lib/rubotium/adb/commands/command.rb
171
144
  - lib/rubotium/adb/commands/install_command.rb
172
145
  - lib/rubotium/adb/commands/instrument_command.rb
146
+ - lib/rubotium/adb/commands/logcat_command.rb
173
147
  - lib/rubotium/adb/commands/memory_command.rb
174
148
  - lib/rubotium/adb/commands/pull_command.rb
149
+ - lib/rubotium/adb/commands/push_command.rb
175
150
  - lib/rubotium/adb/commands/shell_command.rb
176
151
  - lib/rubotium/adb/commands/uninstall_command.rb
177
152
  - lib/rubotium/adb/devices.rb
@@ -182,16 +157,21 @@ files:
182
157
  - lib/rubotium/adb/shell.rb
183
158
  - lib/rubotium/adb/test_result_parser.rb
184
159
  - lib/rubotium/apk.rb
160
+ - lib/rubotium/apk/aapt.rb
185
161
  - lib/rubotium/apk/android_apk.rb
186
162
  - lib/rubotium/cmd.rb
187
163
  - lib/rubotium/device.rb
188
164
  - lib/rubotium/devices.rb
165
+ - lib/rubotium/formatters/html_formatter.css
166
+ - lib/rubotium/formatters/html_formatter.rb
189
167
  - lib/rubotium/formatters/junit_formatter.rb
190
168
  - lib/rubotium/memory.rb
191
169
  - lib/rubotium/memory/data_point.rb
192
170
  - lib/rubotium/memory/monitor.rb
193
171
  - lib/rubotium/package.rb
194
172
  - lib/rubotium/runnable_test.rb
173
+ - lib/rubotium/screencast.rb
174
+ - lib/rubotium/screencast/recorder.rb
195
175
  - lib/rubotium/test_cases_reader.rb
196
176
  - lib/rubotium/test_result.rb
197
177
  - lib/rubotium/test_results.rb
@@ -208,6 +188,7 @@ files:
208
188
  - spec/lib/rubotium/adb/adb_devices_spec.rb
209
189
  - spec/lib/rubotium/adb/adb_result_parser_spec.rb
210
190
  - spec/lib/rubotium/adb/adb_shell_spec.rb
191
+ - spec/lib/rubotium/adb/commands/command_spec.rb
211
192
  - spec/lib/rubotium/adb/parsers/procrank_spec.rb
212
193
  - spec/lib/rubotium/adb/parsers/single_test_result_parser_spec.rb
213
194
  - spec/lib/rubotium/adb/parsers/test_results_parser_spec.rb
@@ -235,17 +216,17 @@ require_paths:
235
216
  - lib
236
217
  required_ruby_version: !ruby/object:Gem::Requirement
237
218
  requirements:
238
- - - '>='
219
+ - - ">="
239
220
  - !ruby/object:Gem::Version
240
221
  version: '0'
241
222
  required_rubygems_version: !ruby/object:Gem::Requirement
242
223
  requirements:
243
- - - '>='
224
+ - - ">="
244
225
  - !ruby/object:Gem::Version
245
226
  version: '0'
246
227
  requirements: []
247
228
  rubyforge_project:
248
- rubygems_version: 2.2.2
229
+ rubygems_version: 2.4.6
249
230
  signing_key:
250
231
  specification_version: 4
251
232
  summary: Run your Robotium tests with ease
@@ -259,6 +240,7 @@ test_files:
259
240
  - spec/lib/rubotium/adb/adb_devices_spec.rb
260
241
  - spec/lib/rubotium/adb/adb_result_parser_spec.rb
261
242
  - spec/lib/rubotium/adb/adb_shell_spec.rb
243
+ - spec/lib/rubotium/adb/commands/command_spec.rb
262
244
  - spec/lib/rubotium/adb/parsers/procrank_spec.rb
263
245
  - spec/lib/rubotium/adb/parsers/single_test_result_parser_spec.rb
264
246
  - spec/lib/rubotium/adb/parsers/test_results_parser_spec.rb