Sha256: b62832ca8703e421df604a28369b5068e835c6db3dd15975dd6e7432c1bafd56

Contents?: true

Size: 956 Bytes

Versions: 14

Compression:

Stored size: 956 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$ logging.gemspec]
PROJ.rdoc.exclude << '^data'
PROJ.rdoc.include << '^examples/.*\.rb'
#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
PROJ.ann.email[:from] = 'Tim Pease'

depend_on 'flexmock'
depend_on 'lockfile'

# EOF

Version data entries

14 entries across 14 versions & 3 rubygems

Version Path
TwP-logging-1.0.0 Rakefile
TwP-logging-1.1.0 Rakefile
TwP-logging-1.1.1 Rakefile
TwP-logging-1.1.2 Rakefile
TwP-logging-1.1.3 Rakefile
TwP-logging-1.1.4 Rakefile
pjstadig-logging-1.1.4.1 Rakefile
pjstadig-logging-1.1.4.2 Rakefile
logging-1.1.1 Rakefile
logging-1.1.3 Rakefile
logging-1.1.4 Rakefile
logging-1.0.0 Rakefile
logging-1.1.0 Rakefile
logging-1.1.2 Rakefile