mirror of
https://github.com/sdsykes/fastimage.git
synced 2025-10-05 00:02:33 -04:00
Add a CHANGELOG to track changed to the library (only covering changes from 2.2.3 for now) Add bundle/gem_tasks to make publishing the gem easier Bump version to 2.2.4
24 lines
447 B
Ruby
24 lines
447 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "rdoc/task"
|
|
require "rake/testtask"
|
|
require "bundler/gem_tasks"
|
|
|
|
# Generate documentation
|
|
Rake::RDocTask.new do |rd|
|
|
rd.main = "README.rdoc"
|
|
rd.rdoc_files.include("*.rdoc", "lib/**/*.rb")
|
|
rd.rdoc_dir = "rdoc"
|
|
end
|
|
|
|
#require 'bundler'
|
|
#Bundler::GemHelper.install_tasks
|
|
|
|
Rake::TestTask.new do |t|
|
|
t.libs << "test"
|
|
t.test_files = FileList['test/test.rb']
|
|
t.verbose = true
|
|
end
|
|
|
|
task :default => :test
|