Sha256: 47cb5c6baa094d8d1df867dfe91e49073583cc40c4184f2f099448eb7184b965

Contents?: true

Size: 974 Bytes

Versions: 1

Compression:

Stored size: 974 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

1 entries across 1 versions & 1 rubygems

Version Path
schleyfox-hookr-1.0.1 Rakefile