Skip to content

Commit

Permalink
Closure Compiler 0.1.8, with ghazel's fix for the capitalized POpen4 …
Browse files Browse the repository at this point in the history
…gem.
  • Loading branch information
jashkenas committed Jan 27, 2010
1 parent 5725f17 commit 9d846b0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.textile
Expand Up @@ -2,7 +2,7 @@ h1. The Closure Compiler (as a Ruby Gem)

The *closure-compiler* gem is a svelte wrapper around the "Google Closure Compiler":http://code.google.com/closure/compiler/ for JavaScript compression.

Latest Version: *"0.1.7":http://gemcutter.org/gems/closure-compiler*
Latest Version: *"0.1.8":http://gemcutter.org/gems/closure-compiler*

The Closure Compiler's *2009-12-17* JAR-file is included with the gem, so you'll need *Java 6* installed in order to run the compiler.

Expand Down
4 changes: 2 additions & 2 deletions closure-compiler.gemspec
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|
s.name = 'closure-compiler'
s.version = '0.1.7' # Keep version in sync with closure-compiler.rb
s.date = '2010-1-23'
s.version = '0.1.8' # Keep version in sync with closure-compiler.rb
s.date = '2010-1-27'

s.homepage = "http://github.com/documentcloud/closure-compiler/"
s.summary = "Ruby Wrapper for the Google Closure Compiler"
Expand Down
2 changes: 1 addition & 1 deletion lib/closure-compiler.rb
Expand Up @@ -2,7 +2,7 @@

module Closure

VERSION = "0.1.7"
VERSION = "0.1.8"

COMPILER_VERSION = "20091217"

Expand Down
2 changes: 1 addition & 1 deletion lib/closure/compiler.rb
@@ -1,5 +1,5 @@
require 'rubygems'
require 'popen4'
require 'POpen4'
require 'stringio'

module Closure
Expand Down

0 comments on commit 9d846b0

Please sign in to comment.