behaves icon indicating copy to clipboard operation
behaves copied to clipboard

Define behaviors and contracts between your code.

Results 9 behaves issues
Sort by recently updated
recently updated
newest added

Updates the requirements on [rake](https://github.com/ruby/rake) to permit the latest version. Changelog Sourced from rake's changelog. === 13.0.6 Additional fix for #389 Pull request #390 by hsbt === 13.0.5 Fixed the...

dependencies

_Dependabot Preview will be shut down on August 3rd, 2021. In order to keep getting Dependabot updates, please merge this PR and migrate to GitHub-native Dependabot before then._ Dependabot has...

dependencies

Bumps [pry](https://github.com/pry/pry) from 0.12.2 to 0.14.1. Changelog Sourced from pry's changelog. [v0.14.1][v0.14.1] (April 12, 2021) Bug fixes Fixed bad coloring of some RDoc-style docs (#2182) Fixed broken --plugins option. It...

dependencies

Bumps [rspec](https://github.com/rspec/rspec) from 3.8.0 to 3.10.0. Commits d56f207 Version 3.10.0 b8032dd Merge pull request #59 from SteveChurch/patch-1 528ce21 Update rakefile 3e6c0fb Merge pull request #52 from rspec/ugo-x 0422528 Remove executable...

dependencies

As pointed out by @PikachuEXE over at #12, errors won't actually get raised until `exit` is called. This is because of the use of `at_exit`, which only gets run... _at...

bug
help wanted
discussion

``` class Animal extend Behaves implements :method_one end class Dog extend Behaves behaves_like Animal def method_1 "hello" end end ``` When we do this: ``` dog = Dog.new dog.behaves_like #...

feature request
help wanted
good first issue

Fix #2 by using block Not sure if I should remove the `at_exit` one

discussion

Currently, the tests are pretty simplistic in that it always çreate the `Behavior Object` as a class. _Logically_ (untested) it should more or less work the same for `Module`, but...

help wanted
good first issue

The example class `Animal` seems useless (for creating objects) Also would be good to have example for "multi-inheritance" ```ruby module Hunter extend Behaves implements(:hunt) end module Prey extend Behaves implements(:run,...