Sha256: 190a3006d47edc343fb12a74fdacbf62335af55c7228bbf12e96e71cf097f6c6

Contents?: true

Size: 578 Bytes

Versions: 14

Compression:

Stored size: 578 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'ConversationForms'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/**/*.rb')
end






require 'bundler/gem_tasks'

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end


task default: :test

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
conversation_forms-2.0.2 Rakefile
conversation_forms-2.0.1 Rakefile
conversation_forms-2.0.0 Rakefile
conversation_forms-1.0.1 Rakefile
conversation_forms-1.0.0 Rakefile
conversation_forms-0.7.3 Rakefile
conversation_forms-0.7.2 Rakefile
conversation_forms-0.7.1 Rakefile
conversation_forms-0.7.0 Rakefile
conversation_forms-0.6.0 Rakefile
conversation_forms-0.5.0 Rakefile
conversation_forms-0.3.0 Rakefile
conversation_forms-0.2.0 Rakefile
conversation_forms-0.1.0 Rakefile