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

Update README.textile #52

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
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
14 changes: 14 additions & 0 deletions README.textile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,20 @@ sudo gem install closure-compiler

h2. Usage

h3. Rails

In `config/environments/production.rb`:
<pre>
config.assets.js_compressor = Closure::Compiler.new
</pre>

Specifically for ECMAScript6 support, use this instead:
<pre>
config.assets.js_compressor = Closure::Compiler.new(language_in: 'ECMASCRIPT6')
</pre>

h3. General

The @Closure::Compiler@ has a @compile@ method, which can be passed a string or an open @IO@ object, and returns the compiled JavaScript. The result is returned as a string, or, if a block is passed, yields as an @IO@ object for streaming writes.

<pre>
Expand Down