Sha256: 7a1612a77db69f31039baa2d3c1a7de246f3b7cca6f37240911bf6c7f60542b8

Contents?: true

Size: 1.11 KB

Versions: 10

Compression:

Stored size: 1.11 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 = 'bhf'
  gem.homepage = 'http://antpaw.github.io/bhf'
  gem.licenses = 'MIT'
  gem.summary = 'Agnostic Rails backend'
  gem.description = 'Gets you there on time'
  gem.email = 'anton.pawlik@gmail.com'
  gem.authors = ['Anton Pawlik']
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 = "bhf #{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
bhf-0.9.2 Rakefile
bhf-0.9.1 Rakefile
bhf-0.9.0 Rakefile
bhf-0.8.7 Rakefile
bhf-0.8.6 Rakefile
bhf-0.8.5 Rakefile
bhf-0.8.4 Rakefile
bhf-0.8.3 Rakefile
bhf-0.8.2 Rakefile
bhf-0.8.0 Rakefile