-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpodcast_api.gemspec
More file actions
41 lines (37 loc) · 1.52 KB
/
podcast_api.gemspec
File metadata and controls
41 lines (37 loc) · 1.52 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
38
39
40
41
# frozen_string_literal: true
$LOAD_PATH.unshift(::File.join(::File.dirname(__FILE__), "lib"))
require "version"
Gem::Specification.new do |s|
s.name = "podcast_api"
s.version = PodcastApi::VERSION
s.required_ruby_version = ">= 2.3.0"
s.summary = "Ruby bindings for the Listen Notes Podcast API"
s.description = "Listen Notes is the best podcast search engine and api. " \
"This is the official Ruby Gem for the Listen Notes Podcast API. " \
"See https://www.PodcastAPI.com/ for details."
s.author = "Listen Notes, Inc."
s.email = "hello@listennotes.com"
s.homepage = "https://www.PodcastAPI.com/"
s.license = "MIT"
s.add_runtime_dependency "httparty", '~> 0.20.0'
s.metadata = {
"bug_tracker_uri" => "https://github.com/ListenNotes/podcast-api-ruby/issues",
"changelog_uri" =>
"https://github.com/ListenNotes/podcast-api-ruby/releases",
"documentation_uri" => "https://www.listennotes.com/podcast-api/docs/",
"github_repo" => "https://github.com/ListenNotes/podcast-api-ruby",
"homepage_uri" => "https://www.PodcastAPI.com/",
"source_code_uri" => "https://github.com/ListenNotes/podcast-api-ruby",
}
ignored = Regexp.union(
/\A\.editorconfig/,
/\A\.git/,
/\A\.rubocop/,
/\A\.travis.yml/,
/\Atest/
)
s.files = `git ls-files`.split("\n").reject { |f| ignored.match(f) }
s.executables = `git ls-files -- bin/*`.split("\n")
.map { |f| ::File.basename(f) }
s.require_paths = ["lib"]
end