summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-04-04Update erubis to version 2.5.0. Changes from version 2.3.1 include:jlam3-39/+331
+ Install as a Ruby gem. - Ruby on Rails 2.0 support. - Add new command-line property '--docwrite={true|false}' to Erubis::Ejavascript. If this property is true then 'document.write(_buf.join(""));' is used as postamble and if it is false then '_buf.join("")' is used. - When using Erubis::Eruby#evaluate(), changing local variables in templates have affected to variables accessible with TOPLEVEL_BINDING. It means that if you change variables in templates, it is possible to change variables in main program. This was a bug and is now fixed not to affect to variables in main program. - Preprocessing is supported by Ruby on Rails helper. - Erubis::Eruby#evaluate() (or Erubis::RubyEvaluator#evaluate()) now creates Proc object from @src and eval it. - Erubis::Eruby#def_method() is supported. This method defines ruby code as instance method or singleton metod. - Erubis::XmlHelper.url_escape() and u() which is alias of url_escape() are added.
2008-04-04Initial import of camping-1.5 as www/camping.jlam4-0/+59
Camping is a web framework which consistently stays at less than 4kb of code. You can probably view the complete source code on a single page. But, you know, it's so small that, if you think about it, what can it really do? The idea here is to store a complete fledgling web application in a single file like many small CGIs. But to organize it as a Model-View-Controller application like Rails does. You can then easily move it to Rails once you've got it going.
2008-04-04Update ruby-tzinfo to version 0.3.8. Changes from version 0.3.5 include:jlam3-635/+652
+ Install as a Ruby gem. * Updated to tzdata version 2008b (http://article.gmane.org/gmane.comp.time.tz/2149).
2008-04-04Initial import of ruby18-xslt-0.9.5 as textproc/ruby-xslt.jlam4-0/+58
Ruby/XSLT is a simple XSLT class based on libxml <http://xmlsoft.org/> and libxslt <http://xmlsoft.org/XSLT/>.
2008-04-04Update ruby-xmlparser to version 0.6.81. Changes from version 0.6.8.1jlam5-147/+87
include: + Install as a Ruby gem. * Fix bug in openInputStream().
2008-04-04Update ruby-rttool to version 1.0.2.0. Changes from version 1.0.2jlam4-52/+82
are only that this now installs as a gem, but the gem has a slightly different version number.
2008-04-04Initial import of ruby18-rison-1.2.1 as textproc/ruby-rison.jlam4-0/+43
Ruby-rison is a pure Ruby parser for Rison, a data serialization format optimized for compactness in URIs. Rison is a slight variation of JSON that looks vastly superior after URI encoding. Rison still expresses exactly the same set of data structures as JSON, so data can be translated back and forth without loss or guesswork.
2008-04-04Update ruby-maruku to version 0.5.8. Chanages from version 0.5.6 include:jlam3-72/+241
+ Install as a Ruby gem. * Fixed bugs: * Fix bug in which links `<http://..>` at beginning of lines could sometimes be mistaken for HTML. * Empty cells in table are now allowed. * Now this is accepted (Maruku did not like the "." inside the link) [a. b] is a link. [a. b]: http://site.com/ * Fix bug about double-encoding of ampersands in code blocks. * Fixed compatibility bug with Ruby 1.8.6 patchlevel 110.
2008-04-04Initial import of ruby18-markaby-0.5 as textproc/ruby-markaby.jlam4-0/+41
Markaby is a templating language for Ruby, with a plugin for Rails, which allows you to write HTML templates in pure-Ruby (a la Builder.)
2008-04-04Update ruby-libxml to version 0.5.4. Changes from version 0.3.8.4 include:jlam3-20/+157
+ Install as a Ruby gem. * Added XML::Reader, a set of bindings to the xmlTextReader API. * Other changes were made, but they were done on a branch with no changelog available.
2008-04-04Initial import of ruby18-json-pure-1.1.2 as textproc/ruby-json-pure.jlam4-0/+136
This is a implementation of the JSON specification according to RFC 4627. 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. The JSON generator escapes all non-ASCII an control characters with \uXXXX escape sequences and supports UTF-16 surrogate pairs in order to be able to generate the whole range of Unicode code points. This means that generated JSON text is encoded as UTF-8 (because ASCII is a subset of UTF-8) and at the same time avoids decoding problems for receiving endpoints that don't expect UTF-8 encoded texts. This package is a pure Ruby variant that relies on the iconv and the stringscan extensions, which are both part of the Ruby standard library.
2008-04-04Initial import of ruby18-json-1.1.2 as textproc/ruby-json.jlam5-0/+169
This is a implementation of the JSON specification according to RFC 4627. 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. The JSON generator escapes all non-ASCII an control characters with \uXXXX escape sequences and supports UTF-16 surrogate pairs in order to be able to generate the whole range of Unicode code points. This means that generated JSON text is encoded as UTF-8 (because ASCII is a subset of UTF-8) and at the same time avoids decoding problems for receiving endpoints that don't expect UTF-8 encoded texts. This package is fast C extension variant which is in parts implemented in C and comes with its own Unicode conversion functions and a parser generated by the Ragel State Machine Compiler.
2008-04-04Update ruby-hpricot to version 0.6. Changes from version 0.5.140 include:jlam4-116/+75
+ Install as a Ruby gem. * Hpricot for JRuby * Inline Markaby for Hpricot documents. * XML tags and attributes are no longer downcased like HTML is. * new syntax for grabbing everything between two elements using a Range in the s earch method: (doc/("font".."font/br")) or in nodes_at like so: (doc/"font").nod es_at("*".."br"). Only works with either a pair of siblings or a set of a parent and a sibling. * Ignore self-closing endings on tags (such as form) which are containers. Treat them like open parent tags. * Escaping of attributes. * Element#raw_attributes gives unescaped data. Element#attributes gives escaped. * Added: Elements#attr, Elements#remove_attr, Elements#remove_class. * Added: Traverse#preceding, Traverse#following, Traverse#previous, Traverse#next.
2008-04-04Initial import of ruby18-haml-1.8.2 as textproc/ruby-haml.jlam4-0/+177
Haml is a markup language that's used to cleanly and simply describe the XHTML of any web document without the use of inline code, using indentation rather than closing tags and allowing Ruby to be embedded with ease. Haml functions as a replacement for inline page templating systems such as PHP, ASP, and ERB, the templating language used in most Ruby on Rails applications. However, Haml avoids the need for explicitly coding XHTML into the template, because it itself is a description of the XHTML, with some code to generate dynamic content.
2008-04-04pkg_install-20080404:joerg7-62/+186
Switch pkg_info to use libfetch for remote access.
2008-04-04Update ruby-ferret to version 0.11.6. Changes from version 0.11.4jlam3-49/+232
include: + Install as a Ruby gem. * Fixed major bug in term vectors which was in turn affecting highlighting * Fixed memory leak in PerFieldAnalyzer * Fixed range query highlighter * Fixed memory alignment issues on Solaris * Added :use_keywords option to query parser so you can now turn of keywords so a search for OR will work * multiple other bug fixes
2008-04-04Update ruby-feed-normalizer to version 1.5.1. Changes from version 1.3.0jlam3-28/+38
include: + Install as a Ruby gem. * Add support for new fields: * Atom 0.3: issued is now available through entry.date_published. * RSS: feed.skip_hours, feed.skip_days, feed.ttl * All: entry.last_updated, this is an alias to entry.date_published for RSS. * Rewrite relative links in content * Handle CDATA sections consistently across all formats. * Prevent SimpleRSS from doing its own escaping. * Reparse Time classes * Support content:encoded. Accessible via Entry#content. * Support categories. Accessible via Entry#categories. * Introduces a new parsing feature 'loose parsing'. * Add support for applicable dublin core elements. (dc:date and dc:creator) * Feeds can now be dumped to YAML. * Reduced the greediness of a regexp that was removing html comments.
2008-04-04Initial import of ruby18-diff-lcs-1.1.2 as textproc/ruby-diff-lcs.jlam4-0/+47
Diff::LCS is a port of Perl's Algorithm::Diff that uses the McIlroy-Hunt longest common subsequence (LCS) algorithm to compute intelligent differences between two sequenced enumerable containers.
2008-04-04Initial import of ruby18-coderay-0.7.4.215 as textproc/ruby-coderay.jlam4-0/+83
CodeRay is fast syntax highlighter for Ruby and other languages. It produces colorful, valid XHTML. CodeRay's design goal: simple, beautiful code highlighting for your board/wiki/blog/doc/website.
2008-04-04Initial import of ruby18-builder-2.1.2 as textproc/ruby-builder.jlam4-0/+51
Builder provide a simple way programmatically create XML markup and data structures within Ruby.
2008-04-04Initial import of ruby18-bluecloth-1.0.0 as textproc/ruby-bluecloth.jlam4-0/+49
BlueCloth is a Ruby implementation of Markdown, a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML).
2008-04-04Initial import of ruby18-directory-watcher-1.1.1 asjlam4-0/+39
sysutils/ruby-directory-watcher. The directory watcher operates by scanning a directory at some interval and generating a list of files based on a user-supplied glob pattern. As the file list changes from one interval to the next, events are generated and dispatched to registered observers. Three types of events are supported -- added, modified, and removed.
2008-04-04Update puppet to version 0.24.4. Changes from verison 0.22.4 include:jlam9-449/+771
+ Install as a Ruby gem. - Better caching of external lookups. - Many bug fixes. - External node commands can specify an environment and Puppet will now use it. - Always duplicating resource defaults in the parser, so that stacked metaparameter values do not result in all resources that receive a given default also getting those stacked values. - Puppet's parser no longer changes the order in which statements are evaluated, which means that case statements can now set variables that are used by other variables. - Clients should now fail to install files whose checksums do not match the checksum from the server. - Autoloading now searches the plugins directory in each module, in addition to the lib directory. - Virtual defined types are no longer evaluated. NOTE: This introduces a behaviour change, in that you previously could realize a resource within a virtual defined resource, and now you must realize the entire defined resource, rather than just the contained resource. - Added builtin support for Nagios types using Naginator to parse and generate the files. - Modifying the behaviour of the certdnsnames setting. It now defaults to an empty string, and will only be used if it is set to something else. - External node support now requires that you set the 'node_terminus' setting to 'exec'. - You now must specify an environment and you are required to specify the valid environments for your site. - The --use-nodes and --no-nodes options are now obsolete. Puppet automatically detects when nodes are defined, and if they are defined it will require that a node be found, else it will not look for a node nor will it fail if it fails to find one. - Added support for managing interfaces. - Puppet clients now have http proxy support. - Adding module autoloading. - Significantly reworked external node support, in a way that's NOT backward-compatible: Only ONE node source can be used -- you can use LDAP, code, or an external node program, but not more than one. LDAP node support has two changes: First, the "ldapattrs" attribute is now used for setting the attributes to retrieve from the server (in addition to required attriutes), and second, all retrieved attributes are set as variables in the top scope. This means you can set attributes on your LDAP nodes and they will automatically appear as variables in your configurations. External node support has been completely rewritten. These programs must now generate a YAML dump of a hash, with "classes" and "parameters" keys. The classes should be an array, and the parameters should be a hash. The external node program has no support for parent nodes -- the script must handle that on its own. - Replaced the obsolete RRD ruby library with the maintained RubyRRDtool library - Significantly reworking configuration parsing. Executables all now look for 'puppet.conf', although they will parse the old-style configuration files if they are present, although they throw a deprecation warning. Also, file parameters (owner, mode, group) are now set on the same line as the parameter, in brackets.
2008-04-04Initial import of capistrano-2.2.0 as sysutils/capistrano.jlam4-0/+152
Capistrano is a tool for automating tasks on one or more remote servers. It executes commands in parallel on all targeted machines, and provides a mechanism for rolling back changes across multiple machines.
2008-04-04Initial import of ruby18-net-ssh-1.1.2 as security/ruby-net-ssh.jlam4-0/+278
Net::SSH is to SSH as Net::Telnet is to Telnet and Net::HTTP is to HTTP. Perform non-interactive SSH processing, purely from Ruby!
2008-04-04libnbcompat-20080404:joerg1-2/+2
Add an implement of timegm(3) from nsd (based on Python code).
2008-04-04Initial import of ruby18-net-sftp-1.1.1 as security/ruby-net-sftp.jlam4-0/+135
Net::SFTP is a pure-Ruby implementation of the SFTP client protocol.
2008-04-04Initial import of ruby18-pdf-writer-1.1.8 as print/ruby-pdf-writer.jlam4-0/+108
PDF::Writer for Ruby provides the ability to create PDF documents using only native Ruby libraries.
2008-04-04Initial import of ruby18-transaction-simple-1.4.0 asjlam4-0/+56
misc/ruby-transaction-simple. Transaction::Simple provides a generic way to add active transaction support to objects. The transaction methods added by this module will work with most objects, excluding those that cannot be Marshal-ed (bindings, procedure objects, IO instances, or singleton objects).
2008-04-04Initial import of ruby18-launchy-0.3.1 as misc/ruby-launchy.jlam4-0/+51
Launchy is helper class for launching cross-platform applications in a fire and forget manner. There are application concepts (browser, email client, etc.) that are common across all platforms, and they may be launched differently on each platform. Launchy is here to make a common approach to launching external application from within Ruby programs.
2008-04-04Update ruby-gem_plugin to version 0.2.3. Changes from version 0.2.2jlam4-147/+36
include: - Turn into a signed gem.
2008-04-04Add an implement of timegm(3) from nsd (based on Python code).joerg2-1/+85
2008-04-04Update ruby-daemons to version 1.0.10. Changes from version 1.0.8 include:jlam4-29/+63
+ Install as a Ruby gem. - Fixed a severe bug in the new Pid.running? function: function returned true if the process did not exist. - By default, we now delete stray pid-files (i.e. pid-files which result for example from a killed daemon) automatically. This function can be deactivated by passing :keep_pid_files => true as an option. - All pid files of :multiple daemons new get deleted correctly upon exit of the daemons. - Use the signal 'KILL' instead of 'TERM' on Windows platforms. - Use exit! in trap('TERM') instead of exit when option :hard_exit is given. - Did some clarification on the exception log.
2008-04-04Initial import of ruby18-configuration-0.0.5 as misc/ruby-configuration.jlam4-0/+44
configuration.rb provides a mechanism for configuring Ruby programs with Ruby configuration files.
2008-04-04Update ruby-tmail to version 1.2.2. Changes from version 1.2.1 include:jlam4-76/+217
+ Install as a Ruby gem. * A _LOT_ more documentation...! * Make ready for Ruby 1.9 * Fixed UNIXMbox code - readonly was not working and raising an exception. * Multiple froms not being parsed correctly, added a test case to cover this and show the correct handling
2008-04-04Initial import of ruby18-mime-types-1.15 as mail/ruby-mime-types.jlam4-0/+40
This library allows for the identification of a file's likely MIME content type. The identification of MIME content type is based on a file's filename extensions.
2008-04-04Initial import of ruby18-mailfactory-1.2.3 as mail/ruby-mailfactory.jlam4-0/+30
Mailfactory is a Ruby module that allows for the simple creation of MIME email messages with multiple body parts and attachments.
2008-04-04Update ruby-cairo to version 1.5.1. Changes from version 1.5.0 include:jlam3-30/+78
+ Install as a Ruby gem. * Support Quartz surface. * Fix a wrong type conversion bug. * Fix a memory leak bug. * Support ruby 1.9.0. * Fix typos. * Rename Cairo::WIN32Surface to Cairo::Win32Surface * Cairo::WIN32Surface is still available for backward compatibility but don't use in newly written code.
2008-04-04Update ruby-opengl to version 0.60.0. Changes from version 0.32gjlam6-119/+164
include: + Install as a Ruby gem. * Support for Ruby 1.9.0+ (requires mkrf 0.2.3) * Added support for many more OpenGL extensions * GLU and GLUT cleanup, bugfixes, some missing functions added - version 3.7 of GLUT API is now requirement (previously 3.0) * Support for OpenGL 2.1 (that includes pixelpack/unpack buffer) * Lots of bugfixes.
2008-04-04Initial import of ruby18-color-1.4.0 as graphics/ruby-color.jlam4-0/+77
The capabilities of the Color library are limited to pure mathematical manipulation of the colors based on color theory without reference to color profiles (such as sRGB or Adobe RGB). For most purposes, when working with the RGB and HSL colors, this won't matter. However, some color models (like CIE La*b) are not supported because Color does not yet support color profiles, giving no meaningful way to convert colors in absolute color spaces (like La*b, XYZ) to non-absolute color spaces (like RGB).
2008-04-04Add an implement of timegm(3) from nsd (based on Python code).joerg2-1/+96
2008-04-04Initial import of ruby18-activemerchant-1.3.2 asjlam4-0/+292
finance/ruby-activemerchant. Active Merchant is a Ruby library for dealing with credit cards, payment processors and shipping. It has a simple and unified API to access dozens of different payment gateways with very different internal APIs.
2008-04-04Update rubyforge to version 4.5.0. Changes from version 0.4.2 include:jlam3-39/+27
+ Install as a Ruby gem. * Update for Ruby 1.9.0. * New type_id values will merge with extant data. (self-repairing data is Good) * Scrape processor_ids, merging in with extant data. * Default to "Other" if a file's type is unrecognized. * Set mode on .rubyforge directory to 700. * Fix fetching of user id when user has no releases.
2008-04-04Initial import of ruby18-ruby2ruby-1.1.8 as devel/ruby2ruby.jlam4-0/+39
ruby2ruby provides a means of generating pure ruby code easily from ParseTree's Sexps. This makes making dynamic language processors much easier in ruby than ever before.
2008-04-04Initial import of ruby18-validatable-1.6.7 as devel/ruby-validatable.jlam4-0/+72
The validatable library can be included with any Ruby class and provide validations similar to ActiveRecord's. The library follows ActiveRecord's lead for features that are similar and introduces new features.
2008-04-04Initial import of ruby18-test-spec-0.4.0 as devel/ruby-test-spec.jlam4-0/+53
test/spec layers an RSpec-inspired interface on top of Test::Unit, so you can mix TDD and BDD (Behavior-Driven Development).
2008-04-04Initial import of ruby18-rspec-1.1.3 as devel/ruby-rspec.jlam4-0/+479
RSpec is a Behaviour Driven Development framework for Ruby. It provides two frameworks for writing and executing examples of how your Ruby application should behave: * a Story Framework for describing behaviour at the application level * a Spec Framework for describing behaviour at the object level
2008-04-04Update ruby-rgl to version 0.3.1. Changes from version 0.2.3 include:jlam4-149/+124
+ Install as a Ruby gem. * All IDs for DOT objects, including names, options, and values, are now automatically quoted as necessary for graphviz. Labels are handled specially in order to account for \l, \r, and \n sequences but are otherwise treated the same as other options. Some changes were made in order to remove explicit quotes from labels which are no longer necessary. * Removed backwards compatability method inject. * DOTSimpleElement provides no useful function, so remove it * Add support for the Mrecord shape to DOTNode. Rewrite DOTNode#to_s to be easier to understand. #Rewrite DOTPort to allow for nesting ports. * DOTElement no longer sets the label unless the user explicitly sets one. * Subgraphs must be identified by a "subgraph" header rather than a "graph" header * Added equality test for graphs, added cycle locating. Modified initialize to allow duplicating and merging of graphs. * Assorted bug fixes.
2008-04-04Initial import of ruby18-rcov-0.8.1.2.0 as devel/ruby-rcov.jlam5-0/+96
Ruby-rcov is a code coverage tool for Ruby. It is commonly used for viewing overall test unit coverage of target code. It features fast execution (20-300 times faster than previous tools), multiple analysis modes, XHTML and several kinds of text reports, easy automation with Rake via a RcovTask, fairly accurate coverage information through code linkage inference using simple heuristics, and colorblind-friendliness.
2008-04-04Initial import of ruby18-parsetree-2.1.1 as devel/ruby-parsetree.jlam4-0/+61
ParseTree is a C extension (using RubyInline) that extracts the parse tree for an entire class or a specific method and returns it as a s-expression (aka sexp) using ruby's arrays, strings, symbols, and integers.