~ubuntu-branches/ubuntu/utopic/ruby-gir-ffi/utopic-proposed

« back to all changes in this revision

Viewing changes to Rakefile

  • Committer: Package Import Robot
  • Author(s): TANIGUCHI Takaki
  • Date: 2014-06-22 16:13:36 UTC
  • mfrom: (10.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140622161336-zo88bzrlqw71cpyy
Tags: 0.7.4-1
* Imported Upstream version 0.7.4
* Bump Standards-Version to 3.9.5 (with no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
load 'tasks/setup.rb'
 
1
require 'rake/clean'
 
2
require 'bundler/gem_helper'
 
3
 
 
4
class MyGemHelper < Bundler::GemHelper
 
5
  def version_tag
 
6
    "version-#{version}"
 
7
  end
 
8
end
 
9
 
 
10
MyGemHelper.install_tasks
 
11
 
 
12
begin
 
13
  require 'repl_rake'
 
14
  ReplRake.setup
 
15
rescue LoadError
 
16
end
 
17
 
 
18
load 'tasks/test.rake'
 
19
load 'tasks/valgrind.rake'
 
20
load 'tasks/yard.rake'
2
21
 
3
22
task :default => 'test:all'