Skip to content

Commit

Permalink
version bump 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur Chiu committed Aug 16, 2013
1 parent a51fd32 commit f2b2de1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
require 'bundler/gem_tasks'

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/**/*_test.rb'
Rake::TestTask.new(:spec) do |test|
test.libs << 'lib' << 'spec'
test.pattern = 'spec/**/*_spec.rb'
test.warning = true
test.verbose = true
end
5 changes: 1 addition & 4 deletions rack-parser.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)

Gem::Specification.new do |s|
s.name = "rack-parser"
s.version = "0.3.0"
s.version = "0.4.0"
s.authors = ["Arthur Chiu"]
s.email = ["mr.arthur.chiu@gmail.com"]
s.homepage = "https://www.github.com/achiu/rack-parser"
Expand All @@ -18,9 +18,6 @@ Gem::Specification.new do |s|
s.require_paths = ["lib"]

s.add_dependency 'rack'
s.add_dependency 'multi_json'
s.add_dependency 'multi_xml', '>= 0.5.2'
s.add_development_dependency 'minitest'
s.add_development_dependency 'rack-test'
s.add_development_dependency 'json'
end
2 changes: 1 addition & 1 deletion spec/parser_spec.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require File.expand_path('../spec_helper2', __FILE__)
require File.expand_path('../spec_helper', __FILE__)

describe Rack::Parser do

Expand Down

0 comments on commit f2b2de1

Please sign in to comment.