Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/mkmf.rb

Overview

:stopdoc:

Instance Method Summary collapse

Instance Method Details

#funcall_styleObject



27
28
29
# File 'lib/mkmf.rb', line 27

def funcall_style
  /\)\z/ =~ self ? dup : "#{self}()"
end

#quoteObject

Wraps a string in escaped quotes if it contains whitespace.



13
14
15
# File 'lib/mkmf.rb', line 13

def quote
  /\s/ =~ self ? "\"#{self}\"" : "#{self}"
end

#sans_argumentsObject



31
32
33
# File 'lib/mkmf.rb', line 31

def sans_arguments
  self[/\A[^()]+/]
end

#tr_cppObject

Generates a string used as cpp macro name.



23
24
25
# File 'lib/mkmf.rb', line 23

def tr_cpp
  strip.upcase.tr_s("^A-Z0-9_*", "_").tr_s("*", "P")
end

#unspaceObject

Escape whitespaces for Makefile.



18
19
20
# File 'lib/mkmf.rb', line 18

def unspace
  gsub(/\s/, '\\\\\\&')
end