2016-05-06 88 views
3

Perl有一個叫做「http://search.cpan.org/recent」的地方,人們可以在這裏看到添加到CPAN的最新模塊。哪裏是最新的紅寶石:相當於search.cpan.org/recent的紅寶石

紅寶石程序員在哪裏可以找到「什麼是最新的寶石添加到紅寶石寶石索引」?

+0

https://twitter.com/rubygems? – cremno

+0

如果那些認爲關於寶石和知識庫的問題不在話下,那麼我會建議他們的觀點同樣偏離主題。然而,他們在一個方面是正確的,它確實吸引了意見和垃圾郵件 - 他們的。 – hsmyers

+0

我認爲它的嘲笑四人認爲它適合關閉我的問題 –

回答

5

CPAN真的很好。盡我所能找到的RubyGems:

require 'open-uri' 
require 'json' 

JSON.load(open('https://rubygems.org/api/v1/activity/latest.json')).each { |g| 
    printf("%s (%s)\n %s\n", g['name'], g['version'], g['info']) 
}; nil 

輸出:

flagsToggle (0.1.0) 
    flagsToggle provides a declarative, layered way of enabling and disabling application functionality at run-time 
threadable_comments (0.1.0) 
    Create comments along with their threads on any commentable object. Use Ancestry gem. 
puree (0.6.0) 
    Consumes the Pure Research Information System API and facilitates post-processing of metadata into simple data structures. 
inputs (0.1.0) 
    Stupid pointless gem for lazy Ruby developer to implement console interfaces for input fields like y/n questions, names, ... 
...  

RubuGems API文檔:
http://guides.rubygems.org/rubygems-org-api/