-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
29 lines (26 loc) · 1004 Bytes
/
Rakefile
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
26
27
28
29
# vim: set filetype=ruby et sw=2 ts=2:
require 'gem_hadar'
GemHadar do
name 'more_math'
author 'Florian Frank'
email '[email protected]'
homepage "https://github.com/flori/#{name}"
summary 'Library that provides more mathematics.'
description 'Library that provides more mathematical functions/algorithms than standard Ruby.'
test_dir 'tests'
ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', 'coverage', '.rvmrc',
'.AppleDouble', 'tags', '.byebug_history', '.DS_Store'
readme 'README.md'
title "#{name.camelize} -- More Math in Ruby"
package_ignore '.all_images.yml', '.gitignore', 'VERSION', '.utilsrc',
*Dir.glob('.github/**/*', File::FNM_DOTMATCH)
required_ruby_version '>= 2.0'
dependency 'tins', '~>1.0'
dependency 'mize'
development_dependency 'rake'
development_dependency 'simplecov'
development_dependency 'test-unit'
development_dependency 'debug'
development_dependency 'all_images'
licenses << 'MIT'
end