attribute-filters 1.4.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. data.tar.gz.sig +0 -0
  2. data/.yardopts +1 -0
  3. data/ChangeLog +501 -0
  4. data/Gemfile +1 -1
  5. data/Gemfile.lock +7 -7
  6. data/Manifest.txt +7 -0
  7. data/README.md +59 -30
  8. data/Rakefile +1 -0
  9. data/attribute-filters.gemspec +4 -4
  10. data/docs/COMMON-FILTERS.md +1067 -0
  11. data/docs/HISTORY +42 -0
  12. data/docs/TODO +29 -12
  13. data/docs/USAGE.md +718 -818
  14. data/lib/attribute-filters.rb +4 -2
  15. data/lib/attribute-filters/attribute_set.rb +144 -73
  16. data/lib/attribute-filters/attribute_set_annotations.rb +110 -77
  17. data/lib/attribute-filters/attribute_set_attrquery.rb +51 -8
  18. data/lib/attribute-filters/attribute_set_enum.rb +44 -38
  19. data/lib/attribute-filters/attribute_set_query.rb +62 -12
  20. data/lib/attribute-filters/backports.rb +36 -4
  21. data/lib/attribute-filters/common_filters.rb +83 -37
  22. data/lib/attribute-filters/common_filters/bare.rb +29 -0
  23. data/lib/attribute-filters/common_filters/case.rb +34 -19
  24. data/lib/attribute-filters/common_filters/convert.rb +259 -0
  25. data/lib/attribute-filters/common_filters/join.rb +37 -30
  26. data/lib/attribute-filters/common_filters/order.rb +105 -0
  27. data/lib/attribute-filters/common_filters/pick.rb +90 -0
  28. data/lib/attribute-filters/common_filters/presence.rb +70 -0
  29. data/lib/attribute-filters/common_filters/split.rb +37 -21
  30. data/lib/attribute-filters/common_filters/squeeze.rb +28 -9
  31. data/lib/attribute-filters/common_filters/strip.rb +7 -3
  32. data/lib/attribute-filters/dsl_attr_virtual.rb +2 -1
  33. data/lib/attribute-filters/dsl_filters.rb +14 -61
  34. data/lib/attribute-filters/dsl_sets.rb +238 -88
  35. data/lib/attribute-filters/helpers.rb +7 -1
  36. data/lib/attribute-filters/meta_set.rb +38 -0
  37. data/lib/attribute-filters/version.rb +1 -1
  38. data/spec/attribute-filters_spec.rb +178 -16
  39. data/spec/spec_helper.rb +9 -4
  40. metadata +129 -69
  41. metadata.gz.sig +0 -0
data.tar.gz.sig CHANGED
Binary file
data/.yardopts CHANGED
@@ -7,6 +7,7 @@
7
7
  -t default
8
8
  -
9
9
  docs/USAGE.md
10
+ docs/COMMON-FILTERS.md
10
11
  docs/HISTORY
11
12
  ChangeLog
12
13
  docs/COPYING
