Sha256: b43a47be91b6b5b090fe848ab9a60332d0c45bcf29006a066dc57a8f2aae8a20

Contents?: true

Size: 619 Bytes

Versions: 21

Compression:

Stored size: 619 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

require "chatterbot/version"

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

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov_opts = %w{--exclude .bundler,.rvm}
  spec.rcov = true
end

task :default => :spec

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  rdoc.main = "README.rdoc"
  rdoc.rdoc_files.include("README.rdoc", "lib/**/*.rb")
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "'chatterbot #{Chatterbot::VERSION}'"
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
chatterbot-0.7.1 Rakefile
chatterbot-0.7.0 Rakefile
chatterbot-0.6.6 Rakefile
chatterbot-0.6.5 Rakefile
chatterbot-0.6.3 Rakefile
chatterbot-0.6.2 Rakefile
chatterbot-0.6.1 Rakefile
chatterbot-0.5.1 Rakefile
chatterbot-0.5.0 Rakefile
chatterbot-0.4.0 Rakefile
chatterbot-0.3.0 Rakefile
chatterbot-0.2.9 Rakefile
chatterbot-0.2.8 Rakefile
chatterbot-0.2.7 Rakefile
chatterbot-0.2.6 Rakefile
chatterbot-0.2.5 Rakefile
chatterbot-0.2.4 Rakefile
chatterbot-0.2.3 Rakefile
chatterbot-0.2.2 Rakefile
chatterbot-0.2.1 Rakefile