Author: boisvert
Date: Sun Oct 10 15:41:00 2010
New Revision: 1006310
URL: http://svn.apache.org/viewvc?rev=1006310&view=rev
Log:
BUILDR-525 Documentation refers to repositories.upload_to rather than
repositories.release_to
Modified:
buildr/trunk/CHANGELOG
buildr/trunk/doc/settings_profiles.textile
Modified: buildr/trunk/CHANGELOG
URL:
http://svn.apache.org/viewvc/buildr/trunk/CHANGELOG?rev=1006310&r1=1006309&r2=1006310&view=diff
==============================================================================
--- buildr/trunk/CHANGELOG (original)
+++ buildr/trunk/CHANGELOG Sun Oct 10 15:41:00 2010
@@ -7,7 +7,8 @@
* Fixed: BUILDR-513 --trace fails with NoMethodError : undefined method
`include?' for nil:NilClass
* Fixed: BUILDR-515 -update-snapshot doesn't work as expected
-* Fixed: BUILDR-527: package(:war) if libs passed are files (instead of
artifacts)
+* Fixed; BUILDR-525 Documentation refers to repositories.upload_to rather
than repositories.release_to
+* Fixed: BUILDR-527 package(:war) if libs passed are files (instead of
artifacts)
* Fixed: JavaRebel was previously not correctly detected.
1.4.2 (2010-09-18)
Modified: buildr/trunk/doc/settings_profiles.textile
URL:
http://svn.apache.org/viewvc/buildr/trunk/doc/settings_profiles.textile?rev=1006310&r1=1006309&r2=1006310&view=diff
==============================================================================
--- buildr/trunk/doc/settings_profiles.textile (original)
+++ buildr/trunk/doc/settings_profiles.textile Sun Oct 10 15:41:00 2010
@@ -54,8 +54,8 @@ p(note). Buildr does not check any of th
Some extensions may use additional environment variables, and of course, you
can always add your own. This example uses two environment variables for
specifying the username and password:
{% highlight ruby %}
-repositories.upload_to[:username] = ENV['USERNAME']
-repositories.upload_to[:password] = ENV['PASSWORD']
+repositories.release_to[:username] = ENV['USERNAME']
+repositories.release_to[:password] = ENV['PASSWORD']
{% endhighlight %}
@@ -174,8 +174,8 @@ Here's an example @buildr.rb@:
{% highlight ruby %}
# Only I should know that
-repositories.upload_to[:username] = 'assaf'
-repositories.upload_to[:password] = 'supersecret'
+repositories.release_to[:username] = 'assaf'
+repositories.release_to[:password] = 'supersecret'
# Search here first, it's faster
repositories.remote << 'http://inside-the-firewall'
{% endhighlight %}