Native TLS protocol implementation, focusing on purity and more
type-checking.
Currently implement the SSL3.0, TLS1.0 and TLS1.1 protocol. Not yet
properly secure and missing some features. Do not yet use as replacement
to more mature implementation.
Only RSA supported as Key exchange for now.
ok kili@
Certificates and Key reader/writer. At the moment only X509 certificate
and unencrypted private key are supported, but will include PGP
certificate and pkcs8 private keys.
ok kili@
- add rc script
- no need for groff
- remove README since the remaining relevant snippet is in the manpage
(maintainer timeout)
feedback and ok ajacoutot@
Collection of crypto hashes, with a practical incremental and one-pass,
pure APIs, with performance close to the fastest implementations
available in others languages.
feedback and ok kili@
Generic interface for cryptographic operations, platform independent
quality RNG, property tests and known-answer tests (KATs) for common
algorithms, and a basic benchmark infrastructure. Maintainers of hash
and cipher implementations are encouraged to add instances for the
classes defined in Crypto.Classes. [..]
ok kili@
other data_mapper gems.
DataMapper is a Object Relational Mapper written in Ruby. The goal is to
create an ORM which is fast, thread-safe and feature rich.
ok landry
DataMapper Plugin that adds foreign key constraints to associations.
Currently supports only PostgreSQL and MySQL. All constraints are added
to the underlying database, but constraining is implemented in pure
ruby.
ok landry
Some [hopefully] useful extensions to Ruby.s String class. Stringex is
made up of three libraries: ActsAsUrl [permalink solution with better
character translation], Unidecoder [Unicode to Ascii transliteration],
and StringExtensions [miscellaneous helper methods for the String
class].
ok landry
Railties is responsible for gluing the parts of Ruby on Rails together.
Overall, it:
* handles the entire bootstrapping process for a Rails application;
* manages the rails command line interface;
* provides the core Rails generators;
ok landry
Rack::Test is a small, simple testing API for Rack apps. It can be used
on its own or as a reusable starting point for Web frameworks and
testing libraries to build on.
ok landry
Rack::Mount is a stackable dynamic tree based Rack router. Rack::Mount
supports Rack's +X-Cascade+ convention to continue trying routes if the
response returns pass. This allows multiple routes to be nested or
stacked on top of each other. Since the application endpoint can trigger
the router to continue matching, middleware can be used to add arbitrary
conditions to any route. This allows you to route based on other request
attributes, session information, or even data dynamically pulled from a
database.
ok landry