Sha256: c39840f403c75d2fe9714c5abd11e16cb9153cc1dc21fbd28d6c18c275e649d1

Contents?: true

Size: 915 Bytes

Versions: 1

Compression:

Stored size: 915 Bytes

Contents

# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.

load 'tasks/setup.rb'

ensure_in_path 'lib'
require 'rubot'

task :default => 'spec:run'

PROJ.name = 'rubot'
PROJ.authors = 'Peter Jaros (Peeja)'
PROJ.email = 'peter.a.jaros@gmail.com'
PROJ.url = 'http://rubot.org/'
# PROJ.rubyforge_name = 'rubot'
PROJ.version = Rubot.version

PROJ.executables = ['rubot']
PROJ.dependencies << ['rice', '>= 1.0.1'] << ['facets', '>= 2.3.0']

PROJ.spec_opts += File.read('spec/spec.opts').split
PROJ.spec_opts << '-fs'

# Don't expect test coverage of any file with an absolute path.
PROJ.rcov_opts << '--exclude' << '^/' << '--exclude' << 'meta.rb$'
PROJ.rcov_threshold_exact = true

PROJ.exclude << '^\.git/' << '\.gitignore$' << '/\.DS_Store$' << '^\.DS_Store$' << '/\._' << '^\._' << 'mkmf.log'

# EOF

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
Peeja-rubot-0.5.0 Rakefile