hamster 0.1.17 → 0.1.18

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/History.rdoc +4 -0
  2. data/README.rdoc +10 -0
  3. data/lib/hamster/version.rb +1 -1
  4. metadata +13 -4
@@ -1,3 +1,7 @@
1
+ === 0.1.18 / 2010-01-03
2
+
3
+ * Added gem development dependency on RSpec.
4
+
1
5
  === 0.1.17 / 2010-01-02
2
6
 
3
7
  * Alias #empty? as #null?
@@ -168,3 +168,13 @@ Hamster started out as a spike to prove a point and has since morphed into somet
168
168
  Performance is pretty good--especially with lazy lists--but there are some things which unfortunately had to be converted from recursive to iterative due to a lack of Tail-Call-Optimisation in Ruby, making them a little less readable, and a little more memory hungry, than I would otherwise have preferred.
169
169
 
170
170
  Documentation is sparse but I've tried as best I can to write specs that read as documentation. I've also tried to alias methods as their <tt>Enumerable</tt> equivalents where possible to make it easier for people to migrate code.
171
+
172
+ == Installation
173
+
174
+ Hamster is distributed as a gem via gemcutter (http://gemcutter.org/gems/hamster) or as source via GitHub (http://github.com/harukizaemon/hamster).
175
+
176
+ Installation via the gem is easy:
177
+
178
+ > gem install hamster
179
+
180
+ I'll leave it up to you to install from source :)
@@ -1,5 +1,5 @@
1
1
  module Hamster
2
2
 
3
- VERSION = "0.1.17".freeze
3
+ VERSION = "0.1.18".freeze
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hamster
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.17
4
+ version: 0.1.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Harris
@@ -9,10 +9,19 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-02 00:00:00 +11:00
12
+ date: 2010-01-03 00:00:00 +11:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rspec
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
16
25
  description: Persistent Data Structures for Ruby
17
26
  email: haruki.zaemon@gmail.com
18
27
  executables: []