Sha256: deeee0f3f8fe28e7a86980b0bae9cec4206d1768307553335d3cfd00207a835d

Contents?: true

Size: 741 Bytes

Versions: 1

Compression:

Stored size: 741 Bytes

Contents

# encoding: utf-8

begin
  require 'bones'
rescue LoadError
  abort '### Please install the "bones" gem ###'
end

ensure_in_path 'lib'
proj = 'thumbo'
require "#{proj}/version"

Bones{
  version Thumbo::VERSION

  # ruby_opts [''] # silence warning, too many in addressable and/or dm-core
  depend_on 'rmagick', :version => '>=2.6.0'

  name    proj
  url     "http://github.com/godfat/#{proj}"
  authors 'Lin Jen-Shin (aka godfat 真常)'
  email   'godfat (XD) godfat.org'

  history_file   'CHANGES'
   readme_file   'README.rdoc'
   ignore_file   '.gitignore'
  rdoc.include   ['\w+']
}

CLEAN.include Dir['**/*.rbc']

task :default do
  Rake.application.options.show_task_pattern = /./
  Rake.application.display_tasks_and_comments
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
thumbo-0.6.0 Rakefile