Sha256: 92389fffe5269336b8b74f098462f9fcb580ced58b0562b5d1aa4333a8da66ce

Contents?: true

Size: 979 Bytes

Versions: 4

Compression:

Stored size: 979 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 = 'schleyfox-hookr'
PROJ.authors = 'Avdi Grimm'
PROJ.email = 'avdi@avdi.org'
PROJ.url = 'http://hookr.rubyforge.org'
PROJ.version = HookR::VERSION
PROJ.rubyforge.name = 'hookr'

PROJ.ann.email[:from]     = 'avdi@avdi.org'
PROJ.ann.email[:to]       = 'ruby-talk@ruby-lang.org'
PROJ.ann.email[:server]   = 'smtp.gmail.com'
PROJ.ann.email[:domain]   = 'avdi.org'
PROJ.ann.email[:port]     = 587
PROJ.ann.email[:acct]     = 'avdi.grimm'
PROJ.ann.email[:authtype] = :plain

# 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

4 entries across 2 versions & 1 rubygems

Version Path
firetower-0.1.1 hookr/Rakefile
firetower-0.1.1 hookr/pkg/schleyfox-hookr-1.0.1/Rakefile
firetower-0.1.0 hookr/Rakefile
firetower-0.1.0 hookr/pkg/schleyfox-hookr-1.0.1/Rakefile