Sha256: a3d869dac1910c60d71041fa1ae315f3eef9df95a94a5e3494df482a7adcea28
Contents?: true
Size: 967 Bytes
Versions: 2
Compression:
Stored size: 967 Bytes
Contents
# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "tgbot/version" Gem::Specification.new do |spec| spec.name = "tgbot" spec.version = Tgbot::VERSION spec.authors = ["hyrious"] spec.email = ["hyrious@outlook.com"] spec.summary = 'Telegram Bot API' spec.description = 'A deadly simple Telegram Bot API wrapper.' spec.homepage = 'https://github.com/hyrious/tgbot' spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler" spec.add_development_dependency "rake" spec.add_dependency 'http' spec.add_dependency 'mimemagic' spec.required_ruby_version = '>= 2.6.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tgbot-0.4.6 | tgbot.gemspec |
tgbot-0.3.2 | tgbot.gemspec |