stella 0.7.2.003 → 0.7.3

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 CHANGED
@@ -1,7 +1,9 @@
1
1
  STELLA, CHANGES
2
2
 
3
+
3
4
  #### 0.7.3 (2009-10-30) ###############################
4
5
 
6
+ * FIXED: warning: regexp match /.../n against to UTF-8 string
5
7
  * ADDED: Arrival rate
6
8
  * ADDED: Added HTTP auth per request
7
9
 
data/Rudyfile CHANGED
@@ -150,7 +150,7 @@ routines do
150
150
  file_upload "pkg/stella-#{Stella::VERSION}.gem", "/tmp/"
151
151
  gem_install "/tmp/stella-#{Stella::VERSION}.gem"
152
152
  end
153
-
153
+
154
154
  end
155
155
 
156
156
  install_zlib do
data/bin/stella CHANGED
@@ -73,6 +73,7 @@ class Stella::CLI::Definition
73
73
  option :W, :nowait, "Ignore wait times (ignored)"
74
74
  option :w, :wait, Float, "Wait time (in seconds) between client requests (ignored if testplan supplied)"
75
75
  option :p, :testplan, String, "Path to testplan"
76
+ option :a, :arrival, Float, "Arrival rate (ignored)"
76
77
  command :preview => Stella::CLI
77
78
 
78
79
  about "Verify a test plan"
@@ -85,6 +86,7 @@ class Stella::CLI::Definition
85
86
  option :W, :nowait, "Ignore wait times"
86
87
  option :w, :wait, Float, "Wait time (in seconds) between client requests (ignored if testplan supplied)"
87
88
  option :p, :testplan, String, "Path to testplan"
89
+ option :a, :arrival, Float, "Arrival rate (ignored)"
88
90
  command :verify => Stella::CLI
89
91
 
90
92
  about "Generate requests"
@@ -5,8 +5,7 @@ module Stella
5
5
  unless defined?(MAJOR)
6
6
  MAJOR = 0.freeze
7
7
  MINOR = 7.freeze
8
- TINY = 2.freeze
9
- PATCH = '003'.freeze
8
+ TINY = 3.freeze
10
9
  end
11
10
  def self.to_s; [MAJOR, MINOR, TINY].join('.'); end
12
11
  def self.to_f; self.to_s.to_f; end
data/stella.gemspec CHANGED
@@ -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.2.003"
4
+ s.version = "0.7.3"
5
5
  s.summary = "Blame Stella for breaking your web applications."
6
6
  s.description = s.summary
7
7
  s.author = "Delano Mandelbaum"
@@ -771,12 +771,13 @@ module HTTP
771
771
  end
772
772
  end
773
773
 
774
+
774
775
  def escape_query(query) # :nodoc:
775
776
  query.collect { |attr, value|
776
777
  if value.respond_to?(:read)
777
778
  value = value.read
778
779
  end
779
- escape(attr.to_s) << '=' << escape(value.to_s)
780
+ URI.escape(attr.to_s) << '=' << URI.escape(value.to_s)
780
781
  }.join('&')
781
782
  end
782
783
 
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.7.2.003
4
+ version: 0.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delano Mandelbaum