mirror of
https://github.com/nishiki/botish.git
synced 2024-11-23 08:07:52 +00:00
add gemspec file
This commit is contained in:
parent
c97353243b
commit
2bb2525331
1 changed files with 20 additions and 0 deletions
20
botish.gemspec
Normal file
20
botish.gemspec
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# coding: utf-8
|
||||||
|
|
||||||
|
lib = File.expand_path('../lib', __FILE__)
|
||||||
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
||||||
|
|
||||||
|
Gem::Specification.new do |spec|
|
||||||
|
spec.name = 'botish'
|
||||||
|
spec.version = File.open('VERSION').read
|
||||||
|
spec.authors = ['Adrien Waksberg']
|
||||||
|
spec.email = ['botish@yae.im']
|
||||||
|
spec.summary = 'Botish is an IRC bot'
|
||||||
|
spec.description = 'Botish is an IRC modular bot, you can add your own plugins'
|
||||||
|
spec.homepage = 'https://github.com/nishiki/botish'
|
||||||
|
spec.license = 'GPL-2.0'
|
||||||
|
|
||||||
|
spec.files = %x(git ls-files -z).split("\x0")
|
||||||
|
spec.executables = ['botish']
|
||||||
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
||||||
|
spec.require_paths = ['lib']
|
||||||
|
end
|
Loading…
Reference in a new issue