Sha256: 9e2c87ccdd42df9e181f9d7cb0825f512ee7ca80dc9f6c82880bc3035857c21f

Contents?: true

Size: 1.16 KB

Versions: 9

Compression:

Stored size: 1.16 KB

Contents

require 'active_record'
ActiveRecord::ActiveRecordError # hack for https://rails.lighthouseapp.com/projects/8994/tickets/2577-when-using-activerecordassociations-outside-of-rails-a-nameerror-is-thrown
require File.dirname(__FILE__) + '/lib/hobo_support.rb'

RUBY = File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name']).sub(/.*\s.*/m, '"\&"')
RUBYDOCTEST = ENV['RUBYDOCTEST'] || "#{RUBY} -S rubydoctest"

namespace "test" do
  desc "Run the doctests"
  task :doctest do |t|
    files=Dir['test/*.rdoctest','test/hobosupport/*.rdoctest'].map {|f| File.expand_path(f)}.join(' ')
    exit(1) if !system("#{RUBYDOCTEST} --single #{files}")
  end
end

# --- build gem via Jeweler --- #

require 'jeweler'
Jeweler::Tasks.new do |gemspec|
  gemspec.version      = HoboSupport::VERSION
  gemspec.name         = "hobosupport"
  gemspec.email        = "tom@tomlocke.com"
  gemspec.summary      = "Core Ruby extensions from the Hobo project"
  gemspec.homepage     = "http://hobocentral.net/"
  gemspec.authors      = ["Tom Locke"]
  gemspec.rubyforge_project = "hobosupport"
end
Jeweler::GemcutterTasks.new
Jeweler::RubyforgeTasks.new do |rubyforge|
  rubyforge.doc_task = false
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
hobosupport-1.1.0.pre3 Rakefile
hobosupport-1.1.0.pre2 Rakefile
hobosupport-1.1.0.pre0 Rakefile
hobosupport-1.0.2 Rakefile
hobosupport-1.0.1 Rakefile
hobosupport-1.0.0 Rakefile
hobosupport-0.9.106 Rakefile
hobosupport-0.9.105 Rakefile
hobosupport-0.9.104 Rakefile