Skip to content

Commit 4ae4436

Browse files
committed
Prep for 1.1.12 release
* Update module version * Update README version * Update README URLs
1 parent 25d067f commit 4ae4436

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.textile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
h1. The Closure Compiler (as a Ruby Gem)
22

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

5-
Latest Version: *"1.1.11":http://rubygems.org/gems/closure-compiler*
5+
Latest Version: *"1.1.12":https://rubygems.org/gems/closure-compiler*
66

77
The Closure Compiler's *2015-10-15* JAR-file is included with the gem.
88

@@ -34,7 +34,7 @@ Closure::Compiler.new.compile_files(['underscore.js', 'jasmine.js']))
3434
=> "(function(){var j=this,m=j._;function i(a){......
3535
</pre>
3636

37-
When creating a @Closure::Compiler@, you can pass "any options that the command-line compiler accepts":http://code.google.com/closure/compiler/docs/gettingstarted_app.html to the initializer and they'll be forwarded. For example, to raise the compilation level up a notch:
37+
When creating a @Closure::Compiler@, you can pass "any options that the command-line compiler accepts":https://developers.google.com/closure/compiler/docs/gettingstarted_app to the initializer and they'll be forwarded. For example, to raise the compilation level up a notch:
3838

3939
<pre>
4040
closure = Closure::Compiler.new(:compilation_level => 'ADVANCED_OPTIMIZATIONS')

lib/closure-compiler.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module Closure
22

3-
VERSION = "1.1.11"
3+
VERSION = "1.1.12"
44

55
COMPILER_VERSION = "20151015"
66

0 commit comments

Comments
 (0)