Sha256: f43aaa814db315db66aadb10dcff39cb41f1de5f612bce1db2bbda718182af02

Contents?: true

Size: 1.48 KB

Versions: 15

Compression:

Stored size: 1.48 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 = "skeptic"
  gem.homepage = "http://github.com/skanev/skeptic"
  gem.license = "MIT"
  gem.summary = %Q{Skeptic points out annoying things in your code}
  gem.description = %Q{An experimental, half-assed, bug-ridden and highly opinionated code analyzer.}
  gem.email = "stefan.kanev@gmail.com"
  gem.authors = ["Stefan Kanev"]
  # dependencies defined in Gemfile
  gem.files.exclude 'spec/**/*.rb'
  gem.files.exclude 'features/**/*.rb'
  gem.files.exclude 'tmp'
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

require 'cucumber/rake/task'
Cucumber::Rake::Task.new(:features)

task :default => :spec

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

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

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
skeptic-0.0.16 Rakefile
skeptic-0.0.15 Rakefile
skeptic-0.0.14 Rakefile
skeptic-0.0.12 Rakefile
skeptic-0.0.11 Rakefile
skeptic-0.0.10 Rakefile
skeptic-0.0.9 Rakefile
skeptic-0.0.8 Rakefile
skeptic-0.0.7 Rakefile
skeptic-0.0.6 Rakefile
skeptic-0.0.5 Rakefile
skeptic-0.0.4 Rakefile
skeptic-0.0.3 Rakefile
skeptic-0.0.2 Rakefile
skeptic-0.0.1 Rakefile