欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2/Agda, C++/Lisp/Haskell
Enterprise Ruby
来自开放百科 - 灰狐
(版本间的差异)
小 (→相关链接) |
|||
| (未显示1个用户的26个中间版本) | |||
| 第1行: | 第1行: | ||
| + | {{top news}} | ||
| + | |||
| + | Enterprise Ruby: Bring Ruby into Your Enterprise | ||
| + | |||
Ruby的企业级应用. | Ruby的企业级应用. | ||
| − | 期待看到企业级市场 | + | 期待看到企业级市场 [[Enterprise Python|Python]], [[Enterprise PHP|PHP]], Ruby 三足鼎立的局面. |
此外, Huihoo对Ruby的应用提供支持与服务: [[Huihoo Ruby Applications]] | 此外, Huihoo对Ruby的应用提供支持与服务: [[Huihoo Ruby Applications]] | ||
==相关项目== | ==相关项目== | ||
| + | *[[Puppet]]:[[Data Center|数据中心]]自动化解决方案,[[IT Management|IT系统管理]]的开放平台。 | ||
| + | *[[travis-ci]] 分布式构建系统 | ||
| + | *[[Ruby Enterprise Edition]] | ||
*[[ActiveWarehouse]] | *[[ActiveWarehouse]] | ||
*[[RubyWorks]] | *[[RubyWorks]] | ||
| 第17行: | 第24行: | ||
*[[XLsuite]] | *[[XLsuite]] | ||
*[[RForce]] | *[[RForce]] | ||
| + | *[[Substruct]] | ||
| + | |||
| + | ==MapReduce== | ||
| + | *[[Skynet]] | ||
| + | ==Virtual Machine== | ||
| + | *[[Rubinius]] | ||
==[[Web Services]]== | ==[[Web Services]]== | ||
*[[ActiveResource]] | *[[ActiveResource]] | ||
| 第32行: | 第45行: | ||
==[[eBay Web Services]]== | ==[[eBay Web Services]]== | ||
*[[eBay4R]] | *[[eBay4R]] | ||
| − | == | + | ==SAP== |
| − | + | [http://www.infoq.com/cn/news/2009/04/ruby-on-sap Ruby On SAP] | |
| − | + | ||
| − | + | SAP正准备把Ruby纳入SAP NetWaver和SAP ERP 6.0之中。ABAP Virtual Machine将会通过[https://www.sdn.sap.com/irj/scn/wiki?path=/display/Research/BlueRuby Blue Ruby]扩展来支持Ruby代码。 | |
| + | ==[[GIS]] & Map== | ||
| + | *[[GeoRuby]] | ||
| + | *[[GeoKit]] | ||
| + | *[[YM4R]] | ||
| + | *Beginning Google Maps Applications with Rails and Ajax: http://book.earthcode.com/ | ||
| + | |||
| + | Yahoo Map: | ||
| + | $ rails yahoo | ||
| + | $ cd yahoo | ||
| + | $ ruby script/generate controller intro | ||
| + | vi app/views/intro/map.rhtml | ||
| + | <html> | ||
| + | <head> | ||
| + | <script type="text/javascript" src="http://api.maps.yahoo.com/ajaxymap?v=3.7&appid=your yahoo app id"> | ||
| + | </script> | ||
| + | |||
| + | <script type="text/javascript"> | ||
| + | function load () { | ||
| + | // Create a map object | ||
| + | var map = new YMap(document.getElementById('map')); | ||
| + | // Add map type control | ||
| + | map.addTypeControl(); | ||
| + | // Set map type to either of: YAHOO_MAP_SAT, | ||
| + | // YAHOO_MAP_HYB, YAHOO_MAP_REG | ||
| + | map.setMapType(YAHOO_MAP_HYB); | ||
| + | // Display the map centered on a geocoded location | ||
| + | map.drawZoomAndCenter("Berlin", 3); | ||
| + | } | ||
| + | </script> | ||
| + | </head> | ||
| + | |||
| + | <body onload="load()"> | ||
| + | <nowiki> <div id="map" style="width: 500px; height: 500px"></div></nowiki> | ||
| + | </body> | ||
| + | </html> | ||
| + | http://localhost:3000/intro/map | ||
| + | Google Maps REST Geocoder | ||
| + | <nowiki> http://maps.google.com/maps/geo?q=Torstra%C3%9Fe+104,+Berlin,+Germany&output=xml&key=ABQIAAAAwWqh7sPpuhNCdGZ0pieShBTJQa0g3IQ9GZqIMmInSLzwtGDKaBQOJH6Tw4jIlz7bMDU6qtLF_9TSHQ</nowiki> | ||
| + | |||
| + | from Rails GIS Hacks: http://docs.huihoo.com/rails/railseurope2007/re7_burqrasul.pdf | ||
| + | |||
| + | ==链接== | ||
| + | *[http://defendem.com/read/book/1 Enterprise Ruby On Rails] | ||
| + | *[http://www.pragmaticprogrammer.com/titles/fr_eir/ Enterprise Integration with Ruby] | ||
| + | *[http://pragmaticstudio.com/ruby/ Enterprise Ruby Studio] | ||
| + | |||
| + | {{comment}} | ||
| + | |||
| + | [[category:ruby]] | ||
| + | [[category:huihoo]] | ||
2013年3月5日 (二) 15:37的最后版本
Enterprise Ruby: Bring Ruby into Your Enterprise
Ruby的企业级应用.
期待看到企业级市场 Python, PHP, Ruby 三足鼎立的局面.
此外, Huihoo对Ruby的应用提供支持与服务: Huihoo Ruby Applications
目录 |
[编辑] 相关项目
- Puppet:数据中心自动化解决方案,IT系统管理的开放平台。
- travis-ci 分布式构建系统
- Ruby Enterprise Edition
- ActiveWarehouse
- RubyWorks
- RedMine
- OpenWFEru
- Rools
- Ruby Reports
- Ferret
- Capistrano
- Classified Ads
- XLsuite
- RForce
- Substruct
[编辑] MapReduce
[编辑] Virtual Machine
[编辑] Web Services
[编辑] Amazon Web Services
[编辑] eBay Web Services
[编辑] SAP
SAP正准备把Ruby纳入SAP NetWaver和SAP ERP 6.0之中。ABAP Virtual Machine将会通过Blue Ruby扩展来支持Ruby代码。
[编辑] GIS & Map
- GeoRuby
- GeoKit
- YM4R
- Beginning Google Maps Applications with Rails and Ajax: http://book.earthcode.com/
Yahoo Map:
$ rails yahoo $ cd yahoo $ ruby script/generate controller intro vi app/views/intro/map.rhtml <html> <head> <script type="text/javascript" src="http://api.maps.yahoo.com/ajaxymap?v=3.7&appid=your yahoo app id"> </script>
<script type="text/javascript">
function load () {
// Create a map object
var map = new YMap(document.getElementById('map'));
// Add map type control
map.addTypeControl();
// Set map type to either of: YAHOO_MAP_SAT,
// YAHOO_MAP_HYB, YAHOO_MAP_REG
map.setMapType(YAHOO_MAP_HYB);
// Display the map centered on a geocoded location
map.drawZoomAndCenter("Berlin", 3);
}
</script>
</head>
<body onload="load()">
<div id="map" style="width: 500px; height: 500px"></div>
</body> </html> http://localhost:3000/intro/map
Google Maps REST Geocoder http://maps.google.com/maps/geo?q=Torstra%C3%9Fe+104,+Berlin,+Germany&output=xml&key=ABQIAAAAwWqh7sPpuhNCdGZ0pieShBTJQa0g3IQ9GZqIMmInSLzwtGDKaBQOJH6Tw4jIlz7bMDU6qtLF_9TSHQ
from Rails GIS Hacks: http://docs.huihoo.com/rails/railseurope2007/re7_burqrasul.pdf
[编辑] 链接
<discussion>characters_max=300</discussion>
分享您的观点