他の場所で最小限の作業レールバージョンを見つけることができなかったため:
インストール手順に従っていると思います。
JQCloud rails gem が魔法のように機能するために便利な形式は、ハッシュの配列です。通常、コントローラーをスリムに保つためにこれをモデルに組み込みますが、最小限のデモを表示するために、次の定義をコントローラー アクションに入れることができます。
@tag_cloud = [
{ text: "test", weight: 15},
{ text: "Ipsum", weight: 9, link: "http://jquery.com/"},
{ text: "Dolor", weight: 6, html: {title: "I can haz any html attribute"}},
{ text: "Sit", weight: 7}, {text: "Amet", weight: 5}
]
次に、対応するビューに追加します
<script type="text/javascript">
var word_array = <%= raw @tag_cloud.to_json %> ;
$(function() {
// When DOM is ready, select the container element and call
// the jQCloud method, passing the array of words as the first argument.
$("#example").jQCloud(word_array);
});
</script>
<div id="example" style="width: 550px; height: 350px;"></div>
...そして、単語の雲が表示されるはずです。