Sha256: 3861bac6dbd00d5167245c5256c21971e1098a04328c1cf3008703f0415aa78b

Contents?: true

Size: 864 Bytes

Versions: 2

Compression:

Stored size: 864 Bytes

Contents

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 'logging'

task :default => 'test:run'

PROJ.name = 'logging'
PROJ.summary = 'A flexible and extendable logging library for Ruby'
PROJ.authors = 'Tim Pease'
PROJ.email = 'tim.pease@gmail.com'
PROJ.url = 'http://logging.rubyforge.org/'
PROJ.rubyforge.name = 'logging'
PROJ.version = Logging::VERSION
PROJ.readme_file = 'README.rdoc'
PROJ.ignore_file = '.gitignore'

PROJ.exclude << %w[^tags$]
PROJ.rdoc.exclude << '^data'
#PROJ.rdoc.dir = 'doc/rdoc'
#PROJ.rdoc.remote_dir = 'rdoc'
PROJ.rdoc.dir = 'doc'
PROJ.rdoc.remote_dir = ''

PROJ.ann.email[:server] = 'smtp.gmail.com'
PROJ.ann.email[:port] = 587

depend_on 'flexmock'
depend_on 'lockfile'

# EOF

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
ottobar-logging-0.9.5.1 Rakefile
logging-0.9.5 Rakefile