forked from discordrb/discordrb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiscordrb-webhooks.gemspec
26 lines (20 loc) · 958 Bytes
/
discordrb-webhooks.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'discordrb/webhooks/version'
Gem::Specification.new do |spec|
spec.name = 'discordrb-webhooks'
spec.version = Discordrb::Webhooks::VERSION
spec.authors = ['meew0']
spec.email = ['']
spec.summary = 'Webhook client for discordrb'
spec.description = "A client for Discord's webhooks to fit alongside [discordrb](https://rubygems.org/gems/discordrb)."
spec.homepage = 'https://github.com/meew0/discordrb'
spec.license = 'MIT'
spec.files = `git ls-files -z lib/discordrb/webhooks/`.split("\x0") + ['lib/discordrb/webhooks.rb']
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'rest-client', '>= 2.1.0.rc1'
spec.required_ruby_version = '>= 2.1.0'
end