Sha256: eab7519ba26a00700078b2c3a700cea7f3b31d4012ebf851677b20b913371c2c

Contents?: true

Size: 515 Bytes

Versions: 3

Compression:

Stored size: 515 Bytes

Contents

# frozen_string_literal: true

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'

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

task default: :spec

require 'sdoc'
RDoc::Task.new(:doc) do |rdoc|
  rdoc.rdoc_dir = 'doc'

  rdoc.title = 'RailsStuff'

  rdoc.options << '--markup' << 'markdown'
  rdoc.options << '-e' << 'UTF-8'
  rdoc.options << '--format' << 'sdoc'
  rdoc.options << '--template' << 'rails'
  rdoc.options << '--all'

  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
telegram-bot-0.16.5 Rakefile
telegram-bot-0.16.4 Rakefile
telegram-bot-0.16.3 Rakefile