File: netaddr.rb

package info (click to toggle)
ruby-netaddr 1.5.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 416 kB
  • sloc: ruby: 3,866; makefile: 9
file content (30 lines) | stat: -rwxr-xr-x 759 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
=begin rdoc
 Copyleft (c) 2006 Dustin Spinhirne
  
 Licensed under the same terms as Ruby, No Warranty is provided.
=end

require 'time'
require 'digest/sha1'
require File.join(File.dirname(__FILE__), 'validation_shortcuts.rb')
require File.join(File.dirname(__FILE__), 'ip_math.rb')
require File.join(File.dirname(__FILE__), 'cidr_shortcuts.rb')
require File.join(File.dirname(__FILE__), 'methods.rb')
require File.join(File.dirname(__FILE__), 'cidr.rb')
require File.join(File.dirname(__FILE__), 'tree.rb')
require File.join(File.dirname(__FILE__), 'eui.rb')

module NetAddr

class BoundaryError < StandardError #:nodoc:
end

class ValidationError < StandardError #:nodoc:
end

class VersionError < StandardError #:nodoc:
end

end # module NetAddr

__END__