Sha256: 0d16a148f3600a150f54351150ce25314ad1a7bf131df46442e13406d0189450

Contents?: true

Size: 840 Bytes

Versions: 11

Compression:

Stored size: 840 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  require 'tr8n/version'
  
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Tr8n #{Tr8n::VERSION}'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("../local/tr8n_server/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'

Bundler::GemHelper.install_tasks

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

task :default => :spec

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
tr8n-3.2.3 Rakefile
tr8n-3.2.2 Rakefile
tr8n-3.2.1 Rakefile
tr8n-3.2.0 Rakefile
tr8n-3.1.8 Rakefile
tr8n-3.1.7 Rakefile
tr8n-3.1.6 Rakefile
tr8n-3.1.5 Rakefile
tr8n-3.1.4 Rakefile
tr8n-3.1.3 Rakefile
tr8n-3.1.2 Rakefile