-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjopilot-api.gemspec
More file actions
24 lines (19 loc) · 1.14 KB
/
jopilot-api.gemspec
File metadata and controls
24 lines (19 loc) · 1.14 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
Gem::Specification.new do |spec|
spec.name = "jopilot-api"
spec.version = "0.1.0"
spec.authors = ["JoPilot"]
spec.email = ["support@jopilot.net"]
spec.summary = "A Ruby library to interact with the JoPilot API, allowing job search integration into applications."
spec.description = "JoPilot-API is a Ruby library designed to interact with the JoPilot API, allowing developers to integrate AI-powered job search functionality into their applications."
spec.homepage = "https://jopilot.net"
spec.license = "MIT"
spec.files = Dir["jopilot_api.rb", "README.md", "LICENSE.txt"]
spec.require_paths = ["."]
spec.add_dependency "json"
spec.add_dependency "net-http"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/jopilot-net/JoPilotAPI-ruby"
spec.metadata["api_uri"] = "https://api.jopilot.net/swagger/index.html"
spec.metadata["github_repo"] = "https://api.jopilot.net/swagger/index.html"
spec.metadata["allowed_push_host"] = "https://rubygems.pkg.github.com/jopilot-net"
end