2

Rails 3.2.8の新規インストールに取り組んでおり、Mercuryを追加した後にコンパイルするとエラーが発生します:

SyntaxError: cannot return a value from a constructor: "this.element" in class Button
 (in /home/*********/**************/vendor/bundle/ruby/1.8/bundler/gems/mercury-0c048033cd79/app/assets/javascripts/mercury/toolbar.button.js.coffee)

Rails 3.2.3を使用してMercuryを正常にインストールしましたが、これが機能しない理由を理解できませんでした。

何か案は?

source 'https://rubygems.org'

gem 'rails', '3.2.8'

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

gem 'mysql2'
gem 'bootstrap-sass'
gem 'simple_form'
gem 'json'
gem 'ckeditor'
gem 'mercury-rails', :git => 'https://github.com/jejacks0n/mercury.git'


gem 'jquery-rails'
# gem 'jquery-ui-rails'

gem "paperclip", "~> 2.7"

# To use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.0.0'

# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'

  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
    gem 'therubyracer', '0.10.2', :platforms => :ruby
    gem 'libv8', '~> 3.3.10'
    gem 'execjs'
  gem 'uglifier', '>= 1.0.3'
end
4

3 に答える 3

2

https://github.com/jejacks0n/mercury/issues/349

私はあなたがcoffeescript1.4.0にロックする必要があると思います

これで私の問題は修正されました。

于 2013-02-28T19:12:46.777 に答える
1

どうやら、修正があります。これはgithubリポジトリにありますが、rubygemsにはまだありません。Coffee-Scriptをダウングレードしたくない場合は、Gemfileでリポジトリを指定するだけです。

# Gemfile
# ...
gem 'mercury-rails', git: 'git://github.com/jejacks0n/mercury'

bundle update mercury-railsその後、実行します。これにより、コーヒースクリプトをダウングレードする必要なしにこの問題が修正されました。

于 2013-04-09T20:36:29.063 に答える
0

gemfileに実際に入力する必要があるものは次のとおりです。

gem 'coffee-script-source', '1.4.0'
于 2013-03-14T20:54:31.567 に答える