Sha256: 4ed822ac92e92ea349dd99e46851fa12f63b8d7b2b8577364123855c05ded1fe

Contents?: true

Size: 935 Bytes

Versions: 3

Compression:

Stored size: 935 Bytes

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |jewel|
    jewel.name = 'foreign_keys'
    jewel.summary = 'Foreign key sypport for Rails (MySQL, PostgreSQL)'
    jewel.homepage = 'http://github.com/dwalters/foreign_keys/tree/master'
    jewel.description = 'Foreign key support plugin for Rails and MySQL, with schema dumper integration'
    jewel.authors = ["Dan Walters"]
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

desc 'Default: run unit tests.'
task :default => :rdoc

desc 'Generate documentation for the smurf plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Foreign keys'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README.markdown')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
perfectline-foreign_keys-1.1.0 Rakefile
perfectline-foreign_keys-1.2.0 Rakefile
foreign_keys-1.2.0 Rakefile