-b 0.0.0.0 之后,这样 localhost:3000 和 ip:3000 均可以访问
awesome
#10 楼 @blacktulip 粗略的浏览,my bad
(1..16).to_a.each_with_index { |n, i| print "#{n}#{(i+1)%4==0 ? "\n" : ","}" }
Only use each here:
(array = (1..16).to_a).each { |n| print "#{n}#{(array.index(n)+1)%4==0 ? "\n" : ","}" }
#1 楼 @wppurking 嗯,已阅,详细明了,再次受用啊
#13 楼 @yellowstar I DO,THKS
Awesome,lz 辛苦啦,运行蛮流畅的
#9 楼 @diudiutang 嗯,简洁一目了然
用的 warble gem,最后打包的命令 jruby -S warble war 打包成 war 包放到 tomcat 上,默认打包为 ROOT.war,如果打包为其他名字,such as Your_Name.war,那么发布好的要通过/Your_Name/your_url(defined in rails)
#5 楼 @sandybeauty 兄弟,可以贴出你的 gmail 的配置么?是配置在 config/application.rb 文件中么?我的是放在这个文件中,console 可以打印出 mail 内容,但是就是收不到邮件呢
我本机 run: gem install zeus 时候报错如下: ERROR: Error installing zeus: ERROR: Failed to build gem native extension.
c:/jruby-1.7.3/bin/jruby.exe extconf.rb
make 'make' is not recognized as an internal or external command, operable program or batch file.
Gem files will remain installed in c:/jruby-1.7.3/lib/ruby/gems/shared/gems/zeus -0.13.3 for inspection. Results logged to c:/jruby-1.7.3/lib/ruby/gems/shared/gems/zeus-0.13.3/ext/inoti fy-wrapper/gem_make.out
log 里的报错信息就是上面的“make”is not recongnized........这句,哪位哥们知道什么原因么?
#1 楼 @qichunren 谢谢回答,这个我之前试过:先生成 config,然后直接用 warble war 命令打包成 war 文件,放到 tomcat 里还是不行啊,我想问一下生成的 config 里哪些是必须的,还有就是打包运行用的是 production 环境,这个如何指定呢?
development 环境和 production 环境确实有差异,production 下需预编译,哪位哥们知道怎么做?