Sha256: 1344e5d8a61de354b76f563bb7e2707e6941fe71f9d309cae650f25a38472685

Contents?: true

Size: 872 Bytes

Versions: 10

Compression:

Stored size: 872 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
  begin
    load 'tasks/setup.rb'
  rescue LoadError
    raise RuntimeError, '### please install the "bones" gem ###'
  end
end

ensure_in_path 'lib'
require 'roart'

task :default => 'spec:run'

PROJ.name = 'roart'
PROJ.ignore_file = '.gitignore'
PROJ.authors = 'PJ Davis'
PROJ.email = 'pj.davis@gmail.com'
PROJ.url = 'http://github.com/pjdavis/roart'
PROJ.version = Roart::VERSION
PROJ.rubyforge.name = 'roart'
PROJ.exclude = %w(.git pkg coverage)
PROJ.description = "Interface for working with Request Tracker (RT) tickets inspired by ActiveRecord."
PROJ.rdoc.main = 'README.rdoc'
depend_on 'mechanize'

PROJ.spec.opts << '--color'

# EOF

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
pjdavis-roart-0.1.0 Rakefile
pjdavis-roart-0.1.2 Rakefile
pjdavis-roart-0.1.3 Rakefile
pjdavis-roart-0.1.4 Rakefile
roart-0.1.7 Rakefile
roart-0.1.6 Rakefile
roart-0.1.5.1 Rakefile
roart-0.1.5 Rakefile
threetee-roart-0.1.4 Rakefile
roart-0.1.4 Rakefile