私はしばらくの間、sprockets-commonjs を自分の Rails プロジェクトで動作させようとしてきましたが、うまくいきませんでした。
これは私がやっていることです:
Gemfile
...
gem 'jquery-rails'
gem 'twitter-bootstrap-rails', :git => 'http://github.com/seyhunak/twitter-bootstrap-rails.git'
gem "ember-rails", :git => "https://github.com/emberjs/ember-rails.git", :branch => "master"
gem 'sprockets-commonjs'
...
アプリ/アセット/javascripts/hello.module.js
module.exports = function () {
return "hello world!";
};
これは、アプリケーションを実行したときに得られるものです。
Uncaught ReferenceError: モジュールが定義されていません。
足りないものはありますか?