closure-compiler 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,9 +2,9 @@ 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: *"1.1.1":http://gemcutter.org/gems/closure-compiler*
5
+ Latest Version: *"1.1.2":http://gemcutter.org/gems/closure-compiler*
6
6
 
7
- The Closure Compiler's *2011-03-22* JAR-file is included with the gem.
7
+ The Closure Compiler's *2011-08-11* JAR-file is included with the gem.
8
8
 
9
9
  h2. Installation
10
10
 
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'closure-compiler'
3
- s.version = '1.1.1' # Keep version in sync with closure-compiler.rb
4
- s.date = '2011-3-23'
3
+ s.version = '1.1.2' # Keep version in sync with closure-compiler.rb
4
+ s.date = '2011-08-12'
5
5
 
6
6
  s.homepage = "http://github.com/documentcloud/closure-compiler/"
7
7
  s.summary = "Ruby Wrapper for the Google Closure Compiler"
@@ -15,7 +15,6 @@ Gem::Specification.new do |s|
15
15
 
16
16
  s.require_paths = ['lib']
17
17
 
18
- s.has_rdoc = true
19
18
  s.rdoc_options << '--title' << 'Ruby Closure Compiler' <<
20
19
  '--exclude' << 'test' <<
21
20
  '--all'
@@ -1,8 +1,8 @@
1
1
  module Closure
2
2
 
3
- VERSION = "1.1.1"
3
+ VERSION = "1.1.2"
4
4
 
5
- COMPILER_VERSION = "20110322"
5
+ COMPILER_VERSION = "20110811"
6
6
 
7
7
  JAVA_COMMAND = 'java'
8
8
 
@@ -13,5 +13,4 @@ module Closure
13
13
  end
14
14
 
15
15
  require 'stringio'
16
- require File.join(Closure::COMPILER_ROOT, 'closure/popen')
17
- require File.join(Closure::COMPILER_ROOT, 'closure/compiler')
16
+ require 'closure/compiler'
@@ -1,3 +1,5 @@
1
+ require 'closure/popen'
2
+
1
3
  module Closure
2
4
 
3
5
  # We raise a Closure::Error when compilation fails for any reason.
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: closure-compiler
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 1
10
- version: 1.1.1
9
+ - 2
10
+ version: 1.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jeremy Ashkenas
@@ -16,8 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-03-23 00:00:00 -04:00
20
- default_executable:
19
+ date: 2011-08-12 00:00:00 Z
21
20
  dependencies: []
22
21
 
23
22
  description: " A Ruby Wrapper for the Google Closure Compiler.\n"
@@ -31,13 +30,12 @@ extra_rdoc_files: []
31
30
  files:
32
31
  - lib/closure/compiler.rb
33
32
  - lib/closure/popen.rb
34
- - lib/closure-compiler-20110322.jar
33
+ - lib/closure-compiler-20110811.jar
35
34
  - lib/closure-compiler.rb
36
35
  - closure-compiler.gemspec
37
36
  - README.textile
38
37
  - LICENSE
39
38
  - COPYING
40
- has_rdoc: true
41
39
  homepage: http://github.com/documentcloud/closure-compiler/
42
40
  licenses: []
43
41
 
@@ -71,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
71
69
  requirements: []
72
70
 
73
71
  rubyforge_project: closure-compiler
74
- rubygems_version: 1.6.2
72
+ rubygems_version: 1.7.2
75
73
  signing_key:
76
74
  specification_version: 3
77
75
  summary: Ruby Wrapper for the Google Closure Compiler