diff options
author | scott Chacon <schacon@agadorsparticus.corp.reactrix.com> | 2007-11-12 11:22:18 -0800 |
---|---|---|
committer | scott Chacon <schacon@agadorsparticus.corp.reactrix.com> | 2007-11-12 11:22:18 -0800 |
commit | ec59c5c7ee9fa3b5831ed0b5f713cee218480ea3 (patch) | |
tree | 39b41ffa4bd4c3b4d211999d33daf6fde7dbae15 | |
parent | 32fbe703605310c91677225442a62ae0869d0892 (diff) | |
download | third_party-ruby-git-ec59c5c7ee9fa3b5831ed0b5f713cee218480ea3.tar.gz third_party-ruby-git-ec59c5c7ee9fa3b5831ed0b5f713cee218480ea3.tar.xz third_party-ruby-git-ec59c5c7ee9fa3b5831ed0b5f713cee218480ea3.zip |
updated the docs, added a version to the library, added a History file
-rw-r--r-- | History.txt | 3 | ||||
-rw-r--r-- | README | 11 | ||||
-rw-r--r-- | Rakefile | 5 | ||||
-rw-r--r-- | doc/classes/Git.html | 21 | ||||
-rw-r--r-- | doc/created.rid | 2 | ||||
-rw-r--r-- | doc/files/README.html | 17 | ||||
-rw-r--r-- | doc/files/lib/git_rb.html | 2 | ||||
-rw-r--r-- | lib/git.rb | 2 |
8 files changed, 55 insertions, 8 deletions
diff --git a/History.txt b/History.txt new file mode 100644 index 0000000..ecbfe70 --- /dev/null +++ b/History.txt @@ -0,0 +1,3 @@ +== 1.0.1 + +* New version @@ -2,6 +2,15 @@ Library for using Git in Ruby. += Homepage + +The Ruby/Git homepage is currently at : + +http://jointheconversation.org/rubygit + +Git public hosting of the project source code is at: + +http://repo.or.cz/w/rubygit.git = Roadmap @@ -149,4 +158,4 @@ And here are the operations that will need to write to your git repository. g.repack g.push - g.push(g.remote('name'))
\ No newline at end of file + g.push(g.remote('name')) @@ -30,6 +30,11 @@ task :doc do |t| system('rdoc lib/ README --main README --inline-source') end +desc "Upload Docs" +task :upload_docs do |t| + system('rsync -rv --delete doc/ git.rubyforge.org:/var/www/gforge-projects/git') +end + desc "Run Unit Tests" task :test do |t| require File.dirname(__FILE__) + '/tests/all_tests.rb' diff --git a/doc/classes/Git.html b/doc/classes/Git.html index 3ddaacf..2fdebb8 100644 --- a/doc/classes/Git.html +++ b/doc/classes/Git.html @@ -167,6 +167,19 @@ Class <a href="Git/WorkingDirectory.html" class="link">Git::WorkingDirectory</a> </div> + <div id="constants-list"> + <h3 class="section-bar">Constants</h3> + + <div class="name-list"> + <table summary="Constants"> + <tr class="top-aligned-row context-row"> + <td class="context-item-name">VERSION</td> + <td>=</td> + <td class="context-item-value">'1.0.1'</td> + </tr> + </table> + </div> + </div> @@ -191,7 +204,7 @@ Class <a href="Git/WorkingDirectory.html" class="link">Git::WorkingDirectory</a> onclick="toggleCode('M000001-source');return false;">[Source]</a></p> <div class="method-source-code" id="M000001-source"> <pre> -<span class="ruby-comment cmt"># File lib/git.rb, line 34</span> +<span class="ruby-comment cmt"># File lib/git.rb, line 36</span> <span class="ruby-keyword kw">def</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">bare</span>(<span class="ruby-identifier">git_dir</span>) <span class="ruby-constant">Base</span>.<span class="ruby-identifier">bare</span>(<span class="ruby-identifier">git_dir</span>) <span class="ruby-keyword kw">end</span> @@ -214,7 +227,7 @@ Class <a href="Git/WorkingDirectory.html" class="link">Git::WorkingDirectory</a> onclick="toggleCode('M000004-source');return false;">[Source]</a></p> <div class="method-source-code" id="M000004-source"> <pre> -<span class="ruby-comment cmt"># File lib/git.rb, line 46</span> +<span class="ruby-comment cmt"># File lib/git.rb, line 48</span> <span class="ruby-keyword kw">def</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">clone</span>(<span class="ruby-identifier">repository</span>, <span class="ruby-identifier">name</span>, <span class="ruby-identifier">options</span> = {}) <span class="ruby-constant">Base</span>.<span class="ruby-identifier">clone</span>(<span class="ruby-identifier">repository</span>, <span class="ruby-identifier">name</span>, <span class="ruby-identifier">options</span>) <span class="ruby-keyword kw">end</span> @@ -237,7 +250,7 @@ Class <a href="Git/WorkingDirectory.html" class="link">Git::WorkingDirectory</a> onclick="toggleCode('M000003-source');return false;">[Source]</a></p> <div class="method-source-code" id="M000003-source"> <pre> -<span class="ruby-comment cmt"># File lib/git.rb, line 42</span> +<span class="ruby-comment cmt"># File lib/git.rb, line 44</span> <span class="ruby-keyword kw">def</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">init</span>(<span class="ruby-identifier">working_dir</span> = <span class="ruby-value str">'.'</span>, <span class="ruby-identifier">options</span> = {}) <span class="ruby-constant">Base</span>.<span class="ruby-identifier">init</span>(<span class="ruby-identifier">working_dir</span>, <span class="ruby-identifier">options</span>) <span class="ruby-keyword kw">end</span> @@ -260,7 +273,7 @@ Class <a href="Git/WorkingDirectory.html" class="link">Git::WorkingDirectory</a> onclick="toggleCode('M000002-source');return false;">[Source]</a></p> <div class="method-source-code" id="M000002-source"> <pre> -<span class="ruby-comment cmt"># File lib/git.rb, line 38</span> +<span class="ruby-comment cmt"># File lib/git.rb, line 40</span> <span class="ruby-keyword kw">def</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">open</span>(<span class="ruby-identifier">working_dir</span>, <span class="ruby-identifier">options</span> = {}) <span class="ruby-constant">Base</span>.<span class="ruby-identifier">open</span>(<span class="ruby-identifier">working_dir</span>, <span class="ruby-identifier">options</span>) <span class="ruby-keyword kw">end</span> diff --git a/doc/created.rid b/doc/created.rid index 3226198..21b2cf5 100644 --- a/doc/created.rid +++ b/doc/created.rid @@ -1 +1 @@ -Mon Nov 12 10:52:42 PST 2007 +Mon Nov 12 11:08:01 PST 2007 diff --git a/doc/files/README.html b/doc/files/README.html index 12a94d5..0a797bb 100644 --- a/doc/files/README.html +++ b/doc/files/README.html @@ -56,7 +56,7 @@ </tr> <tr class="top-aligned-row"> <td><strong>Last Update:</strong></td> - <td>Mon Nov 12 10:51:20 PST 2007</td> + <td>Mon Nov 12 11:07:58 PST 2007</td> </tr> </table> </div> @@ -73,6 +73,21 @@ <p> Library for using <a href="../classes/Git.html">Git</a> in Ruby. </p> +<h1>Homepage</h1> +<p> +The Ruby/<a href="../classes/Git.html">Git</a> homepage is currently at : +</p> +<p> +<a +href="http://jointheconversation.org/rubygit">jointheconversation.org/rubygit</a> +</p> +<p> +<a href="../classes/Git.html">Git</a> public hosting of the project source +code is at: +</p> +<p> +<a href="http://repo.or.cz/w/rubygit.git">repo.or.cz/w/rubygit.git</a> +</p> <h1>Roadmap</h1> <p> Right now I’m forking calls to the ‘git’ binary, but diff --git a/doc/files/lib/git_rb.html b/doc/files/lib/git_rb.html index 49e7ce6..8864d94 100644 --- a/doc/files/lib/git_rb.html +++ b/doc/files/lib/git_rb.html @@ -56,7 +56,7 @@ </tr> <tr class="top-aligned-row"> <td><strong>Last Update:</strong></td> - <td>Sat Nov 10 16:21:26 PST 2007</td> + <td>Mon Nov 12 10:59:30 PST 2007</td> </tr> </table> </div> @@ -30,6 +30,8 @@ require 'git/ref' =end module Git + + VERSION = '1.0.1' def self.bare(git_dir) Base.bare(git_dir) |