Sha256: 9176c359fe78d4019483417a2a390dedaaa8c8468a45d78a8343ff0bbce4de87

Contents?: true

Size: 1.37 KB

Versions: 22

Compression:

Stored size: 1.37 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://guides.rubygems.org/specification-reference/ for more options
  gem.name = "tarvit-helpers"
  gem.homepage = "http://github.com/tarvit/tarvit-helpers"
  gem.license = "MIT"
  gem.summary = %Q{ Simple extensions to standard Ruby classes and useful helpers. }
  gem.description = %Q{ Simple extensions to standard Ruby classes and useful helpers. }
  gem.email = "vetal.tarasenko@gmail.com"
  gem.authors = ["Vitaly Tarasenko"]
  # 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

desc "Code coverage detail"
task :simplecov do
  ENV['COVERAGE'] = "true"
  Rake::Task['test'].execute
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 = "tarvit-helpers #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
tarvit-helpers-0.0.23 Rakefile
tarvit-helpers-0.0.22 Rakefile
tarvit-helpers-0.0.21 Rakefile
tarvit-helpers-0.0.20 Rakefile
tarvit-helpers-0.0.19 Rakefile
tarvit-helpers-0.0.18 Rakefile
tarvit-helpers-0.0.17 Rakefile
tarvit-helpers-0.0.16 Rakefile
tarvit-helpers-0.0.15 Rakefile
tarvit-helpers-0.0.14 Rakefile
tarvit-helpers-0.0.13 Rakefile
tarvit-helpers-0.0.12 Rakefile
tarvit-helpers-0.0.11 Rakefile
tarvit-helpers-0.0.10 Rakefile
tarvit-helpers-0.0.9 Rakefile
tarvit-helpers-0.0.8 Rakefile
tarvit-helpers-0.0.6 Rakefile
tarvit-helpers-0.0.5 Rakefile
tarvit-helpers-0.0.4 Rakefile
tarvit-helpers-0.0.3 Rakefile