-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathavataaars.gemspec
33 lines (28 loc) · 1.23 KB
/
avataaars.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'avataaars/version'
Gem::Specification.new do |spec|
spec.name = 'avataaars'
spec.version = Avataaars::VERSION
spec.required_ruby_version = ['>= 3.0.0', '< 3.4.0']
spec.authors = ['Andrew Bromwich']
spec.email = %w[abromwich@studiosity.com]
spec.description = 'Ruby wrapper library to call to avataaars React component using NodeJS'
spec.summary = <<~SUMMARY.delete("\n")
A Ruby gem to transform attributes into avatar SVGs using the React avataaars library through NodeJS
SUMMARY
spec.homepage = 'https://github.com/Studiosity/avataaars-rb'
spec.license = 'MIT'
spec.files = `git ls-files lib`.split("\n")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^spec/})
spec.require_paths = ['lib']
spec.metadata = {
'rubygems_mfa_required' => 'true'
}
spec.add_development_dependency 'mini_magick', '~> 4.10'
spec.add_development_dependency 'rspec', '~> 3.9'
spec.add_development_dependency 'rubocop', '~> 0.86'
spec.add_development_dependency 'rubocop-rspec', '~> 1.41'
end