Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
use prefix 'g' instead, and add symlinks
with original names in gnu/bin and gnu/man.
++pkgrevision
|
|
++pkgrevision
|
|
++pkgrevision
|
|
++pkgrevision
|
|
++pkgrevision
|
|
|
|
Use pid_t instead of __pid_t.
Fixes PR 46514.
|
|
## Rails 3.2.4 (May 31, 2012) ##
* Add hook for resource route's generator. *Santiago Pastorino*
|
|
## Rails 3.2.4 (May 31, 2012) ##
* No changes.
|
|
3.2.4 had some regression related problem.
## Rails 3.2.4 (May 31, 2012) ##
* Added #beginning_of_hour and #end_of_hour to Time and DateTime core
extensions. *Mark J. Titorenko*
* ActiveSupport::JSON::Variable is deprecated. Define your own #as_json and #encode_json methods
for custom JSON string literals. *Erich Menge*
|
|
## Rails 3.1.5 (May 31, 2012) ##
* No changes.
|
|
## Rails 3.1.5 (May 31, 2012) ##
* No changes.
|
|
## Rails 3.1.5 (May 31, 2012) ##
* call binmode on the tempfile for Ruby 1.8 compatibility
* Stop SafeBuffer#clone_empty from issuing warnings
* Use 1.9 native XML escaping to speed up html_escape and shush regexp warnings
|
|
* Rails 3.0.13 (May 31, 2012)
* No changes.
|
|
* Rails 3.0.13 (May 31, 2012)
* No changes.
|
|
* Rails 3.0.13 (May 31, 2012)
* Stop SafeBuffer#clone_empty from issuing warnings
|
|
v0.6.4, 2012-05-10 ([changes](https://github.com/colszowka/simplecov/compare/v0.6.3...v0.6.4))
-------------------
* [BUGFIX] Encoding issues with ISO-8859-encoded source files fixed.
See https://github.com/colszowka/simplecov/pull/117. (thanks to @Deradon)
* [BUGFIX] Ensure ZeroDivisionErrors won't occur when calculating the coverage result, which previously
could happen in certain cases. See https://github.com/colszowka/simplecov/pull/128. (thanks to @japgolly)
* [REFACTORING] Changed a couple instance variable lookups so SimpleCov does not cause a lot of warnings when
running ruby at a higher warning level. See https://github.com/colszowka/simplecov/issues/106 and
https://github.com/colszowka/simplecov/pull/119. (thanks to @mvz and @gioele)
v0.6.3, 2012-05-10 ([changes](https://github.com/colszowka/simplecov/compare/v0.6.2...v0.6.3))
-------------------
* [BUGFIX] Modified the API-changes for newer multi_json versions introduced with #122 and v0.6.2 so
they are backwards-compatible with older multi_json gems in order to avoid simplecov polluting
the multi_json minimum version requirement for entire applications.
See https://github.com/colszowka/simplecov/issues/132
* Added appraisal gem to the test setup in order to run the test suite against both 1.0 and 1.3
multi_json gems and ensure the above actually works :)
|
|
### 2.10.1 / 2012-05-03
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.10.0...v2.10.1)
Bug fixes
* fix regression introduced in 2.10.0 that broke integration with Devise
(https://github.com/rspec/rspec-rails/issues/534)
### 2.10.0 / 2012-05-03
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.9.0...v2.10.0)
Bug fixes
* `render_views` called in a spec can now override the config setting. (martinsvalin)
* Fix `render_views` for anonymous controllers on 1.8.7. (hudge, mudge)
* Eliminate use of deprecated `process_view_paths`
* Fix false negatives when using `route_to` matcher with `should_not`
* `controller` is no longer nil in `config.before` hooks
* Change `request.path_parameters` keys to symbols to match real Rails
environment (Nathan Broadbent)
* Silence deprecation warnings in pre-2.9 generated view specs (Jonathan del
Strother)
|
|
This is a meta package like one and reflect update of
ruby-rspec-core/ruby-rspec-expectations/ruby-rspec-mock.
|
|
### 2.10.1 / 2012-05-05
[full changelog](http://github.com/rspec/rspec-mocks/compare/v2.10.0...v2.10.1)
Bug fixes
* fix regression of edge case behavior
(https://github.com/rspec/rspec-mocks/issues/132)
* fixed failure of `object.should_receive(:message).at_least(0).times.and_return value`
* fixed failure of `object.should_not_receive(:message).and_return value`
### 2.10.0 / 2012-05-03
[full changelog](http://github.com/rspec/rspec-mocks/compare/v2.9.0...v2.10.0)
Bug fixes
* fail fast when an `exactly` or `at_most` expectation is exceeded
|
|
### 2.10.0 / 2012-05-03
[full changelog](http://github.com/rspec/rspec-expectations/compare/v2.9.1...v2.10.0)
Enhancements
* Add new `start_with` and `end_with` matchers (Jeremy Wadsack)
* Add new matchers for specifying yields (Myron Marson):
* `expect {...}.to yield_control`
* `expect {...}.to yield_with_args(1, 2, 3)`
* `expect {...}.to yield_with_no_args`
* `expect {...}.to yield_successive_args(1, 2, 3)`
* `match_unless_raises` takes multiple exception args
Bug fixes
* Fix `be_within` matcher to be inclusive of delta.
* Fix message-specific specs to pass on Rubinius (John Firebaugh)
|
|
### 2.10.1 / 2012-05-19
[full changelog](http://github.com/rspec/rspec-core/compare/v2.10.0...v2.10.1)
Bug fixes
* `RSpec.reset` properly reinits configuration and world
* Call `to_s` before `split` on exception messages that might not always be
Strings (slyphon)
### 2.10.0 / 2012-05-03
[full changelog](http://github.com/rspec/rspec-core/compare/v2.9.0...v2.10.0)
Enhancements
* Add `prepend_before` and `append_after` hooks (preethiramdev)
* intended for extension libs
* restores rspec-1 behavior
* Reporting of profiled examples (moro)
* Report the total amount of time taken for the top slowest examples.
* Report what percentage the slowest examples took from the total runtime.
Bug fixes
* Properly parse `SPEC_OPTS` options.
* `example.description` returns the location of the example if there is no
explicit description or matcher-generated description.
* RDoc fixes (Grzegorz Świrski)
* Do not modify example ancestry when dumping errors (Michael Grosser)
|
|
=== 3.0.9 / 2012-05-01
* 6 minor enhancements:
* Added a bunch of new tests from PTTC.
* Added masgn handling inside block_pass
* Added rewrite_iter to unwrap masgns w/ only 1 arg.
* Handle rewriting block_pass in iter.
* Imported RawParseTree test data from PTTC.
* Removed rewrite_masgn requirement for 4 slots.
* 3 bug fixes:
* Fixed dependencies to ensure they're not going to use ruby_parser 3 and friends.
* Fixed segv for NODE_BLOCK_PASS in iter (nd_iter == 1... go boom)
* Remove nil body in iter (I think this is wrong, but whatevs).
|
|
= 0.11.4
* Homepage has moved to http://gofreerange.com/mocha/docs.
|
|
== 1.6.12
* Silenced warnings (by James McEwan).
|
|
Changes are unknown.
|
|
Changes are unknown.
|
|
= Ruby-GetText-Package-2.2.1 (2012-05-20)
* Supported non ASCII string in msgid. [GitHub#1]
[Patch by Urban Hafner]
* Stopped overriding String#% on Ruby 1.9.
* Fixed a bug that "\" is too escaped.
* Removed GetText.bindtext dependency from GetText::PoParser.
* Ranamed GetText::MOFile to GetText::MoFile but GetText::MOFile
is still available.
Thanks to:
* Urban Hafner
|
|
=== 4.8.1 / 2012-06-01
* 1 bug fix:
* Fixed 1.9 bug caused by differences between Hash#find_all and Hash#select. (semaperepelitsa)
|
|
++pkgrevision
|
|
|
|
=== 3.0.6 / 2012-05-15
* 1 minor enhancement:
* Added install_plugins to the newb task
=== 3.0.5 / 2012-05-07
* 1 bug fix:
* Fixed ridocs argument handling (erikh)
=== 3.0.4 / 2012-05-01
* 1 bug fix:
* Removed rubygems/deprecated and rolled my own for users on older rubygems
|
|
=== 4.8.0 / 2012-05-04
* 1 minor enhancement:
* Added Minitest generation to zentest (use -t to generate for test/unit)
* 1 bug fix:
* Fixes and clarifications to Autotest#find_file. (hugh sasse)
|
|
|
|
|
|
Collection.
This module provides a simple method of testing that a MANIFEST matches the
distribution.
It tests three things:
Everything in MANIFEST exists
Everything in the package is listed in MANIFEST, or subsequently matches a
regular expression mask in MANIFEST.SKIP
Nothing exists in MANIFEST that also matches a mask in MANIFEST.SKIP, so
as to avoid an unsatisfiable dependency conditions
If there is no MANIFEST.SKIP included in your distribution, this module will
replicate the toolchain behaviour of using the default system-wide
MANIFEST.SKIP file. To view the contents of this file, use the command:
$ perldoc -m ExtUtils::MANIFEST.SKIP
|
|
Bump PKGREVISION.
|
|
|
|
devel/p5-Contextual-Return from 0.003.001nb1 to 0.004.003.
Upstream changes (in reverse order):
0.003002 Thu Jan 19 09:27:29 2012
- Updated version number of Contextual::Return::Failure
to placate CPAN indexer
- Improved error messages for bare handlers in bad contexts (thanks Mathew)
- Work around problems with Test::More and caller
0.004000 Thu Feb 16 14:30:56 2012
- Fixed context propagation bugs in FIXED and ACTIVE modifiers
- Added STRICT modifier to prevent fallbacks
(i.e. impose strict typing on return values)
0.004001 Thu Feb 16 19:01:05 2012
- Fixed annoying POD nit (thanks Salvatore)
0.004002 Fri Mar 2 06:18:38 2012
- Fixed significant typo (Carp:carp -> Carp::carp)
(thanks everyone who reported it)
0.004003 Wed Apr 11 07:55:49 2012
- Doc patch (thanks Fabrizio)
- Patched failures.t to account from bleadperl changes
(thanks Zefram!)
|
|
With older version 1.11nb1, it had many failures during automake.
Noticed that this newer version allowed the configuration and build
to complete.
|
|
Released on 2012/05/30.
* New global constants: globals_index.
* New methods added to the state class: get_metafield, get_metatable,
insert, push_value, raw_get and raw_set.
* Acknowledged that Lua 5.2 is currently not supported.
|
|
|
|
|
|
|
|
Notes: depends on libusbx (we need a switch between the two)
Conflicts with libusb (we need a switch between the two)
libusb-compat-0.1 is a replacement for libusb-0.1. However, instead
of being an actual implementation, libusb-0.1 is more of a
compatibility layer (or wrapper) which just converts libusb-0.1
calls into their libusb-1.0 equivalents.
It aims to look, feel and behave exactly like libusb-0.1. As it is
a replacement, you cannot install it alongside libusb-0.1 on the
same system.
As the compatibility layer implements the exact same ABI and API,
no modifications to existing libusb-0.1-based applications are
needed. You do not even have to recompile them. This compatibility
layer is a drop-in replacement.
|
|
|
|
|
|
libusbx is a library that provides generic access to USB devices.
As a library, it is meant to be used by developers, to facilitate
the development of applications that communicate with USB hardware.
It is portable: Using a single cross-platform API, it provides
access to USB devices on Linux, OS X, Windows and OpenBSD.
It is user-mode: No special privilege or elevation is required for
the application to communicate with a device.
It is version-agnostic: All versions of the USB protocol, from 1.0
to 3.0 (latest), are supported.
libusbx is a fork of libusb.
|