diff options
author | Arun Agrawal <arunagw@gmail.com> | 2015-05-20 10:34:05 +0200 |
---|---|---|
committer | Arun Agrawal <arunagw@gmail.com> | 2015-05-20 10:34:05 +0200 |
commit | e00d63e2c6001cc1e8a1717da126428a18db9e78 (patch) | |
tree | bd38866de9122419c24c82a8941d88d952483469 /activerecord/lib/active_record | |
parent | edb0eaab9fdf9a549c3f93ccb34e1ead4dcb7e4f (diff) | |
parent | ac20dd73ac5a3ed4a266c96157d0dbcadaf811fd (diff) | |
download | rails-e00d63e2c6001cc1e8a1717da126428a18db9e78.tar.gz rails-e00d63e2c6001cc1e8a1717da126428a18db9e78.tar.bz2 rails-e00d63e2c6001cc1e8a1717da126428a18db9e78.zip |
Merge pull request #20217 from amitsuroliya/fix_netaddr_link
Fix NetAddr link [ci skip]
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r-- | activerecord/lib/active_record/aggregations.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/aggregations.rb b/activerecord/lib/active_record/aggregations.rb index 3d497a30fb..f7b50cd25a 100644 --- a/activerecord/lib/active_record/aggregations.rb +++ b/activerecord/lib/active_record/aggregations.rb @@ -142,7 +142,7 @@ module ActiveRecord # 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://www.ruby-doc.org/gems/docs/n/netaddr-1.5.0/NetAddr/CIDR.html). + # aggregated using the NetAddr::CIDR value class (http://www.rubydoc.info/gems/netaddr/1.5.0/NetAddr/CIDR). # 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 |