Ruby on Rails Monday, November 29, 2010

Is there any way to create IP address range? like 192.168.0.1/24.
It's too annoy to create a data each time.
I find a Rubygems' ipaddress.
http://rubygems.org/gems/ipaddress.
I would like to take this to created IP range.

in new.heml.erb

<%= f.lable :iprange %>
<%= f.text.field :iprange %>

I don't how do used it in the rails' models

ip = IPAddress("192.168.0.1/24")
ip.each do |i|
p i.to_s
end

Somebody can give me some guide.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment