Sha256: e8f4d97f96f00ab9e295a73545d1b1da3e2aecaecac85857db262e08da9bcfcb

Contents?: true

Size: 1.24 KB

Versions: 10

Compression:

Stored size: 1.24 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 = "timescopes"
  gem.homepage = "http://github.com/ian/timescopes"
  gem.license = "MIT"
  gem.summary = %Q{General time scoping}
  gem.description = %Q{}
  gem.email = "ianhunter@gmail.com"
  gem.authors = ["Ian Hunter"]
  # 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 = "timescopes #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
timescopes-0.1.9 Rakefile
timescopes-0.1.8 Rakefile
timescopes-0.1.7 Rakefile
timescopes-0.1.6 Rakefile
timescopes-0.1.5 Rakefile
timescopes-0.1.4 Rakefile
timescopes-0.1.3 Rakefile
timescopes-0.1.2 Rakefile
timescopes-0.1.1 Rakefile
timescopes-0.1.0 Rakefile