8000 Tags · ursm/rectify · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: ursm/rectify

Tags

v0.13.0

Toggle v0.13.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request andypike#51 from andypike/bump_gems_for_0-13

Bump version and gems for 0.13.0 release

v0.12.0

Toggle v0.12.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request andypike#46 from andypike/file_specs_bump_gems

File specs bump gems

v0.11.0

Toggle v0.11.0's commit message
Add options to Form#valid? to allow skipping of nested and array forms

v0.8.0

Toggle v0.8.0's commit message
Merge branch 'master' of github.com:andypike/rectify

v0.7.1

Toggle v0.7.1's commit message
Release 0.7.1

v0.7.0

Toggle v0.7.0's commit message
Merge branch 'master' of github.com:andypike/rectify

v0.6.1

Toggle v0.6.1's commit message
Command handler can use caller private methods

There are a number of private methods that it would be useful to access
from within a command handler block when used from inside a Rails
controller.

One reported case is andypike#20 where the reporter would like to access the
cookies collection. This is a private Rails controller method that is
normally accessible within an action.

The handler blocks delegate calls to the caller using method missing.
In that method with were checking first to confirm if the caller could
respond to the message but only included public methods. We now also
check private methods and if supported by the caller we use `#send` to
forward the message onto the caller (public or private methods).

This should fix andypike#20 and also fix andypike#15.

v0.6.0

Toggle v0.6.0's commit message
Merge branch 'master' of github.com:andypike/rectify

v0.5.4

Toggle v0.5.4's commit message
Fix codeclimate configuration

v0.5.3

Toggle v0.5.3's commit message
Move wisper RSpec matchers within Rectify matchers for easier integra…

…tion
0