-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhati-jsonapi-error.gemspec
More file actions
35 lines (26 loc) · 1.24 KB
/
hati-jsonapi-error.gemspec
File metadata and controls
35 lines (26 loc) · 1.24 KB
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 'hati_jsonapi_error/version'
Gem::Specification.new do |spec|
spec.name = 'hati-jsonapi-error'
spec.version = HatiJsonapiError::VERSION
spec.authors = ['Marie Giy']
spec.email = %w[giy.mariya@gmail.com]
spec.license = 'MIT'
spec.summary = 'Standardized JSON: API-compliant error responses made easy for your Web API.'
spec.description = 'hati-jsonapi-error is a Ruby gem for Standardized JSON Error.'
spec.homepage = "https://github.com/hackico-ai/#{spec.name}"
spec.required_ruby_version = '>= 3.0.0'
spec.files = Dir['CHANGELOG.md', 'LICENSE', 'README.md', 'hati-jsonapi-error.gemspec', 'lib/**/*']
spec.bindir = 'bin'
spec.executables = []
spec.require_paths = ['lib']
spec.metadata['repo_homepage'] = spec.homepage
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['bug_tracker_uri'] = "#{spec.homepage}/issues"
spec.metadata['rubygems_mfa_required'] = 'true'
end