Sha256: 4ca0937472c55d46c5823803690ccbb54e7729c4fe70e0bbb905b78f7475cf99

Contents?: true

Size: 926 Bytes

Versions: 13

Compression:

Stored size: 926 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' #this will go away when a stdlib adapter gets written

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

# EOF

Version data entries

13 entries across 13 versions & 3 rubygems

Version Path
ludo-roart-0.1.16 Rakefile
ludo-roart-0.1.15 Rakefile
ludo-roart-0.1.14 Rakefile
ludo-roart-0.1.13 Rakefile
ludo-roart-0.1.12 Rakefile
ludo-roart-0.1.11 Rakefile
roart-0.1.10 Rakefile
axtro-roart-0.1.9.2 Rakefile
axtro-roart-0.1.9.1 Rakefile
roart-0.1.9 Rakefile
axtro-roart-0.1.9 Rakefile
axtro-roart-0.1.8 Rakefile
roart-0.1.8 Rakefile