当项目没有 HAML 时,如何在我的 gem 中依赖 HAML

发布于 2024-12-12 06:58:02 字数 562 浏览 3 评论 0原文

我可以在 gem 中使用 Haml 模板,而不在应用程序 Gemfile 中写入 gem 'haml' 吗?

我将这一行放入 my_gem.gemspec 文件中:

s.add_runtime_dependency "haml", "~> 3.0"

我将这一行放入 my_gem 文件夹的 Gemfile 中:

gem 'haml', '~> 3.0'

我这样做:捆绑,并在此时安装 Haml ,但它不起作用,并且只有

Template is missing
Missing template layouts/my_gem with {:handlers=>[:erb, :builder, :coffee] }

当我在应用程序 Gemfile

gem 中复制时'哈姆勒', '~> 3.0'

工作正常。

我可以将 Haml 与 gem 一起使用而无需复制到 Gemfile 中吗?

Can I use Haml templates inside my gem, without write inside application Gemfile gem 'haml'?

I put in my_gem.gemspec file this line:

s.add_runtime_dependency "haml", "~> 3.0"

I put in Gemfile of my_gem folder this line:

gem 'haml', '~> 3.0'

I do: bundle, and Haml install at this moment , but it doesn't work, and I have

Template is missing
Missing template layouts/my_gem with {:handlers=>[:erb, :builder, :coffee] }

Only when I duplicate in application Gemfile

gem 'haml', '~> 3.0'

It's work fine.

Can I use Haml with my gem without duplication into Gemfile?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷清清 2024-12-19 06:58:02

任何应用程序(引擎)都应该需要所有需要的 gem,例如对我来说:

require "haml"

require "the_role/hash"
require "the_role/engine"
require "the_role/version"
require "the_role/the_class_exists"

module TheRole
  # some code here
end

Any application (Engine) should require all needed gems, for example for me:

require "haml"

require "the_role/hash"
require "the_role/engine"
require "the_role/version"
require "the_role/the_class_exists"

module TheRole
  # some code here
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文