-
Notifications
You must be signed in to change notification settings - Fork 6
/
tiptap.gemspec
26 lines (20 loc) · 957 Bytes
/
tiptap.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
# frozen_string_literal: true
require_relative "lib/tip_tap/version"
Gem::Specification.new do |spec|
spec.name = "tiptap-ruby"
spec.version = TipTap::VERSION
spec.authors = ["Chad Wilken"]
spec.email = ["[email protected]"]
spec.summary = "Parse, generate and render TipTap documents in Ruby."
spec.description = "A gem for parsing, generating, and rendering TipTap Documents and Nodes using Ruby."
spec.homepage = "https://github.com/CompanyCam/tiptap-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/CompanyCam/tiptap-ruby"
spec.metadata["changelog_uri"] = "https://github.com/CompanyCam/tiptap-ruby/blob/master/CHANGELOG.md"
spec.files = Dir["*.{md,txt}", "{lib}/**/*"]
spec.require_paths = ["lib"]
spec.add_dependency "actionview", ">= 6.0"
spec.add_dependency "activesupport", ">= 6.0"
end