lebowski 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
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 = "A feature and integration test automation framework for SproutCore applications"
11
+ self.summary = Lebowski::VERSION::SUMMARY
12
12
  self.description = <<-DESCRIPTION
13
13
 
14
- Compared to unit testing framework that are perfect for testing individual
15
- objects and functions, Lebowski is an automated test framework
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
 
@@ -0,0 +1,9 @@
1
+ module Lebowski
2
+ module Foundation
3
+
4
+ class TimeoutError < Exception
5
+
6
+ end
7
+
8
+ end
9
+ end
@@ -7,7 +7,7 @@ module Lebowski # :nodoc:
7
7
  module VERSION # :nodoc:
8
8
  MAJOR = 0
9
9
  MINOR = 1
10
- TINY = 0
10
+ TINY = 1
11
11
  PRE = nil
12
12
 
13
13
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
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.0
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 Compared to unit testing framework that are perfect for testing individual \n objects and functions, Lebowski is an automated test framework \n designed for full feature, integration, and regression testing of a\n SproutCore application.\n \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.0
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: A feature and integration test automation framework for SproutCore applications
197
+ summary: lebowski 0.1.1
197
198
  test_files: []
198
199