我一直在尝试将位于 github 上的 gem 包含到我当前的应用程序中。gem 有一个 rake 文件,我希望能够从我的应用程序访问该文件。但我不断收到加载错误。
load 'tasks/deploy.rake'
gem 文件看起来像这样
# -*- encoding: utf-8 -*-
require 'rake'
Gem::Specification.new do |gem|
gem.authors = %w(Hello World)
gem.email = %w(test@example.com)
gem.description = 'test'
gem.summary = 'test'
gem.homepage = 'https://github.com/..'
gem.files = FileList[ 'lib/**/*.rb', 'tasks/deploy.rake', 'README.md' ].to_a
gem.name = 'test'
gem.require_paths = %w(lib)
gem.version = '0.0.1'
end
我希望能够将 ./tasks/deploy.rake 加载到包含此 gem 的应用程序中,我该如何继续?
谢谢