首页 软件开发 代码片段 ruby ( Page 33 )

ruby 388

#Ruby
Rails 在 Session 中存放数据

class HelloController < ApplicationController def there @counter1 = 1 if(session[:count…

2014-10-20 308

#Ruby
Ruby语言解决某数学难题

(123..327).select{|x| ([x,x*2,x*3].inject([]){|arr,y| arr + y.to_s.split(//)} << '0'…

2014-10-18 328

#Ruby
Rails 根据email地址获取对应的邮件服务器信息

require 'resolv' dns = Resolv::DNS.new domain = "oreilly.com" dns.each_resource(domain, Re…

2014-10-16 841
1 31 32 33