genki (owner)

Revisions

gist: 148477 Download_button fork
public
Public Clone URL: git://gist.github.com/148477.git
Embed All Files: show embed
git_require.rb #
1
2
3
4
5
6
7
8
9
module Git
module_function
  def require(name, sha1 = "HEAD")
    puts `git show #{sha1}:#{name}.rb`
  end
end
 
Git.require "foo", "2004ce1aeaa12ed99c48f5e55c9ba97927f98337"