-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnameday_api.gemspec
32 lines (25 loc) · 1.28 KB
/
nameday_api.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
# frozen_string_literal: true
require_relative 'lib/nameday_api/version'
Gem::Specification.new do |spec|
spec.name = 'nameday_api'
spec.version = NamedayApi::VERSION
spec.authors = ['Daniyal Qureshi']
spec.email = ['[email protected]']
spec.summary = 'A Ruby gem for fetching nameday information.'
spec.description = 'NamedayApi is a Ruby gem that provides a simple interface to fetch nameday information from the "nameday.abalin.net" API.'
spec.homepage = 'https://github.com/Daniyal-Qureshi/nameday_api_gem'
spec.required_ruby_version = '>= 2.6.0'
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/Daniyal-Qureshi/nameday_api_gem' # Correct the source code URL
spec.metadata['changelog_uri'] = 'https://github.com/Daniyal-Qureshi/nameday_api_gem/blob/main/CHANGELOG.md' # Correct the changelog URL
spec.license = 'MIT'
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
end
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
end