Tom Burns
cb807e9484
Add extension to gemspec
2013-03-19 18:30:10 -04:00
Tom Burns
e53884ce08
Remove generated C file from repo
2013-03-19 18:30:09 -04:00
Tom Burns
78fe69259d
Allow floats > 9
2013-03-19 18:30:09 -04:00
Tom Burns
afe8474a2b
Remove extension Makefile
2013-03-19 18:30:09 -04:00
Tobias Lutke
e404f6d8e1
fixed but with single char identifiers
2013-03-19 18:30:09 -04:00
Tobias Lutke
8867d6a65f
enable weird method endings
2013-03-19 18:30:09 -04:00
Tobias Lutke
141fa898d0
enabled hard mode
2013-03-19 18:30:09 -04:00
Tobias Lutke
58b04bae74
conquered parser_tests
2013-03-19 18:30:09 -04:00
Tobias Lütke
28737171f7
wip
2013-03-19 18:30:09 -04:00
Tobias Lütke
594b6da8c5
Initial checkin
2013-03-19 18:30:09 -04:00
Tobias Lutke
cf5fa5923d
remove binaries
2013-03-19 18:30:09 -04:00
Tobias Lutke
7cc10b9abf
various speedups
2013-03-19 18:30:09 -04:00
Tobias Lütke
20beec2de3
Convert parser to C99
2013-03-19 18:30:09 -04:00
Tobias Lutke
06486fd21d
Implement naive recusrive descent
...
Ragel doesn't allow us to recurse so we simply
reinvoke the parser for each step.
2013-03-19 18:30:08 -04:00
Tobias Lütke
7dcf578898
Replace regexpes with Ragel grammer
...
context parsing was handrolled and pretty ad-hoc
this branch exists to explore parsing the context
through a defined fsm as produced by Ragel
2013-03-19 18:30:08 -04:00
Tobias Lutke
006e7475f4
fix benchmarks
2013-03-19 18:30:08 -04:00
Dylan Smith
f7d1e1d0c1
Release 2.5.0
v2.5.0
2013-03-06 10:51:06 -05:00
Dylan Smith
28fd2222c8
Merge branch 'remove-symbolizing'
2013-03-05 16:33:56 -05:00
Dylan Smith
9913895b81
Merge branch 'master' into remove-symbolizing
...
Conflicts:
lib/liquid/variable.rb
2013-03-05 15:25:11 -05:00
Dylan Smith
d706db3bd7
Add support for filter keyword arguments. Closes #175
2013-03-05 15:17:14 -05:00
Dylan Smith
38b4543bf1
Use sets to check if methods are invokable without symbolizing.
2013-02-05 14:45:08 -05:00
Jason Roelofs
1300210f05
Convert Strainer to white-list method protection
...
After moving the method existence check from Context into Strainer,
updated Strainer to only accept invokation methods that were added via
filter Modules, and done in a way that respond_to? is never called,
preventing unconstrained Symbol table growth.
2013-01-16 11:14:01 -05:00
Jason Roelofs
a48e162237
Change Drop method lookup to not hit respond_to?
...
Class.public_method_defined? ends up diving into Ruby's core looking for
a method with the given method_or_key. This process at some point turns
method_or_key into a Symbol. This change no longer takes that path and
thus doesn't grow the Symbol table.
2013-01-16 11:07:48 -05:00
Jason Roelofs
7bcb565668
Remove #to_sym calls from Drop and Variable
...
Symbols are not needed here and using plain strings is nicer on Ruby
2013-01-16 09:46:17 -05:00
Jason Roelofs
c3e6cde67f
Add security tests to show that the symbol table doesn't grow
2013-01-16 09:46:17 -05:00
Dylan Smith
50bd34fd78
Merge pull request #161 from Shopify/fix-filter-parser-regex
...
Fix filter parser regex for filter args without separating spaces.
2012-12-18 10:13:21 -08:00
Dylan Smith
ee41b3f4a3
Fix filter parser regex for filter args without separating spaces.
...
The regex was using \S+ to match the comma between the filters
arguments, but would continue to match idependent quote characters and
filter separators. This can result in multiple filters being interpreted as
a single one with many arguments.
2012-12-18 01:23:31 -05:00
Tobias Lütke
05d9976e16
fix benchmark
2012-10-29 16:47:57 -04:00
Tom Burns
6c2fde5eea
Instantiate blank string once instead of at every comparison
2012-10-25 11:54:19 -04:00
Tobias Lütke
ce76dbf8d9
fixed the performance suite
2012-10-20 10:53:53 -04:00
Steven Soroka
661ff2ccdf
Merge pull request #140 from binarycleric/feature/break_for_loop
...
Added break and continue statements
2012-08-21 13:22:24 -07:00
Jon Daniel
9c183bea83
added interrupt class for continue/break statements
...
When a continue or break statement is executed it pushes an interrupt to a
stack in context. If any non-handled interrupts are present blocks will cease
to execute. The for loop can handle the most recent interrupt in the stack.
2012-08-21 13:14:27 -04:00
Jon Daniel
484fd18612
added break and continue tags
2012-08-21 00:00:02 -04:00
Jonathan Rudenberg
bf86459456
Merge pull request #139 from pjb3/fix_block_test_name
...
Class name does not match file name
2012-08-19 15:07:59 -07:00
Paul Barry
d2827c561b
Class name does not match file name
2012-08-19 07:44:35 -04:00
Tobias Lütke
16c34595a4
fix mergeconflict
2012-08-07 13:21:31 -04:00
Tobias Lütke
6e091909ee
Merge branch 'master' of github.com:Shopify/liquid
2012-08-07 13:20:37 -04:00
Tobias Lütke
d7cb39ccb3
release 2.4.0
2012-08-07 13:20:23 -04:00
Jonathan Rudenberg
f8d46804fd
Fix rake test for broken version of rake on travis
2012-08-07 09:49:55 -04:00
Jonathan Rudenberg
5c6de2d919
Fix typo
2012-08-07 09:37:19 -04:00
Jonathan Rudenberg
a8e9327f0b
Update HISTORY.md for v2.4.0 release
v2.4.0
2012-08-07 09:32:38 -04:00
Dylan Smith
f5a20ff8e8
Fix a regression in tablerow limit parameter.
...
I had accidentally read slice_collection_using_each as using to as an
inclusive limit rather than exclusive, and no tests covered the offset or
limit parameters.
2012-06-21 14:56:05 -04:00
Dylan Smith
d0184555d9
Allow tablerow to work with any Enumerable. Closes #132
2012-06-20 11:07:11 -04:00
Jason Normore
6ebdded8f2
Merge branch 'issue_1650_strip_html_ignore_comments'
2012-06-11 10:33:00 -04:00
Jason Normore
515b31158e
strip_html to ignore comments with html tags. fixes #1650
2012-06-11 10:32:12 -04:00
7rans
40cc799f3d
Add example to split filter.
2012-06-11 10:32:12 -04:00
Daniel Schierbeck
5ac91e0837
Fix typo and add punctuation
2012-06-11 10:32:12 -04:00
Jonathan Rudenberg
f6cb54fa59
Merge pull request #93 from trans/master
...
Split Filter Example
2012-06-07 12:21:40 -07:00
Jonathan Rudenberg
1606b4b705
Merge pull request #118 from dasch/patch-1
...
Fix typo and add punctuation
2012-06-07 12:20:54 -07:00
Jonathan Rudenberg
7cfd0f15d1
Merge pull request #128 from andmej/patch-1
...
Tpyo.
2012-06-07 12:18:09 -07:00