-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-semaphore.gemspec
More file actions
22 lines (18 loc) · 957 Bytes
/
ruby-semaphore.gemspec
File metadata and controls
22 lines (18 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require_relative 'lib/semaphore/version'
Gem::Specification.new do |spec|
spec.name = 'ruby-semaphore'
spec.version = Semaphore::VERSION
spec.authors = ['Prince Karlo']
spec.email = ['77134068+princekarlo-bootyard@users.noreply.github.com']
spec.homepage = 'https://bootyard.com'
spec.summary = 'Ruby API Wrapper for https://semaphore.co/'
spec.description = 'This gem provides a simple and intuitive Ruby API wrapper for interacting with the Semaphore API.'
spec.license = 'MIT'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/princekarlo-bootyard/ruby-semaphore'
spec.metadata['changelog_uri'] = 'https://github.com/princekarlo-bootyard/ruby-semaphore/releases'
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir['{config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
end
spec.add_dependency 'faraday', '~> 2.7.12'
end