closure-compiler 0.1.8 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,7 +2,7 @@ h1. The Closure Compiler (as a Ruby Gem)
2
2
 
3
3
  The *closure-compiler* gem is a svelte wrapper around the "Google Closure Compiler":http://code.google.com/closure/compiler/ for JavaScript compression.
4
4
 
5
- Latest Version: *"0.1.8":http://gemcutter.org/gems/closure-compiler*
5
+ Latest Version: *"0.1.9":http://gemcutter.org/gems/closure-compiler*
6
6
 
7
7
  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.
8
8
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'closure-compiler'
3
- s.version = '0.1.8' # Keep version in sync with closure-compiler.rb
3
+ s.version = '0.1.9' # Keep version in sync with closure-compiler.rb
4
4
  s.date = '2010-1-27'
5
5
 
6
6
  s.homepage = "http://github.com/documentcloud/closure-compiler/"
@@ -2,7 +2,7 @@ require File.expand_path(File.dirname(__FILE__) + '/closure/compiler')
2
2
 
3
3
  module Closure
4
4
 
5
- VERSION = "0.1.8"
5
+ VERSION = "0.1.9"
6
6
 
7
7
  COMPILER_VERSION = "20091217"
8
8
 
@@ -1,5 +1,5 @@
1
1
  require 'rubygems'
2
- require 'POpen4'
2
+ require 'popen4'
3
3
  require 'stringio'
4
4
 
5
5
  module Closure
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: closure-compiler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Ashkenas