最新文章列表

Rspec 排错

1.uninitialized constant Dependencies 条件: 在windows下以gem的方式安装rspec和rspec-rails。但在ruby script/spec_server下做测试时spec your_spec.rb -X 会出现 uninitialized constant Dependencies (NameError)  script/spec_serv ...
sinkzephyr 评论(0) 有1229人浏览 2008-12-18 13:16

敏捷质疑: TDD

敏捷质疑: TDD Q: 为什么通过单元测试发现的 Bug 很少 ? A: 单元测试不是用来发现 Bug 的, 而是用来预防 Bug 的. 如果采用 TDD, 测试用例完成之时, 产品代码尚未编写, Bug更无从谈起.   Q: 那是否写单元测试就能提高代码质量了 ? A: 关于这一点, 似乎有人不这么看, <<TDD Opinion: Quality Is a Function of ...
ccainiao1 评论(0) 有895人浏览 2008-12-15 16:40

rspec资源

http://www.decodeuri.com/2008/10/02/rspec-link-fest/ http://blog.emson.co.uk/2008/06/understanding-rspec-stories-a-tutorial/ http://dannorth.net/whats-in-a-story Rspec links大全 http://rubypond.com/ar ...
sinkzephyr 评论(0) 有1363人浏览 2008-12-13 19:56

windows下安装merb

1.安装gems gem install rspec 2.关于数据库,由于merb的mysql gem (do_mysql)对windows的支持不好,所以改用sqlite。 感兴趣的朋友可以在linux下安装do_mysql gem,这样就可以玩mysql了 gem install do_sqlite3 下载sqlite dll: http://www.sqlite.org/d ...
sinkzephyr 评论(0) 有1425人浏览 2008-12-12 15:24

insoshi安装

Installation Insoshi is written in Ruby on Rails, so installing Insoshi means downloading the source code and running it on your local computer.  There are several methods to do this, which we list in ...
catrose 评论(0) 有1540人浏览 2008-12-12 14:39

rails 命令收集

