-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathminisky.gemspec
More file actions
31 lines (23 loc) · 1.02 KB
/
minisky.gemspec
File metadata and controls
31 lines (23 loc) · 1.02 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
# frozen_string_literal: true
minisky_version = File.read(File.join(__dir__, 'lib', 'minisky', 'version.rb')).match(/VERSION = "(.*)"/)[1]
Gem::Specification.new do |spec|
spec.name = "minisky"
spec.version = minisky_version
spec.authors = ["Kuba Suder"]
spec.email = ["jakub.suder@gmail.com"]
spec.summary = "A minimal client of Bluesky/ATProto API"
spec.description = "A very simple client class that lets you log in to the Bluesky API and make any requests there."
spec.homepage = "https://ruby.sdk.blue"
spec.license = "Zlib"
spec.required_ruby_version = ">= 2.6.0"
spec.metadata = {
"bug_tracker_uri" => "https://tangled.org/mackuba.eu/minisky/issues",
"changelog_uri" => "https://tangled.org/mackuba.eu/minisky/blob/master/CHANGELOG.md",
"source_code_uri" => "https://tangled.org/mackuba.eu/minisky",
}
spec.files = Dir.chdir(__dir__) do
Dir['*.md'] + Dir['*.txt'] + Dir['lib/**/*'] + Dir['sig/**/*']
end
spec.require_paths = ["lib"]
spec.add_dependency 'base64', '~> 0.1'
end