-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotion_scribe.gemspec
28 lines (22 loc) · 1.05 KB
/
notion_scribe.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
# frozen_string_literal: true
require_relative "lib/notion_scribe/version"
Gem::Specification.new do |spec|
spec.name = "notion_scribe"
spec.version = "0.5.0"
spec.authors = ["Azzen Abidi"]
spec.email = ["[email protected]"]
spec.summary = "A Ruby DSL to create Notion pages effortlessly."
spec.description = "This gem allows users to create and customize Notion pages with a simple Ruby DSL."
spec.homepage = "https://github.com/azzenabidi/notion_scribe"
spec.license = "MIT"
spec.files = Dir["lib/**/*.rb"]
spec.require_paths = ["lib"]
spec.add_dependency 'httparty', '~> 0.22.0' # Use the latest minor version you're comfortable with.
spec.required_ruby_version = '>= 3.0'
# Metadata for additional links
spec.metadata = {
"homepage_uri" => "https://github.com/azzenabidi/NotionScribe",
"source_code_uri" => "https://github.com/azzenabidi/NotionScribe",
"documentation_uri" => "https://github.com/azzenabidi/NotionScribe" # Add your documentation link here
}
end