mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
9aa0815192
After 866da19fd9
we now use package.json
to install Action Text's JS dependencies (see JS_PACKAGE_PATH).
But when the gem pacakge for Action Text is built, package.json was not
included so running `rails action_text:install` in a Rails app would
fail with:
```
rails action_text:install
rails aborted!
Errno::ENOENT: No such file or directory @ rb_sysopen - xxx/gems/actiontext-6.0.0.alpha/lib/templates/../../package.json
./bin/rails:4:in `<main>'
Tasks: TOP => app:template
(See full trace by running task with --trace)
```
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/**/*", "package.json"]
|
|
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
|