lebowski 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/Manifest.txt +1 -0
- data/Rakefile +3 -5
- data/lib/lebowski/foundation/errors/timeout.rb +9 -0
- data/lib/lebowski/version.rb +1 -1
- metadata +5 -4
data/Manifest.txt
CHANGED
@@ -16,6 +16,7 @@ lib/lebowski/runtime/sprout_core_driver.rb
|
|
16
16
|
lib/lebowski/runtime/object_encoder.rb
|
17
17
|
lib/lebowski/foundation.rb
|
18
18
|
lib/lebowski/foundation/core.rb
|
19
|
+
lib/lebowski/foundation/errors/timeout.rb
|
19
20
|
lib/lebowski/foundation/errors/unexpected_type.rb
|
20
21
|
lib/lebowski/foundation/errors/argument_invalid_type.rb
|
21
22
|
lib/lebowski/foundation/mixins/key_check.rb
|
data/Rakefile
CHANGED
@@ -8,13 +8,11 @@ Hoe.plugin :newgem
|
|
8
8
|
|
9
9
|
$hoe = Hoe.spec 'lebowski' do
|
10
10
|
self.version = Lebowski::VERSION::STRING
|
11
|
-
self.summary =
|
11
|
+
self.summary = Lebowski::VERSION::SUMMARY
|
12
12
|
self.description = <<-DESCRIPTION
|
13
13
|
|
14
|
-
|
15
|
-
|
16
|
-
designed for full feature, integration, and regression testing of a
|
17
|
-
SproutCore application.
|
14
|
+
Lebowski is a test automation framework designed for full feature, integration,
|
15
|
+
and regression testing of SproutCore applications.
|
18
16
|
|
19
17
|
DESCRIPTION
|
20
18
|
|
data/lib/lebowski/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lebowski
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Cohen
|
@@ -52,7 +52,7 @@ dependencies:
|
|
52
52
|
- !ruby/object:Gem::Version
|
53
53
|
version: 2.6.0
|
54
54
|
version:
|
55
|
-
description: " \n
|
55
|
+
description: " \n Lebowski is a test automation framework designed for full feature, integration, \n and regression testing of SproutCore applications.\n \n"
|
56
56
|
email:
|
57
57
|
- michael.lee.cohen@gmail.com
|
58
58
|
executables:
|
@@ -83,6 +83,7 @@ files:
|
|
83
83
|
- lib/lebowski/runtime/object_encoder.rb
|
84
84
|
- lib/lebowski/foundation.rb
|
85
85
|
- lib/lebowski/foundation/core.rb
|
86
|
+
- lib/lebowski/foundation/errors/timeout.rb
|
86
87
|
- lib/lebowski/foundation/errors/unexpected_type.rb
|
87
88
|
- lib/lebowski/foundation/errors/argument_invalid_type.rb
|
88
89
|
- lib/lebowski/foundation/mixins/key_check.rb
|
@@ -156,7 +157,7 @@ licenses: []
|
|
156
157
|
post_install_message: |
|
157
158
|
**************************************************
|
158
159
|
|
159
|
-
Thank you for installing lebowski-0.1.
|
160
|
+
Thank you for installing lebowski-0.1.1
|
160
161
|
|
161
162
|
Please be sure to read the README.md and History.md
|
162
163
|
for useful information on how to use this framework
|
@@ -193,6 +194,6 @@ rubyforge_project: lebowski
|
|
193
194
|
rubygems_version: 1.3.4
|
194
195
|
signing_key:
|
195
196
|
specification_version: 3
|
196
|
-
summary:
|
197
|
+
summary: lebowski 0.1.1
|
197
198
|
test_files: []
|
198
199
|
|