diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-08-21 04:23:43 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-08-21 04:23:43 +0000 |
commit | bff692b94d74de24fe9b50a515f4bc844c3fb5be (patch) | |
tree | b57240cf8631d9c0960437dca225c5c2036b3e63 | |
parent | 9cb4054cded4585cc8f2e0588d1cd85ecc6c7b1d (diff) |
* lib/drb/acl.rb: split executable code into sample directory.
* sample/drb/acl.rb: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/drb/acl.rb | 18 | ||||
-rw-r--r-- | sample/drb/acl.rb | 15 |
3 files changed, 20 insertions, 18 deletions
@@ -1,3 +1,8 @@ +Thu Aug 21 13:21:45 2014 SHIBATA Hiroshi <[email protected]> + + * lib/drb/acl.rb: split executable code into sample directory. + * sample/drb/acl.rb: ditto. + Thu Aug 21 12:55:35 2014 SHIBATA Hiroshi <[email protected]> * .gitignore: ignored temporary file for Changelog. diff --git a/lib/drb/acl.rb b/lib/drb/acl.rb index 29a378199f..8d06b25829 100644 --- a/lib/drb/acl.rb +++ b/lib/drb/acl.rb @@ -230,21 +230,3 @@ class ACL end end - -if __FILE__ == $0 - # example - list = %w(deny all - allow 192.168.1.1 - allow ::ffff:192.168.1.2 - allow 192.168.1.3 - ) - - addr = ["AF_INET", 10, "lc630", "192.168.1.3"] - - acl = ACL.new - p acl.allow_addr?(addr) - - acl = ACL.new(list, ACL::DENY_ALLOW) - p acl.allow_addr?(addr) -end - diff --git a/sample/drb/acl.rb b/sample/drb/acl.rb new file mode 100644 index 0000000000..d93eb9c1fc --- /dev/null +++ b/sample/drb/acl.rb @@ -0,0 +1,15 @@ +require 'drb/acl' + +list = %w(deny all + allow 192.168.1.1 + allow ::ffff:192.168.1.2 + allow 192.168.1.3 +) + +addr = ["AF_INET", 10, "lc630", "192.168.1.3"] + +acl = ACL.new +p acl.allow_addr?(addr) + +acl = ACL.new(list, ACL::DENY_ALLOW) +p acl.allow_addr?(addr) |