Sha256: aba030aa242890296119c460478e2b4041bc4a7a8026950d6de59241656bd78c

Contents?: true

Size: 941 Bytes

Versions: 9

Compression:

Stored size: 941 Bytes

Contents

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 'rspec/core/rake_task'

desc 'Default: run specs and cucumber features.'
task :default => [:spec, :cucumber]

desc "Run specs"
RSpec::Core::RakeTask.new do |t|
end

require "cucumber/rake/task"
desc 'Run cucumber features'
Cucumber::Rake::Task.new(:cucumber) do |task|
  task.cucumber_opts = ["features"]
end

begin
  require 'rdoc/task'
rescue LoadError
  require 'rake/rdoctask' # deprecated in Ruby 1.9.3 but needed for Ruby 1.8.7 and JRuby
end
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
table_print-1.2.0 Rakefile
table_print-1.1.5 Rakefile
table_print-1.1.4 Rakefile
table_print-1.1.3 Rakefile
table_print-1.1.2 Rakefile
table_print-1.1.1 Rakefile
table_print-1.1.0 Rakefile
table_print-1.0.1 Rakefile
table_print-1.0.0 Rakefile