Sha256: 564d58d0aa07c3c686a192c99094cc3c16fc463a8b482f34496afbe9665a3113

Contents?: true

Size: 1.13 KB

Versions: 11

Compression:

Stored size: 1.13 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 = "rubocop"
  gem.homepage = "http://github.com/bbatsov/rubocop"
  gem.license = "MIT"
  gem.summary = %Q{Automatic Ruby code style checking tool.}
  gem.description = %Q{Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.}
  gem.email = "bozhidar@batsov.com"
  gem.authors = ["Bozhidar Batsov"]
  # dependencies defined in Gemfile
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

desc 'Run RSpec with code coverage'
task :coverage do
  ENV['COVERAGE'] = 'true'
  Rake::Task['spec'].execute
end

task :default => :spec

require 'yard'
YARD::Rake::YardocTask.new

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rubocop-0.5.0 Rakefile
rubocop-0.4.6 Rakefile
rubocop-0.4.5 Rakefile
rubocop-0.4.4 Rakefile
rubocop-0.4.3 Rakefile
rubocop-0.4.2 Rakefile
rubocop-0.4.1 Rakefile
rubocop-0.4.0 Rakefile
rubocop-0.3.2 Rakefile
rubocop-0.3.1 Rakefile
rubocop-0.3.0 Rakefile