Sha256: a4cd15bbba61053c36b4ce7a32297489dbee3cbdadcce9e9edcd7f3752211c0b

Contents?: true

Size: 1.34 KB

Versions: 10

Compression:

Stored size: 1.34 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 = "mvpkit"
  gem.homepage = "http://github.com/ian/mvp"
  gem.license = "MIT"
  gem.summary = %Q{The start-to-finish 3 minute product platform}
  gem.description = %Q{Built for Developers. Ideal for MVPs, product ideation and validation.}
  gem.email = "ianhunter@gmail.com"
  gem.authors = ["Ian Hunter"]
  gem.executables = ['mvp']
  # 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 = "MVP #{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
mvpkit-2.0.2 Rakefile
mvpkit-2.0.1 Rakefile
mvpkit-2.0.0 Rakefile
mvpkit-1.1.2 Rakefile
mvpkit-1.1.1 Rakefile
mvpkit-1.1.0 Rakefile
mvpkit-1.0.4 Rakefile
mvpkit-1.0.3 Rakefile
mvpkit-1.0.2 Rakefile
mvpkit-1.0.1 Rakefile