RubyForge Project News
http://rubyforge.org
RubyForge Project News Highlightsbriscola:Pubblicata la versione 0.7.1 del programma cuperativa.
http://rubyforge.org/forum/forum.php?forum_id=33434
Bugfixes con sopratutto la possibilità di update automaticobriscolaIgor Sarzi Sartori2009-07-01T10:51:33+00:00Capcode 0.7.0
http://rubyforge.org/forum/forum.php?forum_id=33433
* You no more need to include Capcode::Resource in your models
* Capcode.run now accept a block. The content of the block is executed just before the server start.
* Add options support : you can now change the defaults port and host, daemonize or not and run in console mode.CapcodeGregoire Lejeune 2009-07-01T04:53:04+00:00HAML Scaffold:haml_scaffold 1.1.0 Released
http://rubyforge.org/forum/forum.php?forum_id=33432
haml_scaffold version 1.1.0 has been released!
Rails scaffolding with Haml rather than ERB, and various other improvements.
Changes:
### 1.1.0 / 2009-07-30
* 3 major enhancements
* Upated generator code to Rails 2.3.2.
* Haml Scaffold now generates layout and a SASS stylesheet.
* Tests now use 'test "name" do' syntax.HAML ScaffoldNorman Clarke2009-07-01T03:11:24+00:00GNMS - Gnome Network Management System:GNMS v2 - Release Candidate 1 has been released !
http://rubyforge.org/forum/forum.php?forum_id=33428
GNMS is a graphical Ruby/GTK tool used to monitor IP devices state using some known industry standards. Please give it a try and send us your feedback. Follow INSTALL file to setup all libraries and binaries required.GNMS - Gnome Network Management SystemDavid Maciejak2009-07-01T02:02:20+00:00Seattle.rb Projects:hoe 2.3.2 Released
http://rubyforge.org/forum/forum.php?forum_id=33424
hoe version 2.3.2 has been released!
Hoe is a rake/rubygems helper for project Rakefiles. It helps generate
rubygems and includes a dynamic plug-in system allowing for easy
extensibility. Hoe ships with plug-ins for all your usual project
tasks including rdoc generation, testing, packaging, and deployment.
Plug-ins Provided:
* Hoe::Clean
* Hoe::Debug
* Hoe::Deps
* Hoe::Flay
* Hoe::Flog
* Hoe::Inline
* Hoe::Package
* Hoe::Publish
* Hoe::RCov
* Hoe::Signing
* Hoe::Test
See class rdoc for help. Hint: ri Hoe
Changes:
### 2.3.2 / 2009-06-30
* 1 minor enhancement:
* splat all gems on release. (luis lavena)
* 3 bug fixes:
* Fix File.read_utf on ruby 1.9 for UTF-8 files
* Force read_utf to open file ascii-8bit. UGH. ruby 1.9 encoding is a PITA.
* Version regex needs to allow multiple spaces for OCD coders.Seattle.rb ProjectsRyan Davis2009-07-01T04:12:16+00:00rexical 1.0.4 Released
http://rubyforge.org/forum/forum.php?forum_id=33423
rexical version 1.0.4 has been released!
Rexical is a lexical scanner generator.
It is written in Ruby itself, and generates Ruby program.
It is designed for use with Racc.
Changes:
### 1.0.4
* Bug fixes
* Generated tokenizer only tokenizes on pullsrexAaron Patterson2009-07-01T03:51:24+00:00rprogram 0.1.6 Released
http://rubyforge.org/forum/forum.php?forum_id=33422
rprogram version 0.1.6 has been released!
RProgram is a library for creating wrappers around command-line programs.
RProgram provides a Rubyful interface to programs and all their options
or non-options. RProgram can also search for programs installed on a
system.
Changes:
### 0.1.6 / 2009-06-30
* Use Hoe 2.2.0.
* Removed requirement for 'open3'.
* Renamed Compat.PATHS to Compat.paths.
* Refactored Option#arguments.
* Removed Option#format.
* Refactored NonOption#arguments.
* Renamed NonOption#leading to NonOption#leading?.
* Removed NonOption#tailing.
* Added NonOption#tailing?.
* Added specs.
* All specs pass on Ruby 1.9.1-p0 and 1.8.6-p287.RProgrampostmodern 2009-06-30T08:48:50+00:00JSON implementation for Ruby:Security Fix json-1.1.7 for json_pure and json gems
http://rubyforge.org/forum/forum.php?forum_id=33415
Synopsis
========
Security Fix Release json-1.1.7 for json_pure and json gems.
Description
===========
The JSON::Pure::Parser contains a vulnerability that may lead to
catastrophic backtracking in one of its regular expressions. This
vulnerability doesn't affect the JSON::Ext::Parser or Rail's
Active::Support::JSON. Ruby 1.9.1 (but not Ruby 1.9 trunk) contains
the vulnerable json/pure code as well, so if you want to use the pure
parser you should update to a newer version or use the json gem 1.1.7
version.
Impact
======
An attacker can cause a denial of service attack by passing a
specially designed string into the JSON::Pure::Parser#parse method.
Affected versions
=================
- versions 1.1.0-1.1.6 of the JSON::Pure::Parser
Credit
======
Thanks to Bartosz Blimke for reporting this bug.
Changes
=======
2009-06-29 (1.1.7)
* Security Fix for JSON::Pure::Parser. A specially designed string
could cause catastrophic backtracking in one of the parser's
regular expressions in earlier 1.1.x versions. JSON::Ext::Parser
isn't affected by this issue. Thanks to Bartosz Blimke
<bartosz@new-bamboo.co.uk> for reporting this problem.
* This release also uses a less strict ruby version requirement for
the creation of the mswin32 native gem.JSON implementation for RubyFlorian Frank2009-06-30T05:05:06+00:00New Gem Generator:newgem 1.5.0 Released
http://rubyforge.org/forum/forum.php?forum_id=33411
newgem version 1.5.0 has been released!
Quickly bundle any Ruby libraries into a RubyGem and share it with the world, your colleagues, or perhaps just with yourself amongst your projects.
RubyGems are centrally stored, versioned, and support dependencies between other gems, so they are the ultimate way to bundle libraries, executables, associated tests, examples, and more.
Within this gem, you get one thing - <code>newgem</code> - an executable to create your own gems. Your new gems will include designated folders for Ruby code, test files, executables, and even a default website page for you to explain your project, and which instantly uploads to RubyForge website (which looks just like this one by default)
Changes:
### 1.5.0 2009-06-15
* support for hoe 2.0+ DSL
* 'Given a safe place' is now in a common Before block; so no longer explicitly required
* executable: generated executable includes: require 'rubygems'
* removed hoe-patched.rb since hoe 2.0+ is much more configurableNew Gem GeneratorDr Nic Williams2009-06-30T11:00:16+00:00ri_cal 0.7.0 Released
http://rubyforge.org/forum/forum.php?forum_id=33410
ri_cal version 0.7.0 has been released!
A new Ruby implementation of RFC2445 iCalendar.
The existing Ruby iCalendar libraries (e.g. icalendar, vpim) provide for parsing and generating icalendar files,
but do not support important things like enumerating occurrences of repeating events.
This is a clean-slate implementation of RFC2445.
A Google group for discussion of this library has been set up http://groups.google.com/group/rical_gem
Changes:
### 0.7.0 - 29 June 2009
* fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/14
component without recurrence properties should enumerate just itself only if it is within the period between starting and before
* added the :overlapping option to OccurrenceEnumerator#occurrences - Allows the enumeration of occurrences which are either partiall or completely within a timespan given by a pair of Dates/Times/DateTimes
* Fixed some Ruby 1.9 incompatibilities
* Added some new rake tasks to run specs under multi-ruby
### 0.6.3 - 14 June 2009
* Fixed http://rick_denatale.lighthouseapp.com/projects/30941-ri_cal/tickets/13
tzinfotimezones-with-no-transitions-fail-on-export
### 0.6.2 - 11 June 2009
* Fixed http://rick_denatale.lighthouseapp.com/projects/30941-ri_cal/tickets/12
export-failure-for-unbounded-tzinfo-timezone
### 0.6.1 - 6 June 2009
* Fixed problem with file which loads activesupport for the rake spec:with_activesupport task, it now
requires >=2.2 instead of <=2.2 - Thanks to Paul Scott-Murphy for finding this.
### 0.6.0 - 5 June 2009
Time for a minor version bump.
* Improved overall enumeration performance bypassing most of the effects of the poor performance of Ruby's DateTime class.
* Added a framework for performance monitoring during development.
- New performance directory with subdirs for code to be monitored for performance (subjects)
- New script files:
script/benchmark_subject runs a ruby benchmark on one performance subject
script/profile_subject runs ruby-prof for a subject and puts a kcachegrind compatible calltree in the performance_data directory.
- New rake tasks:
performance:benchmark runs benchmarks against all subjects in the performance directory and produces a consolidated output file in performance_data/benchmarks.out
performance:profile runs script/profile_subject against all subjects in the performance directory.
### 0.5.3 - 1 June, 2009
* Improved performance of time zone enumeration, TimeZonePeriod now caches occurrences
* Added a profiling directory which contains ruby programs which benchmark and/or profile performance
### 0.5.2
* Fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/11
Export folding is not UTF-8 Safe
### 0.5.1
* Fixed README to acknowledge release on RubyForge
### 0.5.0 rubyforge release candidate Tue May 26 10:26:43 2009 -0400
* Added OccurrenceEnumerator#zulu_occurrence_range
### 0.0.11 Sat May 23 18:24:57 2009 -0400
* Fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/5
* Fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/9
### 0.0.10
* Fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/8
### 0.0.9
* Fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/4
Missing comparison methods in PropertyValue::Date
* Fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/6
Type of dtstart and dtend (DATE or DATETIME) now preserved on enumeration
### 0.0.8
* Fixed http://rick_denatale.lighthouseapp.com/projects/30941-ri_cal/tickets/1
EXDATE and RDATE now pick up the timezone from DateTime, Time, and TimeWithZone values
* Fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/2
Missing arithmetic methods in PropertyValue::Date
* Fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/3
Components with no recurrence rules or rdate properties failed on enumeration, they now
will enumerate a single occurrence
### 0.0.7
* Fixed a bug relating to properly recognizing ActiveRecord::TimeWithZone
* DATETIME propertyvalues will now return an instance of TimeWithZone instead of DateTime when
activesupport is present, and it is appropriate. See the README for details
### 0.0.6
* Added rake tasks to run specs with either the tzinfo gem or activesupport (<=2.2)
* Default rake task now runs both of these
### 0.0.5
* Fixed a bug in occurrence enumeration reported by paulsm on github
### 0.0.4
* Fixed a bug in imported timezones reported by paulsm on github
### 0.0.3
* Added tzid method to Ruby Time and DateTime instances, and to ActiveRecord::TimeWithZone if it is defined this method is used to determine the desired
timezone when an instance of one of these classes is given as the value of a datetime property. If the tzid is nil then the default tzid is used,
if it is set to :floating then the property will be a floating time.
* Removed the ability to pass an array with a tzid string and a date-time since the above made it unnecessary
* The ruby datetime property returned from the ruby_value method on the DateTime property will return an instance of ::DateTime with:
** The proper utc offset
** The tzid set to the right tzid
* Made exdate/rdate building possible
* Added a default_tzid attribute to the Calendar component, if this attribute is not set for a particular calendar it will delegate to the default set
for the DateTime property class.
* Added fix patches from
** http://github.com/kjwierenga/ri_cal
** http://github.com/wesmaldonado/ri_cal
### 0.0.2
* Fixed gemspec
## 0.0.1ri_calRick DeNatale2009-06-30T01:48:31+00:00