webbed 0.1.0 → 0.1.1

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/README.md +32 -0
  2. data/lib/webbed/version.rb +1 -1
  3. metadata +4 -4
data/README.md CHANGED
@@ -0,0 +1,32 @@
1
+ Webbed
2
+ ======
3
+ Take control of HTTP.
4
+
5
+ Note on Releases
6
+ ----------------
7
+ Releases are tagged on GitHub and also released as gems on RubyGems. The branch `master` is pushed to whenever I add a patch or a new feature. To build from master, you can clone the code, generate the updated `gemspec`, build the gem and install.
8
+
9
+ * `rake gemspec`
10
+ * `gem build webbed.gemspec`
11
+ * `gem install` the gem that was built
12
+
13
+ Note on Patches/Pull Requests
14
+ -----------------------------
15
+ * Fork the project.
16
+ * Make your feature addition or bug fix.
17
+ * Add tests for it. This is important so I don't break it in a future version unintentionally.
18
+ * Commit, do not mess with the `Rakefile`, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself in another branch so I can ignore when I pull)
19
+ * Send me a pull request. Bonus points for topic branches.
20
+
21
+ Requirements
22
+ ------------
23
+ * [Bundler](http://github.com/carlhuda/bundler)
24
+ * [Addressable](http://github.com/sporkmonger/addressable)
25
+
26
+ Install
27
+ -------
28
+ * `gem install webbed`
29
+
30
+ License
31
+ -------
32
+ Webbed is licensed under the MIT License. See `LICENSE` for details.
@@ -1,3 +1,3 @@
1
1
  module Webbed
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webbed
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Alexander Kern
@@ -47,7 +47,7 @@ dependencies:
47
47
  name: rake
48
48
  prerelease: false
49
49
  type: :development
50
- description: Consistent library of manipulating HTTP messages.
50
+ description: Sane library for manipulating HTTP messages.
51
51
  email: alex@kernul.com
52
52
  executables: []
53
53