Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
rugged..で以下のコードを使用してgitリポジトリを作成しました。
require 'rugged' $repopath='D:\Test12' Rugged::Repository.init_at($repopath, true) repo = Rugged::Repository.new($repopath) puts repo.path
ただし、上記のコードを ruby myfile.rb として実行すると、何も出力されませんでした。
バックスラッシュは2倍にする必要があります。$repopath='D:\\Test12'
$repopath='D:\\Test12'
バックスラッシュは役に立ちませんでした.. 0.17.0.b7 をダウンロードして動作しました.. 以前は 0.16 で動作していました..