You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage rubygem-kgio-2.8.0-1.lbn13.x86_64
kgio provides non-blocking I/O methods for Ruby without raising exceptions on EAGAIN and EINPROGRESS. It is intended for use with the Unicorn and Rainbows! Rack servers, but may be used by other applications (that run on Unix-like platforms).
RPMPackage rubygem-kgio-2.7.3-2.fc18.armv6hl
kgio provides non-blocking I/O methods for Ruby without raising exceptions on EAGAIN and EINPROGRESS. It is intended for use with the Unicorn and Rainbows! Rack servers, but may be used by other applications (that run on Unix-like platforms).
RPMPackage rubygem-jwt-0.1.8-1.lbn13.noarch
JSON Web Token implementation in Ruby
RPMPackage rubygem-json_pure-1.8.0-1.lbn13.noarch
This is a JSON implementation in pure Ruby.
RPMPackage rubygem-json-1.8.1-1.lbn13.x86_64
This is a implementation of the JSON specification according to RFC 4627 in Ruby. You can think of it as a low fat alternative to XML, if you want to store data to disk or transmit it over a network rather than use a verbose markup language.
RPMPackage rubygem-json-1.7.7-100.lbn13.armv6hl
This is a implementation of the JSON specification according to RFC 4627 in Ruby. You can think of it as a low fat alternative to XML, if you want to store data to disk or transmit it over a network rather than use a verbose markup language.
RPMPackage rubygem-jruby-openssl-0.7.6.1-1.lbn13.ruby193.noarch
JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.
RPMPackage rubygem-jquery-rails-2.2.0-1.lbn13.noarch
This gem provides jQuery and the jQuery-ujs driver for your Rails 3 application.
RPMPackage rubygem-journey-1.0.4-1.lbn13.noarch
Journey is a router. It routes requests.
RPMPackage rubygem-jekyll-0.11.2-1.lbn13.ruby193.noarch
Jekyll is a simple, blog aware, static site generator.
RPMPackage rubygem-isolate-3.0.0-1.lbn13.ruby193.noarch
Isolate is a very simple RubyGems sandbox. It provides a way to express and automatically install your project's Gem dependencies.
RPMPackage rubygem-ironfan-5.0.10-2.lbn13.noarch
Ironfan allows you to orchestrate not just systems but clusters of machines. It includes a powerful layer on top of knife and a collection of cloud cookbooks.
RPMPackage rubygem-ipaddress-0.8.0-1.lbn13.ruby193.noarch
IPAddress is a Ruby library designed to make manipulation \ of IPv4 and IPv6 addresses both powerful and simple. It mantains a layer of compatibility with Ruby's own IPAddr, while addressing many of its issues.
RPMPackage rubygem-iobuffer-1.1.2-1.lbn13.ruby193.x86_64
fast buffers for non-blocking IO
RPMPackage rubygem-io-console-0.3-24.lbn13.ruby193.x86_64
IO/Console provides very simple and portable access to console. It doesn't provide higher layer features, such like curses and readline.
RPMPackage rubygem-io-console-0.3-12.fc18.armv6hl
IO/Console provides very simple and portable access to console. It doesn't provide higher layer features, such like curses and readline.
RPMPackage rubygem-introspection-0.0.2-1.lbn13.ruby193.noarch
 
RPMPackage rubygem-interact-0.4.1-1.lbn13.ruby193.noarch
A simple API for command-line interaction. Provides a novel 'rewinding' feature, allowing users to go back in time and re-enter a botched answer. Supports multiple-choice, password prompting, overriding input events, defaults, etc.
RPMPackage rubygem-instantiator-0.0.6-1.lbn13.ruby193.noarch
Instantiate an arbitrary Ruby class
RPMPackage rubygem-inifile-2.0.2-1.lbn13.noarch
Although made popular by Windows, INI files can be used on any system thanks to their flexibility. They allow a program to store configuration data, which can then be easily parsed and changed. Two notable systems that use the INI format are Samba and Trac. More information about INI files can be found on the [Wikipedia Page](http://en.wikipedia.org/wiki/INI_file). The basic element contained in an INI file is the property. Every property has a name and a value, delimited by an equals sign *=*. The name appears to the left of the equals sign and the value to the right. name=value Section declarations start with *[* and end with *]* as in `[section1]` and `[section2]` shown in the example below. The section declaration marks the beginning of a section. All properties after the section declaration will be associated with that section. All lines beginning with a semicolon *;* or a number sign *#* are considered to be comments. Comment lines are ignored when parsing INI files. A typical INI file might look like this: [section1] ; some comment on section1 var1 = foo var2 = doodle var3 = multiline values \ are also possible [section2] var1 = baz var2 = shoodle