README.md in actionview_precompiler-0.2.3 vs README.md in actionview_precompiler-0.3.0

- old
+ new

@@ -1,8 +1,8 @@ # ActionviewPrecompiler -Provides eager loading of ActionView templates. +Provides eager loading of Action View templates. This optimization aims to improve cold render times and to allow more memory to be shared via CoW on forking web servers. For more information see: @@ -29,10 +29,10 @@ We determine the locals passed to each template by parsing all templates looking for render calls and extracting the local keys passed to that. Right now this assumes every template with the same `virtual_path` takes the same locals (there may be smarter options, we just aren't doing them). A curse/blessing/actually still a curse of this approach is that mis-predicting render calls doesn't cause any issues, it just wastes RAM. -Templates are half-compiled using standard ActionView handlers, so this should work for erb/builder/haml/whatever. +Templates are half-compiled using standard Action View handlers, so this should work for erb/builder/haml/whatever. Parsing is done using either Ruby 2.6's `RubyVM::AbstractSyntaxTree` or JRuby's parser. ## Installation Add this line to your application's Gemfile: