stella 0.8.5.001 → 0.8.5.002
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/CHANGES.txt +5 -0
- data/VERSION.yml +1 -1
- data/lib/stella/testplan.rb +2 -2
- data/stella.gemspec +2 -2
- metadata +2 -2
data/CHANGES.txt
CHANGED
|
@@ -10,6 +10,11 @@ STELLA, CHANGES
|
|
|
10
10
|
* TODO: request block conditions.
|
|
11
11
|
* TODO: process templates for calls to set in get blocks
|
|
12
12
|
|
|
13
|
+
#### 0.8.6 (2010-04-??) ###############################
|
|
14
|
+
|
|
15
|
+
* ADDED: Stella::Testplan#userid
|
|
16
|
+
* CHANGE: Stella::Testplan#userid now used in digest calculation.
|
|
17
|
+
|
|
13
18
|
|
|
14
19
|
#### 0.8.5 (2010-03-27) ###############################
|
|
15
20
|
|
data/VERSION.yml
CHANGED
data/lib/stella/testplan.rb
CHANGED
|
@@ -33,13 +33,13 @@ class Testplan < Storable
|
|
|
33
33
|
attic :description
|
|
34
34
|
|
|
35
35
|
field :id => String, &gibbler_id_processor
|
|
36
|
-
|
|
36
|
+
field :userid => String
|
|
37
37
|
field :usecases => Array
|
|
38
38
|
field :description => String
|
|
39
39
|
#field :resources
|
|
40
40
|
|
|
41
41
|
# TODO: Add Stellar::TOKEN to the calculation
|
|
42
|
-
gibbler :usecases
|
|
42
|
+
gibbler :usecases, :userid
|
|
43
43
|
|
|
44
44
|
def initialize(*uris)
|
|
45
45
|
uris.flatten!
|
data/stella.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{stella}
|
|
8
|
-
s.version = "0.8.5.
|
|
8
|
+
s.version = "0.8.5.002"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Delano Mandelbaum"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-04-14}
|
|
13
13
|
s.default_executable = %q{stella}
|
|
14
14
|
s.description = %q{Blame Stella for breaking your web application!}
|
|
15
15
|
s.email = %q{delano@solutious.com}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stella
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.5.
|
|
4
|
+
version: 0.8.5.002
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Delano Mandelbaum
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2010-
|
|
12
|
+
date: 2010-04-14 00:00:00 -04:00
|
|
13
13
|
default_executable: stella
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|