Justin Li
021bafd260
Merge pull request #725 from jeroenvisser101/performance-start-with-vs-regex
...
Use start_with? instead of Regex
2016-03-21 10:34:28 -04:00
Jeroen Visser
04c393ab07
Use start_with? instead of Regex
...
Performance is increased by doing this:
require 'benchmark'
require 'tempfile'
n = 50000
test = File.expand_path(Tempfile.new('foo'))
Benchmark.bm(20) do |x|
x.report("Regex:") do
n.times { test =~ /\A#{test}/ }
end
x.report("String#start_with?:") do
n.times { test =~ test.start_with?(test) }
end
end
Benchmark result:
user system total real
Regex: 0.440000 0.010000 0.450000 ( 0.447357)
String#start_with?: 0.000000 0.000000 0.000000 ( 0.006313)
2016-03-21 14:23:35 +01:00
Gaurav Chande
9a7778e52c
Merge pull request #707 from Shopify/drop-without-context
...
@context not always present on a Drop
2016-03-01 18:07:16 -05:00
Gaurav Chande
dde00253f9
context is not always present on a Drop
2016-03-01 21:22:11 +00:00
Gaurav Chande
18d1644980
Merge pull request #705 from Shopify/register-filter-warn
...
Strainer#add_filter Raises on Private Override
2016-02-24 15:31:41 -05:00
Gaurav Chande
c424d47274
Add changelog entry for Strainer method override change
2016-02-24 20:23:57 +00:00
Gaurav Chande
8e6b9d503d
Make Strainer also raise when registered method is overriden as protected
2016-02-24 20:23:49 +00:00
Gaurav Chande
8be38d1795
Strainer#add_filter should raise when registered method is overriden as private
2016-02-24 20:03:17 +00:00
Justin Li
3146d5c3f2
Grammatic and other fixes to CONTRIBUTING.md
2016-02-02 23:45:37 -05:00
Justin Li
0cc8b68a97
Make logic in Context#lookup_and_evaluate more understandable
2016-02-02 23:22:46 -05:00
Justin Li
5a50c12953
Update history to reflect merge of #691
...
[ci skip]
2016-02-02 23:14:41 -05:00
Justin Li
a6fa4c5c38
Merge pull request #691 from urbandictionary/missing_variables_and_filters
...
Merge pull request 691
2016-02-02 23:13:44 -05:00
Ivan Kuznetsov
dadd9b4dd2
Add strict_variables/strict_filters render options to check for undefined variables and filters
2016-02-03 10:49:33 +07:00
Justin Li
6434b8d2bb
Merge pull request #696 from Shopify/no-send
...
Remove possibility for arbitrary sends
2016-02-02 11:01:46 -05:00
Justin Li
2d891ddd8f
Merge pull request #695 from Shopify/assign-score
...
Take nested values into account for assign score
2016-02-01 13:14:40 -05:00
Justin Li
60b508b151
Use #each to avoid extra allocations
2016-02-01 13:01:25 -05:00
Justin Li
3891f14a1a
Take nested values into account for assign score
2016-02-01 13:01:25 -05:00
Justin Li
198f0aa366
Add test for nested assign score bookkeeping
2016-02-01 13:01:23 -05:00
Justin Li
f2e6adf566
Remove arbitrary send vector
2016-02-01 11:38:40 -05:00
Justin Li
08de6ed2c5
Merge pull request #687 from pathawks/default
...
Performance improvement: `default` filter
2016-01-24 11:34:05 -05:00
Pat Hawks
7e322f5cf8
Performance improvement: default filter
2016-01-23 23:18:51 -08:00
Justin Li
bf86a5a069
Merge pull request #688 from Shopify/gmp
...
Install libgmp3-dev in travis
2016-01-23 21:46:37 -05:00
Justin Li
0141444814
Install libgmp3-dev in travis
2016-01-23 21:41:14 -05:00
Justin Li
6d30226768
Update changelog for 4.0.0rc1
2016-01-08 15:08:06 -05:00
Florian Weingarten
63e8bac1a4
meh
v4.0.0.rc1
2016-01-08 20:00:45 +00:00
Florian Weingarten
8449849ed5
Merge pull request #682 from Shopify/4-pre-beta1
...
4.0.0.rc1
2016-01-08 20:59:59 +01:00
Florian Weingarten
4bc198a0db
4.0.0.rc1
2016-01-08 19:59:38 +00:00
Florian Weingarten
3921dbe919
Merge pull request #683 from Shopify/dropify-tablerowloop
...
Liquid::TablerowloopDrop
2016-01-08 20:41:54 +01:00
Florian Weingarten
79e2d1d8b4
Liquid::TablerowloopDrop
2016-01-08 18:46:23 +00:00
Florian Weingarten
b7c4041db8
Merge pull request #681 from Shopify/save-some-loop-allocations
...
Reuse 'forloop' hash to save memory allocations
2016-01-06 22:47:39 +01:00
Florian Weingarten
e113c891ec
Convert forloop hash to drop
2016-01-06 21:30:32 +00:00
Guillaume Malette
a32ad449c0
Merge pull request #672 from Shopify/fix-proc-mapping
...
Test mapping over procs
2016-01-06 15:59:53 -05:00
Florian Weingarten
1662ba6679
Reuse 'forloop' hash to save memory allocations
2016-01-06 20:30:25 +00:00
Dylan Thacker-Smith
99b5e86f0a
Merge pull request #680 from jcheatham/master
...
Ensure truncate is operating on a string
2015-12-23 18:41:39 -05:00
Jonathan Cheatham
b892a73463
Ensure truncate is operating on a string
2015-12-22 19:40:35 -08:00
Guillaume Malette
0b55d09cea
Fix mapping over proc attributes
2015-11-20 13:04:42 -05:00
Dylan Thacker-Smith
5f8086572b
Merge pull request #667 from Shopify/remove-empty-string-check
...
Remove nil and empty string check in invoke_drop.
2015-11-10 10:43:11 -05:00
Dylan Thacker-Smith
bdb9a4a47f
Remove nil and empty string check in invoke_drop.
2015-11-09 15:03:36 -05:00
Dylan Thacker-Smith
c38eec0293
Merge pull request #665 from tanelj/escape_filter_nil_fix
...
Fixed issue where "nil" value for "escape" filter breaks rendering
2015-11-06 10:54:48 -05:00
Tanel Jakobsoo
8d5a907dc8
Fixed issue where "nil" value for "escape" filter breaks rendering
...
Closes #664
2015-11-06 16:32:02 +02:00
Florian Weingarten
74cc41ce74
Merge pull request #662 from nickpearson/keep-argument-error-backtrace
...
Keep original stack trace in Liquid::ArgumentError
2015-10-29 15:24:54 +01:00
Thierry Joyal
a120cc587a
Merge pull request #661 from Shopify/rename-before-method-as-dynamic-method
...
Rename before_method as liquid_method_missing
2015-10-29 09:49:15 -04:00
Nick Pearson
c582023321
Keep original stack trace in Liquid::ArgumentError
2015-10-29 08:15:37 -05:00
Thierry Joyal
ac041c4ad1
Rename before_method as liquid_method_missing
2015-10-28 17:28:19 +00:00
Justin Li
31d7682f4e
Update history to reflect merge of #658
...
[ci skip]
2015-10-21 12:50:12 -04:00
Justin Li
5f1acbc086
Merge pull request #658 from Shopify/url_decode-filter
...
Merge pull request 658
2015-10-21 12:49:14 -04:00
Justin Li
8612716129
Remove rescue in unescape filter
2015-10-21 02:01:21 -04:00
Larry Archer
e6392d1cc1
Tests for new url_decode filter
2015-10-21 01:58:22 -04:00
Larry Archer
04381418d3
Add url_decode filter to accompany url_encode
2015-10-21 01:58:22 -04:00
Justin Li
89ccdabe9a
Merge pull request #655 from dijonkitchen/patch-1
...
Rename MIT-LICENSE to LICENSE
2015-10-14 12:08:37 -04:00