-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfastcomments.gemspec
More file actions
27 lines (22 loc) · 1.1 KB
/
fastcomments.gemspec
File metadata and controls
27 lines (22 loc) · 1.1 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
Gem::Specification.new do |spec|
spec.name = "fastcomments"
spec.version = "1.2.1"
spec.authors = ["FastComments"]
spec.email = ["support@fastcomments.com"]
spec.summary = "FastComments Ruby SDK"
spec.description = "A Ruby SDK for interacting with the FastComments API"
spec.homepage = "https://github.com/fastcomments/fastcomments"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7.0"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/fastcomments/fastcomments/issues",
"changelog_uri" => "https://github.com/fastcomments/fastcomments/blob/master/CHANGELOG.md",
"source_code_uri" => "https://github.com/fastcomments/fastcomments",
"documentation_uri" => "https://github.com/fastcomments/fastcomments/blob/master/README.md"
}
spec.files = Dir.glob("{lib,client}/**/*") + %w[README.md LICENSE]
spec.require_paths = ["lib", "client/lib"]
spec.add_runtime_dependency "typhoeus", "~> 1.0", ">= 1.0.1"
spec.add_development_dependency "rspec", "~> 3.12"
spec.add_development_dependency "rake", "~> 13.0"
end