solutious-stella 0.7.0.001 → 0.7.0.002

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,6 +5,10 @@ STELLA, CHANGES
5
5
 
6
6
  NOTE: Complete rewrite
7
7
 
8
+ * New internal architecture.
9
+ * Improved stability and output for high thread loads.
10
+ * Updated test plan DSL
11
+
8
12
 
9
13
  #### 0.6.0 (2009-03-15) ###############################
10
14
 
@@ -86,9 +86,9 @@ See examples/ for more.
86
86
 
87
87
  Get it in one of the following ways:
88
88
 
89
- * gem install stella
90
- * git clone git://github.com/solutious/stella.git
91
- * gem install solutious-stella --source http://gems.github.com
89
+ $ gem install stella
90
+ $ git clone git://github.com/solutious/stella.git
91
+ $ gem install solutious-stella --source http://gems.github.com
92
92
 
93
93
 
94
94
  == More Information
@@ -16,6 +16,7 @@ require 'threadify'
16
16
  require 'drydock/screen'
17
17
 
18
18
  module Stella
19
+ VERSION = "0.7.0.002"
19
20
  extend self
20
21
  require 'stella/version'
21
22
  require 'stella/exceptions'
@@ -166,8 +166,10 @@ module Stella
166
166
  end
167
167
 
168
168
  def doc
169
- @container_doc and return @container_doc
170
- @container_doc = case @response.header['Content-Type']
169
+ # NOTE: It's important to parse the document on every
170
+ # request because this container is available for the
171
+ # entire life of a usecase.
172
+ case @response.header['Content-Type']
171
173
  when ['text/html']
172
174
  Nokogiri::HTML(body)
173
175
  when ['text/yaml']
@@ -1,7 +1,7 @@
1
1
  @spec = Gem::Specification.new do |s|
2
2
  s.name = "stella"
3
3
  s.rubyforge_project = 'stella'
4
- s.version = "0.7.0.001"
4
+ s.version = "0.7.0.002"
5
5
  s.summary = "Stella: Your friend in performance testing."
6
6
  s.description = s.summary
7
7
  s.author = "Delano Mandelbaum"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solutious-stella
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0.001
4
+ version: 0.7.0.002
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delano Mandelbaum