merb: 删除generate生成的资源,相当于ruby script/destroy ... merb-gen rescource rescource_name -d gem: 如果你的gem list太多,而你又想只列出某个gem相关的,比如gem name 带有rspec的 gem list rspec => rspec (1.1.11) rspec-rails (1.1. ...
sinkzephyr 评论(2) 有1734人浏览 2008-12-10 10:18

#71 Testing Controllers with RSpec

Controllers are tricky to test, and there's no perfect way to do it. In this episode you will see how I test controllers, and my reasoning behind it. describe MenuItemsController, "creating a new ...
CaiDeHen 评论(0) 有649人浏览 2008-12-05 15:24

use factory_girl instead fixture for rspec test

1. Install factory_girl   sudo gem install thoughtbot-factory_girl --source="http://gems.github.com" 2. Configure    create factory.rb file in spec directory, i.e.    Factory.define :user do ...
wenke 评论(0) 有2400人浏览 2008-12-02 01:27

rails plugin list

转自 http://idiotis.ms/4/rails+plugin+list   12_hour_time                  http://www.nickm.org/svn/repos/rails/plugins/12_hour_time/RailsRunner                   http://svn.rubaidh.com/plugins/RailsRunn ...
aideehorn 评论(1) 有2067人浏览 2008-11-28 18:31

[rails2.0] first step

1. make_resourceful $ ruby script/plugin install http://svn.hamptoncatlin.com/make_resourceful/ 2. authenciation 可用户激活 ./script/generate authenticated USERMODEL CONTROLLERNAME --include-activation  $ ...
aideehorn 评论(0) 有1300人浏览 2008-11-28 11:35

netbean6.5 for windows集成rspec

bdd 行为驱动开发的资料也看了一些,就是一直没有实践。 正好有点时间 赶紧安装一下rspec体验。 不过由于是在windows系统下,ide选用的也是netbean6.5。网上的资料大多是linux,mac系统的。不免走了一些弯路,现记录总结如下: 1.安装rspec-rails插件     输入命令 gem install rspec-rails     安装rspec-rails同时也安装了 ...
zyzzyva 评论(0) 有1392人浏览 2008-11-27 21:21

RSpec简明指南

这是David Chelimsky写的一篇RSpec简明指南,原文在这里。 简介 要了解RSpec,我们首先需要了解什么是行为驱动开发(Behaviour Driven Development,简称BDD),BDD ...
aideehorn 评论(0) 有1472人浏览 2008-11-25 13:15

JRuby 1.1.5 发布

JRuby 1.1.5 ReleasedHomepage: http://www.jruby.org/ Download: http://dist.codehaus.org/jruby/JRuby 1.1.5 是从 JRuby 1.1以来的第5个发行版。主要改进了兼容性和效率问题。我们的目标是更快的更新周期(3-4周)。我们希望在一个更快的更新周期里面解决JRuby用户提出的问题。主要更新: - ...
alang 评论(0) 有928人浏览 2008-11-19 03:15

Rails迷思导读

DHH爆了,给置疑Rails的人一个回答,于是有了《Rails迷思 》这个系列。   迷思1:Rails难于部属:DHH的答案是Phusion Passenger (也叫mod_rails),一站式服务。 迷思2:Rails每天崩溃400次:DHH说,引起崩溃的是内存泄漏,不过,那是陈年旧帐了,现在好多了。但是,如同其它一切程序一样,内存泄漏还是有可能的。 迷思3:Rails强迫人使用Proto ...
dreamhead 评论(15) 有3074人浏览 2008-11-16 22:48

行为驱动设计(rspec)

原文:Behavior Driven Design (并非公开版权文档) 你可能已经注意到,验证模对象改变了你在单元测试中执行的那类测试的本质。传统的单元测试中,通过断言(Assertion)来进行大多数的验证。这是一种对应用程序状态的测试。模对象的测试,是测试测试中调用过程十分符合预期。它测试的是应用程序的行为。至少潜在能力上,行为测试更容易将期望行为与实际的实现方法分开。 行 ...
jbf034 评论(0) 有4074人浏览 2008-11-12 00:26

来自jetbrains 的ruby 开发工具JetBrains RubyMine

就是原来的idea 里面的ruby插件发展过来的 目前是公开预览版本,正是版本在2009年1季度发布。   主要特性: What's in It for You Intelligent Editor, with full range of Code Completion, Code Snippets and automatic Refactorings Smart Project Navigat ...
cheshuai 评论(0) 有1116人浏览 2008-11-05 15:45

测试驱动开发

瞎写了一些…… 没啥技术相关的东西。主要是对照公司的cmmi过程改进。
sdyouyun 评论(2) 有1208人浏览 2008-10-30 20:53

一种新的单元测试的方法

来自http://www.javalinux.it/wordpress/?p=116 个人很认同文章中的这个想法,因此翻译过来。不能保证翻译得正确,因此看原文还是更好的选择。 也希望各位能指出翻译中的错误,      一种新的单元测试的方法意味着什么?难道说Junit或者TestNG还不够好?Junit(这里我提及到它因为它简单,但是在我的讨论中,TestNG也一样简单 from here on ...
fly_ever 评论(13) 有2027人浏览 2008-10-25 12:28

一知半解用ruby开发

  从第一次接触ruby & rails到现在有段时间了,本着一贯快学快用习惯,看了一遍书之后就开始用ROR做了些小项目,边做边查,边学边忘,到现在还是没有记住几个ROR的特征关键字,比如什么约定阿,约束什么的,也分不清为啥有symbol这么奇怪的物件。更加不清楚yield到底怎么起作用的。   不过这些并不妨碍用ROR去开发项目。我只要知道怎么用就行. 接下来说说我是怎么用ROR的.觉得乱 ...
jack 评论(13) 有1710人浏览 2008-10-23 23:52

Rails开发技巧一览

昨天在网上看到一个Rails开发技巧一览,看了觉得很有用,所以翻译了,贴在 Ruby on Rails 中文 Wikihttp://wiki.rubyonrailscn.org上。转发在这里,希望对大家 ...
daociyiyou 评论(0) 有958人浏览 2008-10-21 08:53

最近博客热门TAG

Apache(33931) Lucene(5053) Hadoop(5049) nginx(3449) vim(3262) GCC(2954) memcached(2625) jfreechart(1688) Django(1602) Zend(1413) ActiveMQ(1398) Grails(1374) ActiveRecord(1349) OpenSource(1236) Emacs(870) Glassfish(858) lighttpd(810) rubygems(716) GAE(631) Blend(516)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics