Ruby
ASP.NET on Ruby on Rails
ASP.NET on Ruby on Rails
2008.03.14http://reddevnews.com/news/devnews/article.aspx?editorialsid=911 http://acroama.isblog.net/blog_post_52.aspx http://weblogs.asp.net/scottgu/archive/2007/12/09/asp-net-3-5-extensions-ctp-preview-released.aspx http://weblogs.asp.net/scottgu/archive/2007/10/14/asp-net-mvc-framework.aspx http://blog.naver.com/guruby/140043669522 ASP.net 환경에서 ROR을 탈수있는 방법을 제공한다. Ruby on Rails 를 이용한 MVC 패턴과 ASP.NET MV..
Test-First Development for Rails
Test-First Development for Rails
2007.08.07http://peepcode.com/articles/2006/11/26/test-first-development http://topfunky.com/clients/peepcode/previews/peepcode-004-testing-tips.mov http://topfunky.com/clients/peepcode/REST-preview.mov Test-first development can improve your workflow, improve the quality of your software, and give you confidence. If you have looked at the “test” directory sitting at the bottom of your Rails applications ..
Ajax on Rails
Ajax on Rails
2007.07.10http://www.onlamp.com/pub/a/onlamp/2005/06/09/rails_ajax.html 자주보는 Ajax 관련된 사설입니다. Ajax on Rails 시간날 때 한번 해석해 보시길..
Ruby를 이용한 Directory 보는 구문
Ruby를 이용한 Directory 보는 구문
2007.05.19# directory access # list all files but .*/*~/*.o dirp = Dir.open(".") for f in dirp case f when /^\./, /~$/, /\.o/ # do not print else print f, "\n" end end dirp.close PHP 할때같은 기분이 든다. 상당히 짧은 코드 정규표현식도 바로 사용하는 것이 참 마음에 든다. .*과 *~, *.o는 보안상 제외시킨다.
Ruby, ADO 이용한 SQL Server 연결
Ruby, ADO 이용한 SQL Server 연결
2007.05.07RUBY로 win32 OLE 를 이용해 ADO 연결하는 방법을 아래 소개합니다. 출처 : http://rubyonwindows.blogspot.com/search/label/sqlserver require 'win32ole' class SqlServer # This class manages database connection and queries attr_accessor :connection, :data, :fields def initialize @connection = nil @data = nil end def open # Open ADO connection to the SQL Server database connection_string = "Provider=SQLOLEDB.1;" connection_..
Ruby App. CD-ROM 열기
Ruby App. CD-ROM 열기
2007.05.06이하 내용은 구글의 루비 그룹에서 발췌한 내용입니다. ^ ^ CD-ROM을 여는 흥미로운 내용이 있어서 가져와봤네용~ Windows App.를 개발하실 일 있을때 사용하시면 될 것 같습니다. On May 5, 8:15 pm, "Eder Quiñones" wrote: > Hi, anyone knows what is the problem with this function, i believe i did > everything right, but it just does not open the cd-rom, maybe the > problem is in the part "InvokeVerb". Any help would be highly > appreciated. > > def ejectDrives > > @wb..
루비(Ruby) 로 초간단 프로그램 작성
루비(Ruby) 로 초간단 프로그램 작성
2007.04.29너무 간단해서 공부에 도움은 안되지만 -_ -;; 루비로 아직 할줄 아는게 없어서 99단만 한번 짜봤다.. for i in 2..9 print i, "단\n" for j in 1..9 print i, " * ", j, " = ", i * j, "\n" end print "\n" end 역시나 짧은 코드 -_ ;; '99단.rb' 처럼 파일로 저장한 후 ruby 99단.rb위 코멘드로 실행해 보자~