aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorArthur Nogueira Neves <arthurnn@gmail.com>2014-06-06 19:50:54 -0500
committerArthur Nogueira Neves <arthurnn@gmail.com>2014-06-06 19:50:54 -0500
commita6c8cde83526e4ec5b1212b5e6d1e512ebf7c0ec (patch)
treeab03faf312f8a53f155cbc6386d35ed6d8ffd860 /activerecord/lib
parentfadbc7c9eea63e9d8d6ef29b126db4bd3335785b (diff)
parent19ef270923cfa498b904cb3cc4484c83e463f371 (diff)
downloadrails-a6c8cde83526e4ec5b1212b5e6d1e512ebf7c0ec.tar.gz
rails-a6c8cde83526e4ec5b1212b5e6d1e512ebf7c0ec.tar.bz2
rails-a6c8cde83526e4ec5b1212b5e6d1e512ebf7c0ec.zip
Merge pull request #15542 from Gaurav2728/gaurav-remove_shutdown_link
remove rubyforge.org that was shut down [ci skip]
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/aggregations.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/aggregations.rb b/activerecord/lib/active_record/aggregations.rb
index 4fead8d251..e576ec4d40 100644
--- a/activerecord/lib/active_record/aggregations.rb
+++ b/activerecord/lib/active_record/aggregations.rb
@@ -129,10 +129,10 @@ module ActiveRecord
# is an instance of the value class. Specifying a custom converter allows the new value to be automatically
# converted to an instance of value class if necessary.
#
- # For example, the NetworkResource model has +network_address+ and +cidr_range+ attributes that
- # should be aggregated using the NetAddr::CIDR value class (http://netaddr.rubyforge.org). The constructor
- # for the value class is called +create+ and it expects a CIDR address string as a parameter. New
- # values can be assigned to the value object using either another NetAddr::CIDR object, a string
+ # For example, the NetworkResource model has +network_address+ and +cidr_range+ attributes that should be
+ # aggregated using the NetAddr::CIDR value class (http://www.ruby-doc.org/gems/docs/n/netaddr-1.5.0/NetAddr/CIDR.html).
+ # The constructor for the value class is called +create+ and it expects a CIDR address string as a parameter.
+ # New values can be assigned to the value object using either another NetAddr::CIDR object, a string
# or an array. The <tt>:constructor</tt> and <tt>:converter</tt> options can be used to meet
# these requirements:
#