-
[西安] 新空气软件 Ruby 工程师 2 名 at 2015年07月28日
支持一下
-
[西安] 元智系统招聘 Rails 工程师 1 名 at 2015年04月07日
西安的很难得,顶!
-
请教一个 SQL at 2015年03月16日
select * from a join b on b.aid = a.id where b.contry = 'cn' or b.country is null order by b.country desc limit 1
-
开发模式局域网如何访问 Rails 程序 at 2015年03月04日
http://guides.rubyonrails.org/4_2_release_notes.html 3.3 Default Host for rails server Due to a change in Rack, rails server now listens on localhost instead of 0.0.0.0 by default. This should have minimal impact on the standard development workflow as both http://127.0.0.1:3000 and http://localhost:3000 will continue to work as before on your own machine.
However, with this change you will no longer be able to access the Rails server from a different machine, for example if your development environment is in a virtual machine and you would like to access it from the host machine. In such cases, please start the server with rails server -b 0.0.0.0 to restore the old behavior.
If you do this, be sure to configure your firewall properly such that only trusted machines on your network can access your development server.
如果你的rails是最新版本(4.2) 你应该这样启动: rails server -b 0.0.0.0
-
大家是如何解决 Ubuntu 下安装 Rails 的网络问题的 at 2014年12月30日
source 'http://ruby.sdutlinux.org/' 用这个源吧 。