ruby

http://rspec.rubyforge.org/tutorials/stack_04.htmlの context "A stack with one item" do setup do @stack = Stack.new @stack.push "one item" end specify "should return top when you send it 'top'" do @stack.top.should_equal "one item" end end…

headerのLast-modifiedのフォーマット def getLastModifiled filename t=File.mtime(filename) return t.strftime("%a, %d %b %Y %X GMT") end

Livedoor weather hacksをrubyで

require 'net/http' require 'kconv' Net::HTTP.start('weather.livedoor.com'){|h| response,= h.get("/forecast/webservice/rest/v1?city=113&day=tomorrow") print Kconv.tosjis(response.body) } 久留米決め打ちでリクエストして、レスポンスを表示する…