Sha256: 87f116f7f7e604268a0d9a2e06a761df0989069657668757991570e5f9fbf69a

Contents?: true

Size: 1.32 KB

Versions: 23

Compression:

Stored size: 1.32 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 is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "ourkudos"
  gem.homepage = "http://ourkudos.com"
  gem.license = "MIT"
  gem.summary = %Q{OurKudos client api gem}
  gem.description = %Q{OurKudos client api gem}
  gem.email = "marcin.walczak@gmail.com"
  gem.authors = ["Marcin Walczak"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
  test.libs << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
  test.rcov_opts << '--exclude "gems/*"'
end

task :default => :test

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

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

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
ourkudos-0.0.38 Rakefile
ourkudos-0.0.37 Rakefile
ourkudos-0.0.34 Rakefile
ourkudos-0.0.33 Rakefile
ourkudos-0.0.31 Rakefile
ourkudos-0.0.30 Rakefile
ourkudos-0.0.29 Rakefile
ourkudos-0.0.21 Rakefile
ourkudos-0.0.19 Rakefile
ourkudos-0.0.18 Rakefile
ourkudos-0.0.17 Rakefile
ourkudos-0.0.16 Rakefile
ourkudos-0.0.15 Rakefile
ourkudos-0.0.12 Rakefile
ourkudos-0.0.11 Rakefile
ourkudos-0.0.10 Rakefile
ourkudos-0.0.9 Rakefile
ourkudos-0.0.8 Rakefile
ourkudos-0.0.7 Rakefile
ourkudos-0.0.6 Rakefile