forked from tapajos/highrise
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG
91 lines (53 loc) · 2.21 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
2009-05-27 Ken Mayer <[email protected]>
* Version 0.12.0
* Added store_options attribute, so fetches will work work with
:mem_cache_store and :expires_in
2009-05-20 Ken Mayer <[email protected]>
* Version 0.11.0
* Added untag_id! to Taggable, in case you already know the id and don't
need to search for it again.
2009-05-16 Ken Mayer <[email protected]>
* Version 0.10.0
* Simplified caching store interface, left configuration up to end-user with
less magic
* Removed version.rb module & tests. No one will ever use it, why clutter up
the code.
2009-05-05 Ken Mayer <[email protected]>
* Version 0.9.2
* Refactored cachable to be more idiomatic ruby
* Dropped the SHA1 hashing from cache_key
2009-05-04 Ken Mayer <[email protected]>
* Version 0.9.0
* Changed cache_store= interface to accept :none (to disable caching),
:rails (to use the default Rails cache, whatever that happens to be), and,
consequently, restores the lookup_store default behavior (given nil or
empty options returns a new, default cache_store).
* Documentation update. Created and back-filled CHANGELOG
2009-05-01 Ken Mayer <[email protected]>
* Version 0.8.0
* Added caching feature
* Added example code
* Documentation update
* Updated gemspec
2009-04-26 Ken Mayer <[email protected]>
* Version 0.7.0
* Refactored Tag & Taggable so ::Tag is a subclass of Base. This adds
::Tag.find(:all) to your quiver of tools. All existing functionality
passes tests, but the interface to ::Tag.new has changed. You have to
treat it like all of other ARes, that is, use a Hash (instead of
positional parameters) to initialize the model.
2009-04-22 Luis Bepop
* Version 0.6.3
* Support to tags refactored. Include curl helper to improve support for
objects without ActiveResource base like 'tag' which needs a parse in a
html document from a httprequest.
2009-04-06 slainer68
* Version 0.6.2
* Modularize Taggable
2009-03-31 ThiagoLelis
* Version 0.6.1
* Add Person.tag that show a array of tags, and Perton.tag(name), add a new
tag to a person.
2009-01-14 tapajos
* Version 0.5.0
* Initial import