-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtelegram-auth.gemspec
33 lines (28 loc) · 1.18 KB
/
telegram-auth.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "telegram/auth"
Gem::Specification.new do |spec|
spec.name = "telegram-auth"
spec.version = Telegram::Auth::VERSION
spec.authors = ["Aninda"]
spec.email = ["spacefugitive@gmail.com"]
spec.homepage = "https://github.com/spacefugitive/telegram-auth"
spec.summary = %q{Gem to verify the auth hash for a telegram domain login}
spec.description = %q{Gem to verify the auth hash for a telegram domain login}
spec.license = "MIT"
spec.require_paths = ["lib"]
spec.files = Dir["lib/**/*"]
spec.add_development_dependency "bundler", "~> 2.2.6"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.9"
spec.add_development_dependency "timecop", "~> 0.9.2"
spec.add_development_dependency "sorbet", "~> 0.5.6294"
spec.required_ruby_version = ">= 2.4.0"
case RUBY_PLATFORM
when /java/
spec.add_runtime_dependency("jruby-openssl", ["~> 0.10.5"])
spec.platform = Gem::Platform::local
else
spec.add_runtime_dependency("openssl", ["~> 2.2.0"])
end
end