diff options
author | Gaurav Sharma <gaurav2728@gmail.com> | 2014-06-06 17:10:36 +0530 |
---|---|---|
committer | Gaurav Sharma <gaurav2728@gmail.com> | 2014-06-06 22:26:56 +0530 |
commit | 19ef270923cfa498b904cb3cc4484c83e463f371 (patch) | |
tree | 246aa0e4b4f0f3c75d4b9dd91b6aa662ba1d9536 /activerecord/lib | |
parent | 0502189b504640a95a4729fac5c6a41c27de960f (diff) | |
download | rails-19ef270923cfa498b904cb3cc4484c83e463f371.tar.gz rails-19ef270923cfa498b904cb3cc4484c83e463f371.tar.bz2 rails-19ef270923cfa498b904cb3cc4484c83e463f371.zip |
remove rubyforge.org that was shut down [ci skip]
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/aggregations.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/aggregations.rb b/activerecord/lib/active_record/aggregations.rb index 45c275a017..5778640525 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: # |