-
Notifications
You must be signed in to change notification settings - Fork 47
/
tdlib-ruby.gemspec
34 lines (28 loc) · 1.31 KB
/
tdlib-ruby.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
28
29
30
31
32
33
34
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tdlib/version'
Gem::Specification.new do |gem|
gem.name = "tdlib-ruby"
gem.version = TD::VERSION
gem.summary = 'Ruby bindings and client for TDlib'
gem.description = 'Ruby bindings and client for TDlib'
gem.license = "MIT"
gem.authors = ["Southbridge"]
gem.email = "[email protected]"
gem.homepage = "https://github.com/centosadmin/tdlib-ruby"
gem.files = `git ls-files`.split($/) - ['lib/tdlib/td_api_tl_parser.rb']
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.add_runtime_dependency 'dry-configurable', '~> 0.9'
gem.add_runtime_dependency 'concurrent-ruby', '~> 1.1'
gem.add_runtime_dependency 'ffi', '~> 1.15.0'
gem.add_runtime_dependency 'tdlib-schema'
gem.add_development_dependency 'bundler', '~> 2.0'
gem.add_development_dependency 'rake', '~> 13.0'
gem.add_development_dependency 'rspec', '~> 3.0'
gem.add_development_dependency 'rubygems-tasks', '~> 0.2'
gem.add_development_dependency 'yard', '~> 0.9'
gem.add_development_dependency 'pry', '~> 0.11'
end