mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
b04b008b3d
This comment was autogenerated, see `railties/lib/rails/generators/rails/plugin/templates/%name%.gemspec.tt` Since actiontext is well described in this file, I think we shouldn't keep this comment. Note that this commit is more like cosmetic change, so it is OK if we don't merge this.
37 lines
1.3 KiB
Ruby
37 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
version = File.read(File.expand_path("../RAILS_VERSION", __dir__)).strip
|
|
|
|
Gem::Specification.new do |s|
|
|
s.platform = Gem::Platform::RUBY
|
|
s.name = "actiontext"
|
|
s.version = version
|
|
s.summary = "Rich text framework."
|
|
s.description = "Edit and display rich text in Rails applications."
|
|
|
|
s.required_ruby_version = ">= 2.5.0"
|
|
|
|
s.license = "MIT"
|
|
|
|
s.authors = ["Javan Makhmali", "Sam Stephenson", "David Heinemeier Hansson"]
|
|
s.email = ["javan@javan.us", "sstephenson@gmail.com", "david@loudthinking.com"]
|
|
s.homepage = "https://rubyonrails.org"
|
|
|
|
s.files = Dir["CHANGELOG.md", "MIT-LICENSE", "README.md", "lib/**/*", "app/**/*", "config/**/*", "db/**/*"]
|
|
s.require_path = "lib"
|
|
|
|
s.metadata = {
|
|
"source_code_uri" => "https://github.com/rails/rails/tree/v#{version}/actiontext",
|
|
"changelog_uri" => "https://github.com/rails/rails/blob/v#{version}/actiontext/CHANGELOG.md"
|
|
}
|
|
|
|
# NOTE: Please read our dependency guidelines before updating versions:
|
|
# https://edgeguides.rubyonrails.org/security.html#dependency-management-and-cves
|
|
|
|
s.add_dependency "activesupport", version
|
|
s.add_dependency "activerecord", version
|
|
s.add_dependency "activestorage", version
|
|
s.add_dependency "actionpack", version
|
|
|
|
s.add_dependency "nokogiri", ">= 1.8.5"
|
|
end
|