-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreclaim.gemspec
More file actions
37 lines (30 loc) · 1.54 KB
/
reclaim.gemspec
File metadata and controls
37 lines (30 loc) · 1.54 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
36
37
# frozen_string_literal: true
require_relative 'lib/reclaim/version'
Gem::Specification.new do |spec|
spec.name = 'reclaim'
spec.version = Reclaim::VERSION
spec.authors = ['Benjamin Jackson']
spec.email = ['ben@hearmeout.co']
spec.summary = 'Ruby client for Reclaim.ai API'
spec.description = 'A comprehensive Ruby library for interacting with the Reclaim.ai API. ' \
'Provides task management functionality with proper error handling, ' \
'time scheme resolution, caching, and a command-line interface.'
spec.homepage = 'https://github.com/benjaminjackson/reclaim-ruby'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.0.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/benjaminjackson/reclaim-ruby'
spec.metadata['changelog_uri'] = 'https://github.com/benjaminjackson/reclaim-ruby/blob/main/CHANGELOG.md'
spec.metadata['bug_tracker_uri'] = 'https://github.com/benjaminjackson/reclaim-ruby/issues'
# Specify which files should be added to the gem when it is released.
spec.files = Dir['lib/**/*.rb', 'bin/*', 'LICENSE.txt', 'README.md', 'CHANGELOG.md']
spec.bindir = 'bin'
spec.executables = ['reclaim']
spec.require_paths = ['lib']
# No runtime dependencies - uses stdlib only
# Development dependencies
spec.add_development_dependency 'dotenv', '~> 2.8'
spec.add_development_dependency 'minitest', '~> 5.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'yard', '~> 0.9'
end