BOSS 又找我谈话了,说怎么还没有人,进度也太慢了。子龙,你别加班了,也别出差了,来盛安德敏捷下啊!定居人间天堂苏州啊。干着干着说不定就出国了。
公司的美女 HR 你辛苦了。公司不错,敏捷贯彻的很彻底,峻德的兄弟,现在 English 都很牛了。
Great! Thank you!
#11 楼 @knwang 谢谢。我正想下载呢,可惜 github 被墙了,解决见 http://ruby-china.org/topics/8249 。所以我在 gitcafe 建了一个 mystory 的库: https://gitcafe.com/gazeldx/rubyblog
#9 楼 @ywencn 我去看了,已经找到例子,多谢。见: https://github.com/edavis10/redmine/tree/master/extra/sample_plugin/ Rails 强大!
有人能举一个 github 上的例子吗?十分感谢。
Cucumber 做自动化测试的最大问题是不直接,有过度设计的感觉。用 rspec + Capybara 就好多了。程序员们更愿意用!
子龙,你在哪里?
不要用 cucumber, 用 rspec 就好了。
我是楼主,#6 楼 @woaigithub 这个方法很好!比我的强。 我的想法是:让自己变得完美,然后随便写!
#19 楼 @apprentice 兄弟,光说,没见你行动啊,打电话给我 或者 发简历给盛安德苏州公司峻德的 HR 啊。欢迎!!
我是打工啊!我还没实力!
You can seach 'Book-of-Ruby ' . That is a PDF file good for you!
太多了,精选下会更好。
谢谢,已经去掉重点高校,这个真不在意。
This is an example from this book. If you feel misunderstanding, you may need to read the book!
class MyClass @@classvar = 1000 @instvar = 1000
def MyClass.classMethod if @instvar == nil then @instvar = 10 else @instvar += 10 end
if @@classvar == nil then
@@classvar = 10
else
@@classvar += 10
end
end
def instanceMethod puts "init instance Method" if @instvar == nil then @instvar = 1 else @instvar += 1 end
if @@classvar == nil then @@classvar = 1 else @@classvar += 1 end
end
def showVars return "(instance method) @instvar = #{@instvar}, @@classvar = #{@@classvar}" end
def MyClass.showVars return "(class method) @instvar = #{@instvar}, @@classvar = #{@@classvar}" end
end
puts( MyClass.showVars )
puts( '--------------' )
for i in 0..2 do
ob = MyClass.new
MyClass.classMethod
ob.instanceMethod
puts( MyClass.showVars )
puts( ob.showVars )
end
Don't ask me. You just read it!
Pay attention to this post! It's so great book for you!
Very cool! That's all right! Thank you!