Sha256: 1330d45934353f90ebe2fb02e171a2fa59d6687c602b0de43c2ef2878b6ac1da

Contents?: true

Size: 1.48 KB

Versions: 11

Compression:

Stored size: 1.48 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  gem.name = "ajax-cat"
  gem.homepage = "http://github.com/hypertornado/ajax-cat"
  gem.license = "MIT"
  gem.summary = %Q{computer-aided translation backed by machine translation}
  gem.description = %Q{computer-aided translation backed by machine translation}
  gem.email = "odchazel@gmail.com"
  gem.authors = ["Ondrej Odchazel"]
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.test_files = FileList['test/unit/test_*.rb','test/integration/test_*.rb']
  test.verbose = false
end

namespace :test do
  Rake::TestTask.new(:unit) do |test|
    test.libs << 'lib' << 'test'
    test.test_files = FileList['test/unit/test_*.rb']
    test.verbose = false
  end
  Rake::TestTask.new(:integration) do |test|
    test.libs << 'lib' << 'test'
    test.test_files = FileList['test/integration/test_*.rb']
    test.verbose = false
  end
end

task :default => :test

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "ajax-cat #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
ajax-cat-2.1.0 Rakefile
ajax-cat-2.0.5 Rakefile
ajax-cat-2.0.4 Rakefile
ajax-cat-2.0.3 Rakefile
ajax-cat-2.0.2 Rakefile
ajax-cat-2.0.1 Rakefile
ajax-cat-1.0.0 Rakefile
ajax-cat-0.5.0 Rakefile
ajax-cat-0.4.2 Rakefile
ajax-cat-0.4.1 Rakefile
ajax-cat-0.4.0 Rakefile