Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New filters #74

Merged
merged 28 commits into from
Mar 4, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
286bffa
Initial implementation of the `reverse` filter
djwf Feb 18, 2017
a23e953
Initial implementation of the `newline_to_br` filter
djwf Feb 18, 2017
3186ae0
Split filters into separate statements and sort
djwf Feb 18, 2017
8473009
Sort filters/tests
djwf Feb 18, 2017
ea1a3a2
Initial implementation of the `abs` filter
djwf Feb 20, 2017
6619063
Convert doc strings to comments
djwf Feb 20, 2017
353b309
Format via rustfmt
djwf Feb 20, 2017
d3a485f
Use short enum variant names
djwf Feb 20, 2017
b898a9f
Initial implementation of the `lstrip` filter
djwf Feb 20, 2017
53f4788
Initial implementation of the `rstrip` filter
djwf Feb 20, 2017
96bf56d
Remove unneeded return statements
djwf Feb 20, 2017
495eaeb
Initial implementation of the `strip` filter
djwf Feb 20, 2017
7ca8280
Fix docstring over 100 characters
djwf Feb 20, 2017
a3e6b4a
Move `{,l,r}strip` unit tests into proper order
djwf Feb 20, 2017
0e1409f
Add two new, adjust some old, tests for `abs`
djwf Feb 20, 2017
b0096b9
Initial implementation of the `strip_newlines` filter
djwf Feb 20, 2017
0ce4a03
Initial implementation of the `truncate` filter
djwf Feb 21, 2017
fd78c6a
Initial implementation of the `uniq` filter
djwf Feb 21, 2017
f21b223
Use standard function to check args length
djwf Feb 28, 2017
3bba05c
Remove allocation
djwf Feb 28, 2017
184d45a
Add lines for readability/parallelism
djwf Feb 28, 2017
22ea4bf
Note complexity of dedupe
djwf Feb 28, 2017
fd5b574
Note source of externally sourced tests
djwf Feb 28, 2017
0a12e65
Group filter use statements
djwf Feb 28, 2017
395bcb7
Remove unimplemented filter
djwf Feb 28, 2017
360bed9
Fix wrapping since rustfmt won't.
djwf Feb 28, 2017
10f5e84
Update rustfmt version used by Travis
djwf Feb 28, 2017
724397b
Revert "Update rustfmt version used by Travis"
djwf Feb 28, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ build = "build.rs"
regex = "0.2"
lazy_static = "0.2"
chrono = "0.2"
unicode-segmentation = "0.1.0"

[build-dependencies]
skeptic = "0.6"
Expand Down
Loading