-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtinaja-bot.gemspec
27 lines (24 loc) · 1003 Bytes
/
tinaja-bot.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
# frozen_string_literal: true
require File.expand_path('lib/tinaja-bot/version', __dir__)
Gem::Specification.new do |s|
s.name = 'tinaja-bot'
s.version = TinajaBot::VERSION
s.executables << 'tinaja-bot'
s.summary = 'A bot for TINAJA Ingeniería Discord server'
s.description = 'A bot for TINAJA Ingeniería Discord server'
s.authors = ['Eleazar Meza']
s.email = 'meza.eleazar@gmail.com'
s.homepage = 'https://github.com/elshaka/tinaja-bot'
s.license = 'MIT'
s.files = Dir['README.md', 'LICENSE',
'CHANGELOG.md', 'lib/**/*.rb',
'lib/**/*.rake',
'tinaja-bot.gemspec',
'Gemfile', 'Rakefile']
s.extra_rdoc_files = ['README.md']
s.required_ruby_version = '~> 3.3'
s.add_dependency 'discordrb', '~> 3.5'
s.add_dependency 'httparty', '~> 0.22.0'
s.add_dependency 'watir', '~> 7.3'
s.metadata['rubygems_mfa_required'] = 'true'
end