我正在thor
为一些内部项目构建一个基于简单的生成器,并且似乎无法bundle install
从正确的目录运行。
当我运行新的 [APP_NAME] 函数时,它应该创建目录和文件,然后运行bundle install
以安装应用程序所需的 gem。
生成器函数的来源:
def create
puts "Creating application #{name}"
directory 'application', "#{name}"
Dir.chdir("#{Dir.pwd}/#{name}") do
puts `bundle install`
end
end
运行调用此创建方法的命令的控制台输出:
$ bundle exec bin/my_gem new test_app
Creating application test_app
create test_app
create test_app/Gemfile
create test_app/Guardfile
create test_app/README.md
create test_app/app/controllers
create test_app/app/helpers
create test_app/app/models
create test_app/app/views
Using thor (0.14.6)
Using my_gem (0.0.1)
Using bundler (1.1.3)
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
如您所见,它正在运行,bundle install
但它在我的当前目录(thor
、bundler
、my_gem
)中运行,而不是在test_app
目录(guard
、guard-coffeescript
、guard-less
和其他目录)中运行。
运行其他命令,例如ls
或pwd
给出预期结果:
Gemfile
Guardfile
README.md
app
和
/Users/davidlumley/Development/Gems/my_gem/test_app
不确定它是否有任何区别,但我使用 RVM 来管理我的红宝石。