在Rails 4应用程序中,如何编译jQuery Mobile按钮图标?

时间:2013-06-06 08:41:54

标签: ruby-on-rails jquery-mobile

我正在使用jQuery Mobile开发rails 4应用程序并使用jquery_mobile_rails gem,这意味着我不需要安装任何jQuery文件。我的问题是按钮没有图标。这些显示在开发中但不在生产中。我假设我只需要编译它们但它们在哪里以及我该怎么做?

由于我没有直接使用jQuery Mobile文件,因此我无法选择将它们存储在它们下面。 gem在开发模式下工作,但在生产模式下不工作。我可以假设宝石内部包含按钮图标吗?如果是这样,我无法理解他们为什么不在生产模式下工作。

jquery-rails (2.3.0)
jquery_mobile_rails (1.3.0)

1 个答案:

答案 0 :(得分:2)

每个环境预编译资产时有known issue currently with Rails 4

尝试设置:

config.assets.precompile=true
config/application.rb中的

如果仍然无效,请尝试将以下内容添加到config/application.rb

config.assets.precompile += %w(*.png *.jpg *.jpeg *.gif)

我无法复制将这些文件连接到config.assets.precompile时出现的奇怪错误。您可以try the answer to this question代替(替换上面的一行):

config.assets.precompile << Proc.new { |path|
  if path =~ /\.(css|js|png|jpg|jpeg|gif)\z/
    full_path = Rails.application.assets.resolve(path).to_path
    app_assets_path = Rails.root.join('app', 'assets').to_path
    vendor_assets_path = Rails.root.join('vendor', 'assets').to_path

    if ((full_path.starts_with? app_assets_path) || (full_path.starts_with? vendor_assets_path)) && (!path.starts_with? '_')
      puts "\t" + full_path.slice(Rails.root.to_path.size..-1)
      true
    else
      false
    end
  else
    false
  end
}