Sha256: ac05a0c6c853504317f5d220b7681365836af12d36775fb4926c3cc0bbdf957d
Contents?: true
Size: 1.53 KB
Versions: 3
Compression:
Stored size: 1.53 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} -S 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| files=Dir['test/*.rdoctest'].map {|f| File.expand_path(f)}.join(' ') exit(1) if !system("#{RUBYDOCTEST} #{files}") 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", "< 3.0.0"]) 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-1.1.0.pre3 | Rakefile |
hobofields-1.1.0.pre2 | Rakefile |
hobofields-1.0.2 | Rakefile |