-
Notifications
You must be signed in to change notification settings - Fork 0
/
cinch-calculate.gemspec
27 lines (24 loc) · 1.19 KB
/
cinch-calculate.gemspec
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cinch/plugins/calculate/version'
Gem::Specification.new do |gem|
gem.name = 'cinch-calculate'
gem.version = Cinch::Plugins::Calculate::VERSION
gem.authors = ['Brian Haberer', 'Paul Visscher']
gem.email = ['[email protected]']
gem.description = %q(Cinch Plugin to alow users to pass mathematical problems to the bot for evaluation)
gem.summary = %q(Cinch Plugin for Math)
gem.homepage = 'https://github.com/canonical-hackers/cinch-calculate'
gem.license = 'MIT'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(/^bin\//).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(/^(test|spec|features)\//)
gem.require_paths = ['lib']
gem.add_development_dependency 'rake', '~> 10'
gem.add_development_dependency 'rspec', '~> 3'
gem.add_development_dependency 'cinch-test', '~> 0.1', '>= 0.1.1'
gem.add_development_dependency 'codeclimate-test-reporter', '~> 0.4'
gem.add_dependency 'cinch', '~> 2'
gem.add_dependency 'cinch-cooldown', '~> 1.1', '>= 1.1.7'
end