mirror of
https://github.com/rubyjs/libv8
synced 2023-03-27 23:21:48 -04:00
White space fixes
This commit is contained in:
parent
cbaa8cae9f
commit
2da19215f6
1 changed files with 10 additions and 7 deletions
|
@ -26,8 +26,9 @@ module Libv8
|
||||||
verify_installation!
|
verify_installation!
|
||||||
return exit_status
|
return exit_status
|
||||||
end
|
end
|
||||||
|
|
||||||
def configure(context = MkmfContext.new)
|
def configure(context = MkmfContext.new)
|
||||||
context.incflags.insert 0, Libv8::Paths.include_paths.map{|p| "-I#{p}"}.join(" ") + " "
|
context.incflags.insert 0, Libv8::Paths.include_paths.map{ |p| "-I#{p}" }.join(" ") + " "
|
||||||
context.ldflags.insert 0, Libv8::Paths.object_paths.join(" ") + " "
|
context.ldflags.insert 0, Libv8::Paths.object_paths.join(" ") + " "
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -40,7 +41,9 @@ module Libv8
|
||||||
fail ArchiveNotFound, p unless File.exist? p
|
fail ArchiveNotFound, p unless File.exist? p
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
class HeaderNotFound < StandardError; end
|
class HeaderNotFound < StandardError; end
|
||||||
|
|
||||||
class ArchiveNotFound < StandardError
|
class ArchiveNotFound < StandardError
|
||||||
def initialize(filename)
|
def initialize(filename)
|
||||||
super "libv8 did not install properly, expected binary v8 archive '#{filename}'to exist, but it was not found"
|
super "libv8 did not install properly, expected binary v8 archive '#{filename}'to exist, but it was not found"
|
||||||
|
|
Loading…
Reference in a new issue