Author: assaf
Date: Wed Mar 11 22:48:23 2009
New Revision: 752676
URL: http://svn.apache.org/viewvc?rev=752676&view=rev
Log:
Fixed git URLs to point to buildr/buildr instead of vic/buildr.
Modified:
buildr/trunk/doc/contributing.textile
buildr/trunk/doc/download.textile
buildr/trunk/rakelib/jekylltask.rb
buildr/trunk/spec/core/build_spec.rb
Modified: buildr/trunk/doc/contributing.textile
URL:
http://svn.apache.org/viewvc/buildr/trunk/doc/contributing.textile?rev=752676&r1=752675&r2=752676&view=diff
==============================================================================
--- buildr/trunk/doc/contributing.textile (original)
+++ buildr/trunk/doc/contributing.textile Wed Mar 11 22:48:23 2009
@@ -81,11 +81,11 @@
h3(#git). Git
-Not a fan SVN? We understand. You can also grab a copy of "Buildr from
GitHub":http://github.com/vic/buildr/tree/master:
+Not a fan SVN? We understand. You can also grab a copy of "Buildr from
GitHub":http://github.com/buildr/buildr/tree/master:
<notextile>
{% highlight sh %}
-$ git clone git://github.com/vic/buildr.git
+$ git clone git://github.com/buildr/buildr.git
{% endhighlight %}
</notextile>
Modified: buildr/trunk/doc/download.textile
URL:
http://svn.apache.org/viewvc/buildr/trunk/doc/download.textile?rev=752676&r1=752675&r2=752676&view=diff
==============================================================================
--- buildr/trunk/doc/download.textile (original)
+++ buildr/trunk/doc/download.textile Wed Mar 11 22:48:23 2009
@@ -12,7 +12,7 @@
In addition, contributors to this project maintain a separate distribution
over on "RubyForge":http://rubyforge.org/projects/buildr. Using this
distribution, you're able to install Buildr directly from the remote gem
repository and to automatically upgrade when a new release comes out. The
RubyForge distribution is *not* an official Apache distribution.
-The source code is included in both source and binary distribution, the Gem
distribution expands the source code into your local Gem repository. That's in
addition to getting the source code directly from
"SVN":http://svn.apache.org/repos/asf/buildr or
"GitHub":http://github.com/vic/buildr/tree/master. Learn more about working
with source code and "living on the edge":contributing.html#edge.
+The source code is included in both source and binary distribution, the Gem
distribution expands the source code into your local Gem repository. That's in
addition to getting the source code directly from
"SVN":http://svn.apache.org/repos/asf/buildr or
"GitHub":http://github.com/buildr/buildr/tree/master. Learn more about working
with source code and "living on the edge":contributing.html#edge.
h2(#dist). Binaries and Source Code
Modified: buildr/trunk/rakelib/jekylltask.rb
URL:
http://svn.apache.org/viewvc/buildr/trunk/rakelib/jekylltask.rb?rev=752676&r1=752675&r2=752676&view=diff
==============================================================================
--- buildr/trunk/rakelib/jekylltask.rb (original)
+++ buildr/trunk/rakelib/jekylltask.rb Wed Mar 11 22:48:23 2009
@@ -13,6 +13,9 @@
# License for the specific language governing permissions and limitations under
# the License.
+
+require 'rake/tasklib'
+
class JekyllTask < Rake::TaskLib
def initialize(name=:jekyll) # :yield: self
@name = name
Modified: buildr/trunk/spec/core/build_spec.rb
URL:
http://svn.apache.org/viewvc/buildr/trunk/spec/core/build_spec.rb?rev=752676&r1=752675&r2=752676&view=diff
==============================================================================
--- buildr/trunk/spec/core/build_spec.rb (original)
+++ buildr/trunk/spec/core/build_spec.rb Wed Mar 11 22:48:23 2009
@@ -244,7 +244,7 @@
core.filemode=true
core.bare=false
core.logallrefupdates=true
-remote.origin.url=git://github.com/vic/buildr.git
+remote.origin.url=git://github.com/buildr/buildr.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.master.remote=origin
branch.master.merge=refs/heads/master
@@ -254,7 +254,7 @@
it 'should return nil if no remote for the given branch' do
Git.stub!(:git).with('config', '-l').and_return(<<EOF)
-remote.origin.url=git://github.com/vic/buildr.git
+remote.origin.url=git://github.com/buildr/buildr.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
EOF
Git.send(:remote, 'master').should == nil