-
Notifications
You must be signed in to change notification settings - Fork 3
/
glare.gemspec
35 lines (26 loc) · 1.14 KB
/
glare.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
35
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'glare/version'
Gem::Specification.new do |spec|
spec.name = 'glare'
spec.version = Glare::VERSION
spec.authors = ['Jose Luis Salas', 'Omar Lopez']
spec.email = ['josacar@users.noreply.github.com', 'olopez@users.noreply.github.com']
spec.summary = 'API client for CloudFlare v4 API'
spec.homepage = 'https://github.com/peertransfer/glare'
spec.license = 'MIT'
files = Dir['lib/**/*.rb']
rootfiles = ['Gemfile', 'glare.gemspec', 'README.md', 'LICENSE']
dotfiles = ['.gitignore', '.rspec']
spec.files = files + rootfiles + dotfiles
spec.test_files = Dir['spec/**/*.{rb,json}']
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '>= 1.9'
spec.add_development_dependency 'rake', '~> 12.3'
spec.add_development_dependency 'rspec', '~> 3.7'
spec.add_dependency 'faraday', '~> 1.0'
spec.add_dependency 'faraday_middleware', '>= 1.0.0'
spec.add_dependency 'public_suffix', '>= 3.0.2'
spec.required_ruby_version = '>= 2.7.0'
end