Sha256: a88e8c1fd800bad0331a2083b52bba00674f06d649f60e089eb5bb1ef6d2c77d

Contents?: true

Size: 696 Bytes

Versions: 1

Compression:

Stored size: 696 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.

begin
  require 'bones'
  Bones.setup
rescue LoadError
  begin
    load 'tasks/setup.rb'
  rescue LoadError
    raise RuntimeError, '### please install the "bones" gem ###'
  end
end

ensure_in_path 'lib'
require 'jdi_hook'

task :default => 'spec:run'

PROJ.name = 'jdi_hook'
PROJ.authors = 'Eric Monti'
PROJ.email = 'emonti@matasano.com'
PROJ.url = 'http://github.com/emonti/jdi_hook'
PROJ.version = JdiHook::VERSION
PROJ.rubyforge.name = 'jdi_hook'
PROJ.readme_file = 'README.rdoc'

PROJ.spec.opts << '--color'

# EOF

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
emonti-jdi_hook-1.0.0 Rakefile