貌似可以直接来喃:
感觉深圳这个地方,10k 估计找不到人吧。
产品和装备都比较屌的样子。
记得以前有类似这样的弄法:
it { expect(subject).to validate_presence_of :email }
it { is_expected.to validate_presence_of :email }
it { should validate_presence_of :email }
记得 rails 3 都是三四年前的事情了,这 1.8 还不得八九年前的。
不错,用起来较为舒服。
如果要具体看方法定义的话,可以类似下面这样:
class A
def foo
end
end
file, line = A.instance_method(:foo).source_location
# or
file, line = A.new.method(:foo).source_location
puts "Method foo is defined in #{file}, line #{line}"
# => "Method foo is defined in temp.rb, line 2"
SessionsController 在 admin 目录下没?
Anything in the public directory is rendered as a static asset, so no Ruby code in there.
Instead, you should remove the index.html file in that directory, and replace it with something else within your app. For example, you can do something like this:
# app/controllers/site_controller.rb
class SiteController < ApplicationController
def index
# ...
end
end
# config/routes.rb
root to: 'site#index'
# app/views/site/index.html.erb
<!-- Your HTML and Ruby here -->
This will give you the behavior you want.
http://stackoverflow.com/questions/18485429/rails-use-ruby-in-public-index
看下 routes
里的 root
指向哪儿,或许可解。
#2 楼 @seabornlee 哈哈,正好有朋友在翻译这本书,接着校对之名看看也好。
觉得很有必要这样系统地看下 git 知识。
#1 楼 @catherine 对重构还是有一定的支持的。
不错。
#12 楼 @small_fish__ 话虽如此,直接在 jsx 里手写 HTML 还是有点受不了,好在有一些 react 的 UI 组件库可以用。
据我所知,西安有 ThoughtWorks、金数据 这些团队在用 Ruby。
dig 好东西
不错。
#6 楼 @uestc_bird 楼上几位都说的很好了。补充一点便于你理解他们的所说观点:
class A
@i = "hi"
def say
puts "#{@i}"
end
end
# 上下两中写法几乎一样
A = Class.new do
@i = "hi"
def say
puts "#{@i}"
end
end
你想问个啥?