Sha256: 5129732adeb8cc838daba041c08c0ae18fbe95c6ffc707f9d97c57377a617307
Contents?: true
Size: 1.46 KB
Versions: 3
Compression:
Stored size: 1.46 KB
Contents
require 'rubygems' 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 RUBY = File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name']).sub(/.*\s.*/m, '"\&"') RUBYDOCTEST = ENV['RUBYDOCTEST'] || "#{RUBY} `which rubydoctest`" $:.unshift File.join(File.expand_path(File.dirname(__FILE__)), '/../hobofields/lib') $:.unshift File.join(File.expand_path(File.dirname(__FILE__)), '/../hobosupport/lib') require 'hobosupport' require 'hobofields' namespace "test" do desc "Run the doctests" task :doctest do |t| exit(1) if !system("#{RUBYDOCTEST} test/*.rdoctest") end desc "Run the unit tests" task :unit do |t| Dir["test/test_*.rb"].each do |f| exit(1) if !system("#{RUBY} #{f}") end end end require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.version = HoboFields::VERSION gemspec.name = "hobofields" gemspec.email = "tom@tomlocke.com" gemspec.summary = "Rich field types and migration generator for Rails" gemspec.homepage = "http://hobocentral.net/" gemspec.authors = ["Tom Locke"] gemspec.rubyforge_project = "hobo" gemspec.add_dependency("rails", [">= 2.2.2"]) gemspec.add_dependency("hobosupport", ["= #{HoboFields::VERSION}"]) end Jeweler::GemcutterTasks.new Jeweler::RubyforgeTasks.new do |rubyforge| rubyforge.doc_task = false end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
hobofields-0.9.103 | Rakefile |
hobofields-0.9.102 | Rakefile |
hobofields-0.9.101 | Rakefile |