我正在开发一个包含三个不同应用程序的项目。他们应该共享一些模型和外部布局。为避免代码重复,我尝试将应用程序布局 ( project_name/app/views/layouts/application.html.haml
) 提取到 gem 中。
我按照以下步骤操作:
- 创建基础 gem 结构
bundle gem common
- 将布局文件放在里面
common/app/views/layouts/application.html.haml
编写了 Gemspec 描述符
# -*- encoding: utf-8 -*- require File.expand_path('../lib/common/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Arthur Alkmim"] gem.email = ["myemail@here"] gem.description = %q{Common project files} gem.summary = %q{Common project files, including layout and migrations} gem.homepage = "" gem.files = `git ls-files`.split($\) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.name = "common" gem.require_paths = ["lib"] gem.version = Common::VERSION end
提交更改
gem build common.gemspec
(成功的)rake install
(成功的)- 放入
gem 'common'
项目 Gemfile
但是该项目仍然不会加载应用程序布局。我应该怎么做才能告诉我的项目必须通过 gem 加载布局文件?
提前致谢。