-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotion_to_html.gemspec
32 lines (25 loc) · 1.19 KB
/
notion_to_html.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
32
# frozen_string_literal: true
require_relative 'lib/notion_to_html/version'
Gem::Specification.new do |spec|
spec.name = 'notion_to_html'
spec.version = NotionToHtml::VERSION
spec.authors = ['Guillermo Aguirre']
spec.email = ['guillermoaguirre@hey.com']
spec.summary = 'Notion HTML renderer for Ruby'
spec.description = 'Simple gem to render Notion blocks as HTML using Ruby'
spec.homepage = 'https://github.com/guillermoap/notion_to_html'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.1'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/guillermoap/notion_to_html'
spec.files = Dir['LICENSE.txt', 'README.md', 'lib/**/*', 'lib/notion_to_html.rb']
spec.require_paths = ['lib']
# Uncomment to register a new dependency of your gem
# spec.add_dependency "example-gem", "~> 1.0"
spec.add_dependency 'actionview', '>= 7.0.0'
spec.add_dependency 'activesupport', '>= 7.0.0'
spec.add_dependency 'dry-configurable', '~> 1.2'
spec.add_dependency 'notion-ruby-client', '~> 1.2.2'
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
end