Sha256: a97c96ddb1c11885430de3d325586ec2ef98e1958174096ceff3353a102f2f54

Contents?: true

Size: 607 Bytes

Versions: 2

Compression:

Stored size: 607 Bytes

Contents

# Author::    The Uttk eam.                                        -*- ruby -*-
# Copyright:: Copyright (c) 2004, 2005 Uttk team. All rights reserved.
# License::   LGPL
# Revision::  $Id: /w/fey/uttk/trunk/Rakefile 31169 2006-10-22T22:28:09.400880Z ertai  $

require 'rubygems'
require_gem 'core_ex'
load 'core_ex/rakefile_base.rf'

RTAGS = 'rtags'
SRC = FileList['**/*.rb', 'bin/uttk', 'bin/uttk-unit']
VIMTAGS = 'vim_tags'


task :emacs_tags => [] do
  sh "#{RTAGS} #{SRC}"
end

task :vim_tags => [] do
  sh "#{RTAGS} --vi -f #{VIMTAGS} #{SRC}"
end

task :clean => [] do
  sh "rm -f TAGS #{VIMTAGS}"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
uttk-0.4.6.1 Rakefile
uttk-0.4.5.0 Rakefile