nethttp_ab 0.0.3 → 0.0.4

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.
Files changed (4) hide show
  1. data/CHANGELOG +3 -1
  2. data/Rakefile +2 -2
  3. data/nethttp_ab.gemspec +7 -1
  4. metadata +24 -2
data/CHANGELOG CHANGED
@@ -1,4 +1,6 @@
1
- v0.0.3 fixed a bug in url regexp and added a test suite to cover it, also added a test suite for --follow-links option, changed the way options are parsed - now it's possible to specify both "-n100 -c20" and "-n 100 -c 25"
1
+ v0.0.4 added correct dependencies to the nethttp_ab.gemspec file [12-04-2011]
2
+
3
+ v0.0.3 fixed a bug in url regexp and added a test suite to cover it, also added a test suite for --follow-links option, changed the way options are parsed - now it's possible to specify both "-n100 -c20" and "-n 100 -c 25" [12-04-2011]
2
4
 
3
5
  v0.0.2 deleted trollop gem as a requirement, added nokogiri dependency to gemspec, added MIT license file, fixed small issue with benchmarked site's url, added wrong site address handling [06-04-2011]
4
6
 
data/Rakefile CHANGED
@@ -2,10 +2,10 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('nethttp_ab', '0.0.3') do |p|
5
+ Echoe.new('nethttp_ab', '0.0.4') do |p|
6
6
  p.description = "Simple tool to test and benchmark sites"
7
7
  p.url = "http://github.com/german/nethttp_ab"
8
8
  p.author = "Dmitrii Samoilov"
9
9
  p.email = "germaninthetown@gmail.com"
10
- p.development_dependencies = []
10
+ p.dependencies = ["nokogiri >=1.4.2", "mocha"]
11
11
  end
data/nethttp_ab.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{nethttp_ab}
5
- s.version = "0.0.3"
5
+ s.version = "0.0.4"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Dmitrii Samoilov"]
@@ -25,8 +25,14 @@ Gem::Specification.new do |s|
25
25
  s.specification_version = 3
26
26
 
27
27
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
28
+ s.add_runtime_dependency(%q<nokogiri>, [">= 1.4.2"])
29
+ s.add_runtime_dependency(%q<mocha>, [">= 0"])
28
30
  else
31
+ s.add_dependency(%q<nokogiri>, [">= 1.4.2"])
32
+ s.add_dependency(%q<mocha>, [">= 0"])
29
33
  end
30
34
  else
35
+ s.add_dependency(%q<nokogiri>, [">= 1.4.2"])
36
+ s.add_dependency(%q<mocha>, [">= 0"])
31
37
  end
32
38
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nethttp_ab
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,7 +11,29 @@ bindir: bin
11
11
  cert_chain: []
12
12
  date: 2011-04-12 00:00:00.000000000 +03:00
13
13
  default_executable:
14
- dependencies: []
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: nokogiri
17
+ requirement: &72289600 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: 1.4.2
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: *72289600
26
+ - !ruby/object:Gem::Dependency
27
+ name: mocha
28
+ requirement: &72289390 !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: *72289390
15
37
  description: Simple tool to test and benchmark sites
16
38
  email: germaninthetown@gmail.com
17
39
  executables: