yakischloba-http-parser 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 (3) hide show
  1. data/Rakefile +2 -2
  2. data/http-parser.gemspec +1 -1
  3. metadata +1 -1
data/Rakefile CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'rubygems'
2
2
  require 'ffi'
3
3
 
4
- task :default => [:clean, :build, :test]
4
+ task :default => [:clean, :build]
5
5
 
6
6
  task :clean do
7
7
  chdir "src/" do
@@ -18,7 +18,7 @@ task :build do
18
18
  end
19
19
  end
20
20
 
21
- task :test do
21
+ task :test => [:clean, :build] do
22
22
  chdir "src/" do
23
23
  sh "make test"
24
24
  end
data/http-parser.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "http-parser"
3
- s.version = "0.0.3"
3
+ s.version = "0.0.4"
4
4
  s.date = "2009-08-08"
5
5
  s.authors = ["Ryan Dahl", "Zed Shaw", "Jake Douglas"]
6
6
  s.email = "jakecdouglas@gmail.com"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yakischloba-http-parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Dahl