Sha256: 656b141afcf4862acf32ba4565fbb7a661a1c2e821732123a8d6e602bded20e0

Contents?: true

Size: 553 Bytes

Versions: 7

Compression:

Stored size: 553 Bytes

Contents

# encoding: UTF-8
require 'rubygems'
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rake'
require 'rake/rdoctask'

require 'rspec/core'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)

task :default => :spec

Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'TftRails'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
tft_rails_dbc-0.1.3 Rakefile
tft_rails_dbc-0.1.1 Rakefile
tft_rails_dbc-0.1 Rakefile
tft_rails-0.6.2 Rakefile
tft_rails-0.6.1 Rakefile
tft_rails-0.6.0 Rakefile
tft_rails-0.5.1 Rakefile