Sha256: 7f342c8f69b8b42c3a8eb8ad8c0680944a3434e1d2b0804fa1e932d5452abca3

Contents?: true

Size: 464 Bytes

Versions: 4

Compression:

Stored size: 464 Bytes

Contents

# frozen_string_literal: true

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    = 'ActsAsContactable'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

load 'rails/tasks/statistics.rake'

require 'bundler/gem_tasks'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
acts-as-contactable-0.2.2 Rakefile
acts-as-contactable-0.2.1 Rakefile
acts-as-contactable-0.2.0 Rakefile
acts-as-contactable-0.1.10 Rakefile