data/ChangeLog CHANGED
@@ -1,3 +1,504 @@
1
+ commit 9d5082a0f3d5b9349b1792a420f273b9898f1a9e
2
+ Author: Paweł Wilk <siefca@gnu.org>
3
+ Date: Thu Nov 1 17:07:24 2012 +0100
4
+
5
+ ChangeLog updated
6
+
7
+ commit 602f63462008c2eee2fc9a1fabb231a3fa8bc858
8
+ Author: Paweł Wilk <siefca@gnu.org>
9
+ Date: Thu Nov 1 17:05:51 2012 +0100
10
+
11
+ Version 2
12
+
13
+ commit 3595cf888a15cbb2fc94078992be099c9e110ab4
14
+ Author: Paweł Wilk <siefca@gnu.org>
15
+ Date: Thu Nov 1 16:43:34 2012 +0100
16
+
17
+ Dependencies updated
18
+
19
+ commit 2a5d3d3cf0fe2dcb1711f12fc1322586bdbeaad5
20
+ Author: Paweł Wilk <siefca@gnu.org>
21
+ Date: Thu Nov 1 16:37:20 2012 +0100
22
+
23
+ Documentation updated
24
+
25
+ commit 4060f7d9e0109361a737afd6e643f4794cf8db44
26
+ Author: Paweł Wilk <siefca@gnu.org>
27
+ Date: Thu Nov 1 16:32:00 2012 +0100
28
+
29
+ Documentation updated
30
+
31
+ commit d67f9e5f06b3a365a322b7b8bd7899662668f035
32
+ Author: Paweł Wilk <siefca@gnu.org>
33
+ Date: Thu Nov 1 16:31:40 2012 +0100
34
+
35
+ Added missing aliases
36
+
37
+ commit ab1f3904ea9205c5a8f0cf2e76a30a3a69dd7cfa
38
+ Author: Paweł Wilk <siefca@gnu.org>
39
+ Date: Thu Nov 1 11:39:05 2012 +0100
40
+
41
+ Documentation updated
42
+
43
+ commit e5c82df87c5f979aa693de192b3b24feab6ebbba
44
+ Author: Paweł Wilk <siefca@gnu.org>
45
+ Date: Thu Nov 1 11:38:45 2012 +0100
46
+
47
+ Filtering methods register merging improved (now it works with indirect inclusion too)
48
+
49
+ commit 86a4f948eec075f693b81014bf81e57c59755ade
50
+ Author: Paweł Wilk <siefca@gnu.org>
51
+ Date: Thu Nov 1 11:37:01 2012 +0100
52
+
53
+ AttributeSet#annotations now returns a hash containing only annotated attributes
54
+
55
+ commit 19d39e8f7bc84e2f044de286a1719b35cc988bb7
56
+ Author: Paweł Wilk <siefca@gnu.org>
57
+ Date: Thu Nov 1 11:36:14 2012 +0100
58
+
59
+ Class methods names disambiguated (added second-person aliases)
60
+
61
+ commit 476bf111c8179a50947b885b98d4bf3d875a65a1
62
+ Author: Paweł Wilk <siefca@gnu.org>
63
+ Date: Wed Oct 31 20:33:32 2012 +0100
64
+
65
+ Documentation updated, common filters specific documentation moved to docs/COMMON-FILTERS.md
66
+
67
+ commit 92c28621620f047deb5ddb7753e2fe901c181a2b
68
+ Author: Paweł Wilk <siefca@gnu.org>
69
+ Date: Wed Oct 31 19:17:17 2012 +0100
70
+
71
+ Fixed return values of methods
72
+
73
+ commit bd757dfd8d024669f9b26ecd9fe7bcdf78b5fff5
74
+ Author: Paweł Wilk <siefca@gnu.org>
75
+ Date: Wed Oct 31 18:57:32 2012 +0100
76
+
77
+ More fixes for MetaSet compliance
78
+
79
+ commit 0350a2e481faf93511f20713decc9ebea69cd526
80
+ Author: Paweł Wilk <siefca@gnu.org>
81
+ Date: Wed Oct 31 18:56:58 2012 +0100
82
+
83
+ Documentation updated
84
+
85
+ commit 543cba5aa180149f5a68addbf8eb55670bc171bf
86
+ Author: Paweł Wilk <siefca@gnu.org>
87
+ Date: Wed Oct 31 18:56:44 2012 +0100
88
+
89
+ Fixed four errors in DSL proxy class AttributeSet::Query (validation and changes tracking)
90
+
91
+ commit 57eb34f3a9a70674eaaf59264bd5f8e05eefa38f
92
+ Author: Paweł Wilk <siefca@gnu.org>
93
+ Date: Wed Oct 31 18:55:32 2012 +0100
94
+
95
+ The MetaSet class moved to a separate file
96
+
97
+ commit 3f54db096b5511e7a95d6eb5dadfbbf14d64a54c
98
+ Author: Paweł Wilk <siefca@gnu.org>
99
+ Date: Wed Oct 31 11:56:58 2012 +0100
100
+
101
+ Improved filtering methods registration and querying
102
+
103
+ commit b5965852204ee64339ef4581670083c5e1b5313e
104
+ Author: Paweł Wilk <siefca@gnu.org>
105
+ Date: Wed Oct 31 11:56:07 2012 +0100
106
+
107
+ Added MetaSet – a simple replacement for a Hash in internal data structures
108
+
109
+ commit 0954ee3935e1da40462d97fb04b66123230e3b3b
110
+ Author: Paweł Wilk <siefca@gnu.org>
111
+ Date: Wed Oct 31 11:48:07 2012 +0100
112
+
113
+ Added bare filtering module
114
+
115
+ commit 1d3c941bbaa691235c4bdfa3fadc30cfa3ab2e02
116
+ Author: Paweł Wilk <siefca@gnu.org>
117
+ Date: Wed Oct 31 11:47:49 2012 +0100
118
+
119
+ Documentation updated
120
+
121
+ commit 02ff862f148306e7f713f4024569abb5d8773491
122
+ Author: Paweł Wilk <siefca@gnu.org>
123
+ Date: Tue Oct 30 21:36:16 2012 +0100
124
+
125
+ Creating filtering methods and calling all filters seriously refactored
126
+
127
+ - Added DSL class method filtering_method that memorizes method->attribute set pairs
128
+ (available in all classes that directly or indirectly include AttributeFilters;
129
+
130
+ - Added __filtering_sets class instance variable merging to CommonFilter#included hook,
131
+ which is then propagated as class method to all classes that contain common and custom filters;
132
+
133
+ - Changed filter_attributes DSL method, it now calls any method registered as filtered (uses
134
+ __filtering_sets class instance variable) if there is a global set in use, which name
135
+ is assigned to some filtering method;
136
+
137
+ - Added registered_attribute_filters DSL instance method for listing registered methods
138
+
139
+ commit 73533da9b37b460e84bc147da3504bc68fdcb9fd
140
+ Author: Paweł Wilk <siefca@gnu.org>
141
+ Date: Tue Oct 30 21:28:03 2012 +0100
142
+
143
+ Added AttributeSet#each_name_value enumerator
144
+
145
+ commit 82e518659429899b53e889dfca09b473a2836e3e
146
+ Author: Paweł Wilk <siefca@gnu.org>
147
+ Date: Tue Oct 30 21:27:37 2012 +0100
148
+
149
+ Documentation updated
150
+
151
+ commit c48345e34ade6ddf99d1a79f1305b2cf04995aa5
152
+ Author: Paweł Wilk <siefca@gnu.org>
153
+ Date: Sat Oct 27 15:16:37 2012 +0200
154
+
155
+ Refactored AttrQuery initialization, added attribute name gethering from next method name in a chain
156
+
157
+ commit ac8f8131134be35fa3e1cac5118856b0d7664142
158
+ Author: Paweł Wilk <siefca@gnu.org>
159
+ Date: Sat Oct 27 15:15:32 2012 +0200
160
+
161
+ Added filtered_attribute_simple DSL method
162
+
163
+ commit b4ee22cc8d7a66a44062f105ecb04aa8554d4d2d
164
+ Author: Paweł Wilk <siefca@gnu.org>
165
+ Date: Sat Oct 27 15:14:50 2012 +0200
166
+
167
+ Improved attribute_set DSL method (removed unneeded condition)
168
+
169
+ commit 26182a3a5650321fb7e286374613f460368986cd
170
+ Author: Paweł Wilk <siefca@gnu.org>
171
+ Date: Sat Oct 27 15:13:36 2012 +0200
172
+
173
+ Fixed attribute_set DSL method: doesn't return duplicate of a frozen set anymore
174
+
175
+ commit fc2b32fcba24149018c82c2ca4b50d932d0b04a3
176
+ Author: Paweł Wilk <siefca@gnu.org>
177
+ Date: Sat Oct 27 02:55:58 2012 +0200
178
+
179
+ The all_attributes DSL instance method can now use the next method call to get a set name
180
+
181
+ commit fed4f500863fc2dce347128ae4ad9346e45f284b
182
+ Author: Paweł Wilk <siefca@gnu.org>
183
+ Date: Sat Oct 27 02:54:49 2012 +0200
184
+
185
+ Added attribute_set_exists? DSL class method
186
+
187
+ commit 85564f3c6be7b7703b49a8ebd7f88ff672d00644
188
+ Author: Paweł Wilk <siefca@gnu.org>
189
+ Date: Sat Oct 27 01:29:24 2012 +0200
190
+
191
+ Documentation updated
192
+
193
+ commit cb5f24dc693cc18751b775aae551db0466ce306f
194
+ Author: Paweł Wilk <siefca@gnu.org>
195
+ Date: Sat Oct 27 01:29:17 2012 +0200
196
+
197
+ Added virtual? and semi_real? to AttrQuery proxy
198
+
199
+ commit 299fcb8d3b87bb24b25b7b3a739281640dd6d8a3
200
+ Author: Paweł Wilk <siefca@gnu.org>
201
+ Date: Fri Oct 26 15:07:30 2012 +0200
202
+
203
+ Documentation updated
204
+
205
+ commit f1da92544ce9be6198861e908fed0ac22802a713
206
+ Author: Paweł Wilk <siefca@gnu.org>
207
+ Date: Fri Oct 26 15:07:18 2012 +0200
208
+
209
+ Typo fixed in the all_attributes DSL method
210
+
211
+ commit 3f31782c3783f14885d6cd74925329aeff2ef640
212
+ Author: Paweł Wilk <siefca@gnu.org>
213
+ Date: Fri Oct 26 15:06:29 2012 +0200
214
+
215
+ Added changed? and unchanged? to Query, fixed argument passing to next method in chain
216
+
217
+ commit 15de2f97034844656a6be5866316ba3348aa0cb5
218
+ Author: Paweł Wilk <siefca@gnu.org>
219
+ Date: Fri Oct 26 15:05:39 2012 +0200
220
+
221
+ Added changed? and unchanged? to AttrQuery
222
+
223
+ commit 7a9f00c6b2876f811b0775a2d683fb13180b99a3
224
+ Author: Paweł Wilk <siefca@gnu.org>
225
+ Date: Fri Oct 26 15:05:04 2012 +0200
226
+
227
+ Improved Query DSL methods: valid?, invalid?, accessible?, protected?
228
+
229
+ commit bc9cd1de49b5eb4d25e41e688f92fd9500cb4943
230
+ Author: Paweł Wilk <siefca@gnu.org>
231
+ Date: Fri Oct 26 15:03:40 2012 +0200
232
+
233
+ Added AttributeSet#to_set
234
+
235
+ commit 191c00b2d5c1104448c5be2da02975fa79ba9233
236
+ Author: Paweł Wilk <siefca@gnu.org>
237
+ Date: Fri Oct 26 10:12:51 2012 +0200
238
+
239
+ Overriden inspect method in AttributeSet
240
+
241
+ commit 062d4114cb6b5573b135e8c08c1df3fe4480ded5
242
+ Author: Paweł Wilk <siefca@gnu.org>
243
+ Date: Fri Oct 26 10:10:58 2012 +0200
244
+
245
+ Added valid? and invalid? responders to AttributeSet::AttrQuery
246
+
247
+ commit 7289165792ec36408d42620fd3f8620e7fe16556
248
+ Author: Paweł Wilk <siefca@gnu.org>
249
+ Date: Thu Oct 25 22:35:15 2012 +0200
250
+
251
+ Fixed AttributeSet::Query wrapper calls, improved Query initializer (added error checking)
252
+
253
+ commit b16c4f40c845cdf32830fe340116033e9007edb5
254
+ Author: Paweł Wilk <siefca@gnu.org>
255
+ Date: Thu Oct 25 15:44:29 2012 +0200
256
+
257
+ Attribute Filters are now 2 times faster than before optimizations. ;-)
258
+
259
+ commit b0aa47edd4fa4f5cb6467d75844081d3b0415d60
260
+ Author: Paweł Wilk <siefca@gnu.org>
261
+ Date: Thu Oct 25 15:12:27 2012 +0200
262
+
263
+ DLS method attributes_to_filter improved (removed redundant calls to set duplicates)
264
+
265
+ Looks a bit messy but it's faster
266
+
267
+ commit ba4c88480b30d590ba9e20eb8bb7663375dfbce5
268
+ Author: Paweł Wilk <siefca@gnu.org>
269
+ Date: Thu Oct 25 15:10:32 2012 +0200
270
+
271
+ Enumerators improved: sort, select, reject fixed; all other wrapped to return AttributeSet object
272
+
273
+ commit 08cd09f7164d606d396fd488f7e4088a12f2ae38
274
+ Merge: ce84ecd 4a27e64
275
+ Author: Paweł Wilk <siefca@gnu.org>
276
+ Date: Thu Oct 25 01:33:39 2012 +0200
277
+
278
+ Merge branch 'hashset': AttributeSet is now based on nested hashes
279
+
280
+ commit 4a27e64da26f6451582a0643e3930989951016c9
281
+ Author: Paweł Wilk <siefca@gnu.org>
282
+ Date: Thu Oct 25 01:25:50 2012 +0200
283
+
284
+ Serious refactoring: creation of duplicates for sets moved to class-level accessors
285
+
286
+ commit 2dd84925a3a025ba199feaa21ac91e1cb78f7cfa
287
+ Author: Paweł Wilk <siefca@gnu.org>
288
+ Date: Wed Oct 24 21:04:21 2012 +0200
289
+
290
+ Refactored all_attributes DSL method and removed all_attributes_simple (speed related optimizations)
291
+
292
+ commit bd509597813cfe4efabc208c968fa6430f488fcb
293
+ Author: Paweł Wilk <siefca@gnu.org>
294
+ Date: Wed Oct 24 21:02:45 2012 +0200
295
+
296
+ Replaced block with select_accessible enumerator in all_semi_real_attributes DSL method
297
+
298
+ commit c636f157a706595ed2c66a37fb470a8e2a3f4f98
299
+ Author: Paweł Wilk <siefca@gnu.org>
300
+ Date: Wed Oct 24 21:00:44 2012 +0200
301
+
302
+ s/attribute_filters_virtual/treat_as_virtual/
303
+
304
+ commit acfc44cff753e8e2e3daa463e7033f439b7b1731
305
+ Author: Paweł Wilk <siefca@gnu.org>
306
+ Date: Wed Oct 24 20:59:25 2012 +0200
307
+
308
+ treat_as_real and treat_as_virtual accessors moved to dsl_sets.rb
309
+
310
+ commit 94d6b45a5d2e81061e93352caf61f45f0570d921
311
+ Author: Paweł Wilk <siefca@gnu.org>
312
+ Date: Wed Oct 24 20:56:45 2012 +0200
313
+
314
+ Added AttributeSet::Enumerator#select_accessible for picking up attributes that have setters/getters
315
+
316
+ commit ad7e8e824f36781fb1876fd406f8dd8c65bee204
317
+ Author: Paweł Wilk <siefca@gnu.org>
318
+ Date: Wed Oct 24 20:55:47 2012 +0200
319
+
320
+ Adding elements to sets improved, AttributeSet initializer uses the method add()
321
+
322
+ commit 18b3b77a02ec141b47a909bb4b9b0b8429d2fde7
323
+ Author: Paweł Wilk <siefca@gnu.org>
324
+ Date: Wed Oct 24 11:00:17 2012 +0200
325
+
326
+ Improved virtual and semi-real attributes storage handling
327
+
328
+ commit f64476a208d304f261721b9e56be2c410c09fd5a
329
+ Author: Paweł Wilk <siefca@gnu.org>
330
+ Date: Wed Oct 24 10:57:47 2012 +0200
331
+
332
+ Changed include? to key?
333
+
334
+ commit 14fb78dd7322d4ab1bf1640530e387c05cc3a658
335
+ Author: Paweł Wilk <siefca@gnu.org>
336
+ Date: Tue Oct 23 14:59:49 2012 +0200
337
+
338
+ Compatibility fixes after changing basic structure to be ancestor of the Hash
339
+
340
+ commit d7ce56dfd6e1d9bd056381e018d2b44c980e5fd2
341
+ Author: Paweł Wilk <siefca@gnu.org>
342
+ Date: Tue Oct 23 11:49:28 2012 +0200
343
+
344
+ Basic data structure (AttributeSet) is now based directly on a Hash
345
+
346
+ commit ce84ecd151cc523af935985e44ef7b11f3fb9934
347
+ Author: Paweł Wilk <siefca@gnu.org>
348
+ Date: Sun Oct 21 20:53:25 2012 +0200
349
+
350
+ Prepared for branch
351
+
352
+ commit e674eb0a5ffa54b97a82bd2e105856b3398145c4
353
+ Author: Paweł Wilk <siefca@gnu.org>
354
+ Date: Sun Oct 21 15:06:30 2012 +0200
355
+
356
+ The each_element helper improved
357
+
358
+ commit 8d44b5d1f448262c6599b8ab13762d5a1eb19de8
359
+ Author: Paweł Wilk <siefca@gnu.org>
360
+ Date: Sun Oct 21 15:05:44 2012 +0200
361
+
362
+ Virtual attributes handling simplified, created different sets for virtual and semi-real attributes
363
+
364
+ commit f6ed979c584c6935dfbc62ef3f4036bde4d25005
365
+ Author: Paweł Wilk <siefca@gnu.org>
366
+ Date: Thu Oct 18 22:29:38 2012 +0200
367
+
368
+ README updated
369
+
370
+ commit 50fac4cb0e3972e3aab41017cdc8bbae8759f8d3
371
+ Author: Paweł Wilk <siefca@gnu.org>
372
+ Date: Sat Oct 13 15:15:11 2012 +0200
373
+
374
+ Replaced hash.merge(hash) expressions with more HashWithIndifferentAccess compliant
375
+
376
+ commit 97d622f3ceb1314b5ea323bcbc91eaba7c0f4fb2
377
+ Author: Paweł Wilk <siefca@gnu.org>
378
+ Date: Sat Oct 13 13:12:53 2012 +0200
379
+
380
+ Added :enum as an alias name for :enums flags in parametrized common filters
381
+
382
+ commit feff6921c6b2542193c66c8f2b74e9d359f29743
383
+ Author: Paweł Wilk <siefca@gnu.org>
384
+ Date: Sat Oct 13 13:12:19 2012 +0200
385
+
386
+ Added Pick filters for array and string manipulation (range and step based husking)
387
+
388
+ commit 114a7263e8752479262cddd039a3636fb247ae74
389
+ Author: Paweł Wilk <siefca@gnu.org>
390
+ Date: Fri Oct 12 17:06:39 2012 +0200
391
+
392
+ Added shuffle filter to Order common filters
393
+
394
+ commit 0e68700f03c1d49cafed8392831f0c56d6dc8eb5
395
+ Author: Paweł Wilk <siefca@gnu.org>
396
+ Date: Fri Oct 12 14:58:39 2012 +0200
397
+
398
+ Added Order common filters group
399
+
400
+ commit f685f03195ff65927c0e0e50ef9c20cc9ac8a250
401
+ Author: Paweł Wilk <siefca@gnu.org>
402
+ Date: Fri Oct 12 14:15:23 2012 +0200
403
+
404
+ Common filters inclusion automated
405
+
406
+ commit 3cede89f7fba20efe99534757312321b3e1414a3
407
+ Author: Paweł Wilk <siefca@gnu.org>
408
+ Date: Fri Oct 12 14:15:04 2012 +0200
409
+
410
+ Added presence and convert filters to Manifest.txt
411
+
412
+ commit 306ae4bdcf8a07c12094ee77a7a072b089beac17
413
+ Author: Paweł Wilk <siefca@gnu.org>
414
+ Date: Fri Oct 12 14:00:09 2012 +0200
415
+
416
+ Added :replace_enumerable to common filters
417
+
418
+ commit 18c663acb7338289fe9f6240ecaef954406a1908
419
+ Author: Paweł Wilk <siefca@gnu.org>
420
+ Date: Fri Oct 12 13:14:37 2012 +0200
421
+
422
+ Documentation updated
423
+
424
+ commit 41548b693aae3f83ca0ce8b0efeafc7a033aed5f
425
+ Author: Paweł Wilk <siefca@gnu.org>
426
+ Date: Fri Oct 12 13:11:05 2012 +0200
427
+
428
+ Refactored common filters (all are using setup_attributes_set to set parameters as annotations)
429
+
430
+ commit be8e6cb43d9e5596a4d5b353fddcd4f486e219f0
431
+ Author: Paweł Wilk <siefca@gnu.org>
432
+ Date: Fri Oct 12 01:13:48 2012 +0200
433
+
434
+ Documentation updated
435
+
436
+ commit 8a6bb42886a593eba070322c6d6033465a725d35
437
+ Author: Paweł Wilk <siefca@gnu.org>
438
+ Date: Fri Oct 12 01:13:35 2012 +0200
439
+
440
+ Added Presence filter module (and moved fill attribute filter into it)
441
+
442
+ commit d340ba770d8a668d0e07ba04af4893b58fbf9a63
443
+ Author: Paweł Wilk <siefca@gnu.org>
444
+ Date: Thu Oct 11 23:16:42 2012 +0200
445
+
446
+ Added Fill filter
447
+
448
+ commit 038aa87c42c4da2f413d733c53b0a6261d231cbe
449
+ Author: Paweł Wilk <siefca@gnu.org>
450
+ Date: Thu Oct 11 23:16:04 2012 +0200
451
+
452
+ Added setup_attributes_set generic method that helps in parsing parametrized attribute sets
453
+
454
+ commit 927c86e0b616d79a93eecaf017fa7b492a432c00
455
+ Author: Paweł Wilk <siefca@gnu.org>
456
+ Date: Wed Oct 3 13:22:09 2012 +0200
457
+
458
+ Added Convert common filters for converting attribute types
459
+
460
+ commit c49184e0c478be46b1161e6d0afc1f6d03c5c797
461
+ Author: Paweł Wilk <siefca@gnu.org>
462
+ Date: Wed Oct 3 13:21:29 2012 +0200
463
+
464
+ Added squeeze filter example to spec
465
+
466
+ commit 85240335169123643e62342f3a3502fcbbc06c09
467
+ Author: Paweł Wilk <siefca@gnu.org>
468
+ Date: Wed Oct 3 13:20:41 2012 +0200
469
+
470
+ Squeeze filtering method now supports parameter (other_text)
471
+
472
+ commit 727ea13e01c7733f3433419b7f753c17c8d3fd70
473
+ Author: Paweł Wilk <siefca@gnu.org>
474
+ Date: Wed Oct 3 13:19:48 2012 +0200
475
+
476
+ Added missing documentation to join and split filtering methods
477
+
478
+ commit dad78091b838e6dcdda383c556789a57309dfb3e
479
+ Author: Paweł Wilk <siefca@gnu.org>
480
+ Date: Wed Oct 3 13:19:20 2012 +0200
481
+
482
+ Added annotate_attributes_with_params helper
483
+
484
+ commit 40f1378a8da604836c2f1ab47151d645cb0eb440
485
+ Author: Paweł Wilk <siefca@gnu.org>
486
+ Date: Sat Sep 8 14:54:38 2012 +0200
487
+
488
+ README updated
489
+
490
+ commit 7cb026fcc75f9a0adde1fbd4d61031a242e6551e
491
+ Author: Paweł Wilk <siefca@gnu.org>
492
+ Date: Fri Aug 24 13:34:02 2012 +0200
493
+
494
+ ChangeLog updated
495
+
496
+ commit 0fef709aca9b1424c499fb2577c068731d7a171a
497
+ Author: Paweł Wilk <siefca@gnu.org>
498
+ Date: Fri Aug 24 13:33:55 2012 +0200
499
+
500
+ Class methods from common filters are now inheritable if base is a module
501
+
1
502
  commit 5c5da5237f5f563b454395719375a56715eceedd
2
503
  Author: Paweł Wilk <siefca@gnu.org>
3
504
  Date: Fri Aug 24 02:03:44 2012 +0200