-
Notifications
You must be signed in to change notification settings - Fork 0
/
minisky.gemspec
31 lines (23 loc) · 999 Bytes
/
minisky.gemspec
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
require_relative "lib/minisky/version"
Gem::Specification.new do |spec|
spec.name = "minisky"
spec.version = Minisky::VERSION
spec.authors = ["Kuba Suder"]
spec.email = ["[email protected]"]
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://github.com/mackuba/minisky"
spec.license = "Zlib"
spec.required_ruby_version = ">= 2.6.0"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/mackuba/minisky/issues",
"changelog_uri" => "https://github.com/mackuba/minisky/blob/master/CHANGELOG.md",
"source_code_uri" => "https://github.com/mackuba/minisky",
}
spec.files = Dir.chdir(__dir__) do
Dir['*.md'] + Dir['*.txt'] + Dir['example/*.rb'] + Dir['lib/**/*'] + Dir['sig/**/*']
end
spec.require_paths = ["lib"]
spec.add_dependency 'base64', '~> 0.1'
end