async_rack_test 0.0.4 → 0.0.5

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/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,7 @@
1
+ === 0.0.5 / 2014-04-16
2
+
3
+ * Add support for PATCH requests. Thanks to https://github.com/ali-graham
4
+
1
5
  === 0.0.3 / 2013-09-30
2
6
 
3
7
  * Add support for libs that `throw :async`. Thanks to https://github.com/paviensky
@@ -1,5 +1,5 @@
1
1
  module AsyncRackTest # :nodoc:
2
2
  module Version
3
- STRING = '0.0.4'
3
+ STRING = '0.0.5'
4
4
  end
5
5
  end
@@ -28,7 +28,7 @@ module AsyncRackTest
28
28
  self.instance_eval { class << self; self; end }.class_eval { alias :app :async_app }
29
29
  end
30
30
 
31
- %w(get put post delete head options).each do |m|
31
+ %w(get post put patch delete head options).each do |m|
32
32
  eval <<-RUBY, binding, __FILE__, __LINE__ + 1
33
33
  def a#{m}(*args)
34
34
  use_sync
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: async_rack_test
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-10-07 00:00:00.000000000 Z
12
+ date: 2014-04-17 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Extends rack-test to make working with EventMachine easier.
15
15
  email: paul@thoughtless.ca
@@ -53,10 +53,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
53
  version: '0'
54
54
  requirements: []
55
55
  rubyforge_project:
56
- rubygems_version: 1.8.23
56
+ rubygems_version: 1.8.28
57
57
  signing_key:
58
58
  specification_version: 3
59
- summary: async_rack_test-0.0.4
59
+ summary: async_rack_test-0.0.5
60
60
  test_files:
61
61
  - spec/async_rack_test_spec.rb
62
62
  - spec/spec_helper.rb