File: Rakefile

package info (click to toggle)
ruby-ntlm 0.6.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 408 kB
  • sloc: ruby: 2,663; makefile: 6
file content (25 lines) | stat: -rw-r--r-- 515 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require "bundler/gem_tasks"
require 'github_changelog_generator/task'

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

task :default => :spec

desc "Generate code coverage"
task :coverage do
  ENV['COVERAGE'] = 'true'
  Rake::Task["spec"].execute
end

desc "Open a Pry console for this library"
task :console do
  require 'pry'
  require 'net/ntlm'
  ARGV.clear
  Pry.start
end

GitHubChangelogGenerator::RakeTask.new :changelog do |config|
  config.future_release = Net::NTLM::VERSION::STRING
end