Sha256: d34cba8de2b1453d486258fab8eb527d794b5403e4c0a65347e18260fad7edf2

Contents?: true

Size: 672 Bytes

Versions: 1

Compression:

Stored size: 672 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
  load 'tasks/setup.rb'
end

ensure_in_path 'lib'
require 'hookr'

task :default => 'spec:run'

PROJ.name = 'hookr'
PROJ.authors = 'Avdi Grimm'
PROJ.email = 'avdi@avdi.org'
PROJ.url = 'http://hookr.rubyforge.org'
PROJ.version = HookR::VERSION
PROJ.rubyforge.name = 'hookr'

# TODO I want to be able to use -w here, but RSpec produces a hojillion warnings
PROJ.ruby_opts = []
PROJ.spec.opts << '--color'

depend_on 'fail-fast', '1.0.0'

# EOF

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hookr-1.0.1 Rakefile