• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

bolshakov / fear
99%
main: %

Build:
Build:
LAST BUILD BRANCH: dependabot/github_actions/actions/dependency-review-action-4.8.0
DEFAULT BRANCH: main
Repo Added 14 Nov 2020 08:44PM UTC
Token 1A9PLj5pBwetol4ZxJIJmbODpx0DNEa83 regen
Build 213 Last
Files 49
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH feature/either-left-projection
branch: feature/either-left-projection
CHANGE BRANCH
x
Reset
Sync Branches
  • feature/either-left-projection
  • add-ruby-3.2-support
  • awaitable-spec
  • better-coverage
  • code-cleanup
  • dependabot/add-v2-config-file
  • dependabot/bundler/benchmark-ips-2.10.0
  • dependabot/bundler/benchmark-ips-2.11.0
  • dependabot/bundler/benchmark-ips-2.12.0
  • dependabot/bundler/benchmark-ips-2.13.0
  • dependabot/bundler/benchmark-ips-2.14.0
  • dependabot/bundler/benchmark-ips-2.8.4
  • dependabot/bundler/benchmark-ips-2.9.0
  • dependabot/bundler/benchmark-ips-2.9.1
  • dependabot/bundler/benchmark-ips-2.9.2
  • dependabot/bundler/benchmark-ips-2.9.3
  • dependabot/bundler/concurrent-ruby-1.1.10
  • dependabot/bundler/concurrent-ruby-1.1.8
  • dependabot/bundler/concurrent-ruby-1.1.9
  • dependabot/bundler/concurrent-ruby-1.2.2
  • dependabot/bundler/concurrent-ruby-1.2.3
  • dependabot/bundler/concurrent-ruby-1.3.1
  • dependabot/bundler/concurrent-ruby-1.3.3
  • dependabot/bundler/concurrent-ruby-1.3.4
  • dependabot/bundler/concurrent-ruby-1.3.5
  • dependabot/bundler/dry-types-1.5.0
  • dependabot/bundler/dry-types-1.5.1
  • dependabot/bundler/dry-types-1.8.0
  • dependabot/bundler/dry-types-1.8.1
  • dependabot/bundler/dry-types-1.8.2
  • dependabot/bundler/rake-13.0.3
  • dependabot/bundler/rake-13.0.4
  • dependabot/bundler/rake-13.0.5
  • dependabot/bundler/rake-13.0.6
  • dependabot/bundler/rake-13.1.0
  • dependabot/bundler/rake-13.2.1
  • dependabot/bundler/rexml-3.2.5
  • dependabot/bundler/rexml-3.2.8
  • dependabot/bundler/rexml-3.3.3
  • dependabot/bundler/rexml-3.3.9
  • dependabot/bundler/rspec-3.11.0
  • dependabot/bundler/rspec-3.12.0
  • dependabot/bundler/rspec-3.13.0
  • dependabot/bundler/simplecov-0.20.0
  • dependabot/bundler/simplecov-0.21.0
  • dependabot/bundler/simplecov-0.21.1
  • dependabot/bundler/simplecov-0.21.2
  • dependabot/bundler/simplecov-0.22.0
  • dependabot/bundler/simplecov-lcov-0.9.0
  • dependabot/bundler/standard-1.51.0
  • dependabot/bundler/standard-1.51.1
  • dependabot/bundler/yard-0.9.26
  • dependabot/bundler/yard-0.9.27
  • dependabot/bundler/yard-0.9.28
  • dependabot/bundler/yard-0.9.34
  • dependabot/bundler/yard-0.9.35
  • dependabot/bundler/yard-0.9.36
  • dependabot/bundler/yard-0.9.37
  • dependabot/bundler/zeitwerk-2.6.14
  • dependabot/bundler/zeitwerk-2.6.15
  • dependabot/bundler/zeitwerk-2.6.16
  • dependabot/bundler/zeitwerk-2.6.17
  • dependabot/bundler/zeitwerk-2.6.18
  • dependabot/github_actions/actions/checkout-5.0.0
  • dependabot/github_actions/actions/dependency-review-action-4.7.2
  • dependabot/github_actions/actions/dependency-review-action-4.7.3
  • dependabot/github_actions/actions/dependency-review-action-4.8.0
  • dependabot/github_actions/ruby/setup-ruby-1.255.0
  • dependabot/github_actions/ruby/setup-ruby-1.256.0
  • dependabot/github_actions/ruby/setup-ruby-1.257.0
  • dependabot/github_actions/ruby/setup-ruby-1.258.0
  • dependabot/github_actions/ruby/setup-ruby-1.259.0
  • dependabot/github_actions/rubygems/release-gem-9fc8c0f9a461e67716cde28f188b9a5c029333a8
  • dependabot/github_actions/step-security/harden-runner-2.13.1
  • feature/deprecations
  • feature/drop-struct
  • feature/drop-xcase
  • feature/extract-dry-types-fear
  • feature/pattern-matching
  • feature/ruby-3.0
  • feature/top-level-factory-methods
  • feature/truffleruby
  • feature/use-zeitwerk
  • fix-option-api-signature
  • fix-typos
  • github-actions
  • master
  • prevent-rubocop-unreachable-loop
  • refs/tags/v1.2.0
  • refs/tags/v2.0.0
  • refs/tags/v2.0.1
  • refs/tags/v3.0.0
  • release/1.2.0
  • release/2.0.0
  • release/v2.0.1
  • release/v3.0.0
  • update-dependencies
  • update-ruby-and-deps

24 Mar 2024 12:20PM UTC coverage: 99.239% (-0.2%) from 99.458%
8409238292

Pull #169

github

bolshakov
Implement Fear::Either#left

Projects this `Fear::Either` as a `Fear::Left`. This allows performing right-biased operation of the left
side of the `Fear::Either`:

```ruby
Fear.left(42).left.map(&:succ)  #=> Fear.left(43)
Fear.right(42).left.map(&:succ) #=> Fear.left(42)
```
Pull Request #169: Implement Fear::Either#left

74 of 77 new or added lines in 4 files covered. (96.1%)

1173 of 1182 relevant lines covered (99.24%)

51.8 hits per line

Relevant lines Covered
Build:
Build:
1182 RELEVANT LINES 1173 COVERED LINES
51.8 HITS PER LINE
Source Files on feature/either-left-projection
  • Tree
  • List 52
  • Changed 12
  • Source Changed 0
  • Coverage Changed 3
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
8409238292 feature/either-left-projection Implement Fear::Either#left Projects this `Fear::Either` as a `Fear::Left`. This allows performing right-biased operation of the left side of the `Fear::Either`: ```ruby Fear.left(42).left.map(&:succ) #=> Fear.left(43) Fear.right(42).left.map(&... Pull #169 24 Mar 2024 12:21PM UTC bolshakov github
99.24
See All Builds (125)

Badge your Repo: fear

We detected this repo isn’t badged! Grab the embed code to the right, add it to your repo to show off your code coverage, and when the badge is live hit the refresh button to remove this message.

Could not find badge in README.

Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

Refresh
  • Settings
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc