Sha256: 4fe634bda0327d4abd81a5fb272450a3089790020a6f3390486826f98352015c

Contents?: true

Size: 1.42 KB

Versions: 1

Compression:

Stored size: 1.42 KB

Contents

require 'rubygems'
require 'rake'
require 'rake/testtask'
require 'rcov/rcovtask'
require 'rake/rdoctask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |g|
    g.name = 'has_many_translations'
    g.summary = %(Makes models' speak in tongues)
    g.description = %(Keep a DRY multilingual translation of your ActiveRecord models' textual attributes)
    g.email = 'mjording@openogotham.com'
    g.homepage = 'http://github.com/opengotham/has_many_translations'
    g.authors = %w(opengotham)
    g.add_dependency 'activerecord', '>= 2.1.0'
    g.add_development_dependency 'shoulda'
    g.add_development_dependency 'mocha'
    g.add_runtime_dependency 'opengotham-rtranslate'
    g.add_runtime_dependency 'activequeue'
    g.add_runtime_dependency 'settingslogic'
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts 'Jeweler (or a dependency) not available. Install it with: gem install jeweler'
end

Rake::TestTask.new do |t|
  t.libs = %w(test)
  t.pattern = 'test/**/*_test.rb'
end

Rcov::RcovTask.new do |t|
  t.libs = %w(test)
  t.pattern = 'test/**/*_test.rb'
end

task :test => :check_dependencies
task :default => :test

Rake::RDocTask.new do |r|
  version = File.exist?('VERSION') ? File.read('VERSION') : nil
  r.rdoc_dir = 'rdoc'
  r.title = ['has_many_translations', version].compact.join(' ')
  r.options << '--line-numbers' << '--inline-source'
  r.rdoc_files.include('README*')
  r.rdoc_files.include('lib/**/*.rb')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
has_many_translations-0.3.3 Rakefile