Sha256: 5d9170e0ba71d8f88119fcdce7a1171dc928e02bd5a9648601bccad504a114fc

Contents?: true

Size: 474 Bytes

Versions: 10

Compression:

Stored size: 474 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.rcov = true
  spec.rcov_opts = ['-Ilib -Ispec --exclude spec,gems']
end

task :default => :spec

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "fb_graph #{File.read('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
fb_graph-1.8.3 Rakefile
fb_graph-1.8.2 Rakefile
fb_graph-1.8.1 Rakefile
fb_graph-1.8.0 Rakefile
fb_graph-1.8.0.alpha2 Rakefile
fb_graph-1.7.5 Rakefile
fb_graph-1.8.0.alpha Rakefile
fb_graph-1.7.4 Rakefile
fb_graph-1.7.3 Rakefile
fb_graph-1.7.2 Rakefile