Skip to content

Commit

Permalink
Merging in Josh's tidy changes, and, unfortunately, reverting most of…
Browse files Browse the repository at this point in the history
… them.
  • Loading branch information
jashkenas committed Mar 23, 2011
2 parents 5f9061d + ca8c8c5 commit 99d51c9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions lib/closure-compiler.rb
Expand Up @@ -8,10 +8,10 @@ module Closure

COMPILER_ROOT = File.expand_path(File.dirname(__FILE__))

COMPILER_JAR = COMPILER_ROOT + "/../vendor/closure-compiler-#{COMPILER_VERSION}.jar"
COMPILER_JAR = File.join(COMPILER_ROOT, "closure-compiler-#{COMPILER_VERSION}.jar")

end

require 'stringio'
require Closure::COMPILER_ROOT + '/closure/popen'
require Closure::COMPILER_ROOT + '/closure/compiler'
require File.join(Closure::COMPILER_ROOT, 'closure/popen')
require File.join(Closure::COMPILER_ROOT, 'closure/compiler')
2 changes: 1 addition & 1 deletion lib/closure/compiler.rb
Expand Up @@ -57,4 +57,4 @@ def command
end

end
end
end
2 changes: 1 addition & 1 deletion test/test_helper.rb
Expand Up @@ -2,4 +2,4 @@

class Test::Unit::TestCase
include Closure
end
end

0 comments on commit 99d51c9

Please sign in to comment.