yawn 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.rdoc +7 -12
  2. data/VERSION +1 -1
  3. metadata +2 -2
@@ -1,18 +1,13 @@
1
1
  = yawn
2
2
 
3
- Description goes here.
3
+ Yawn is asynchronous HTTP. It's suitable for sending requests that you don't want to block your application with. I'm using it to send error notifications and logging information. I just want to send requests without worrying about my app dying if the other side goes down.
4
4
 
5
- == Note on Patches/Pull Requests
6
-
7
- * Fork the project.
8
- * Make your feature addition or bug fix.
9
- * Add tests for it. This is important so I don't break it in a
10
- future version unintentionally.
11
- * Commit, do not mess with rakefile, version, or history.
12
- (if you want to have your own version, that is fine but
13
- bump version in a commit by itself I can ignore when I pull)
14
- * Send me a pull request. Bonus points for topic branches.
5
+ y = Yawn.new
6
+ y.get "http://google.com"
7
+ y.post("http://example.com", "some data") do |response|
8
+ # optional callback does something with response
9
+ end
15
10
 
16
11
  == Copyright
17
12
 
18
- Copyright (c) 2009 Kyle Maxwell. See LICENSE for details.
13
+ Copyright (c) 2009 Kyle Maxwell. MIT Licensed.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.1.0
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yawn
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Maxwell
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-11-02 00:00:00 -08:00
12
+ date: 2010-01-21 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency