3

我已经分叉了一个 gem,并且在尝试更改它时,决定从我的 git 存储库中更改 gemfile(一直在更新):

gem 'bootstrap-wysihtml5-rails', :git => 'git://github.com/Asherlc/bootstrap-wysihtml5-rails.git'

到本地目录(只是克隆的 git 存储库):

gem 'bootstrap-wysihtml5-rails', :path => '/Users/ashercohen/Documents/bootstrap-wysihtml5-rails'

在运行bundle updatebundle install时,它会在读数中显示正确的版本号(自切换 gem 源后更新)。但是,/vendor/assets路径中的所有文件似乎都没有在我的 Rails 应用程序中得到更新。我需要清除某种缓存吗?

我的 Rails 应用程序中没有/vendor/cache文件,并且我确信由于 gem 版本在捆绑程序读数中正确更新,因此路径是正确的。

我在这里缺少一些步骤吗?

4

1 回答 1

0

原来 Chrome 只是在积极地缓存 JS。

于 2012-10-13T00:27:59.643 回答