Top Level Namespace

Defined Under Namespace

Modules: A, Ctags, ModuleExample Classes: C, D, Example, Test, UtilitiesController, X

Constant Summary collapse

CWD =
File.expand_path('../', __FILE__)

Instance Method Summary collapse

Instance Method Details

#f0Object



1
# File 'ext/vendor/ctags/Units/parser-ruby.r/ruby-doc.d/input.rb', line 1

def f0; end

#f1Object

def bug1 end



8
# File 'ext/vendor/ctags/Units/parser-ruby.r/ruby-doc.d/input.rb', line 8

def f1; end

#f2Object

def bug2 end



15
# File 'ext/vendor/ctags/Units/parser-ruby.r/ruby-doc.d/input.rb', line 15

def f2; end

#f3Object

def bug3 end



22
# File 'ext/vendor/ctags/Units/parser-ruby.r/ruby-doc.d/input.rb', line 22

def f3; end

#method_or_classObject



3
4
5
6
7
8
# File 'ext/vendor/ctags/Units/parser-ruby.r/ruby-geany-sf-bug-542.d/input.rb', line 3

def method_or_class
  for x in 0..1 do
    for y in 0..1 do
    end
  end
end

#nothingObject



8
9
10
# File 'ext/vendor/ctags/Units/parser-ruby.r/ruby-block-call.d/input.rb', line 8

def nothing
	puts "nothing"
end

#plopObject



2
3
4
5
6
# File 'ext/vendor/ctags/Units/parser-ruby.r/ruby-block-call.d/input.rb', line 2

def plop
	[ 1, 2, 3, 4 ].each do |x|
		x > 0
	end.all?
end

#sys(cmd) ⇒ Object



4
5
6
7
8
9
10
11
12
# File 'ext/extconf.rb', line 4

def sys(cmd)
  puts "  -- #{cmd}"
  unless ret = xsystem(cmd)
    puts " ==> tail -15 #{CWD}/mkmf.log"
    puts File.readlines("#{CWD}/mkmf.log").last(15).join("")
    raise "#{cmd} failed"
  end
  ret
end