-
Notifications
You must be signed in to change notification settings - Fork 1
/
vkteamsbot.gemspec
26 lines (20 loc) · 991 Bytes
/
vkteamsbot.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
require_relative './lib/vkteamsbot.rb'
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |s|
s.name = "vkteamsbot"
s.version = VKTeams::VERSION
s.authors = ["Protska Arthur"]
s.email = ["[email protected]"]
s.license = '0BSD'
s.summary = %q{Ruby wrapper for VK Teams Bot API.}
s.description = %q{This gem is a simple and minimalistic library for creating VK Teams bots.}
s.homepage = "https://github.com/akkrat/ruby-vkteamsbot"
# s.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
s.metadata["homepage_uri"] = s.homepage
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
s.bindir = 'exe'
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ['lib']
s.add_dependency 'requests', '~> 1.0', '>= 1.0.2'
end