Runtime assertions for Ruby literal.fun
ruby
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update config files

+1 -37
+1 -1
.ruby-version
··· 1 - 3.4.1 1 + 3.4.3
-1
.tool-versions
··· 1 - ruby 3.4.1
-1
.yardopts
··· 1 - --private --hide-api private --markup markdown
-5
CHANGELOG.md
··· 1 - ## [Unreleased] 2 - 3 - ## [0.1.0] - 2023-05-03 4 - 5 - - Initial release
-10
Rakefile
··· 1 - # frozen_string_literal: true 2 - 3 - require "bundler/gem_tasks" 4 - 5 - desc "Run tests" 6 - task :test do 7 - sh "bundle exec qt" 8 - end 9 - 10 - task default: :test
-11
bin/console
··· 1 - #!/usr/bin/env ruby 2 - # frozen_string_literal: true 3 - 4 - require "bundler/setup" 5 - require "literal" 6 - 7 - # You can add fixtures and/or initialization code here to make experimenting 8 - # with your gem easier. You can also use a different console, if you like. 9 - 10 - require "irb" 11 - IRB.start(__FILE__)
-8
bin/setup
··· 1 - #!/usr/bin/env bash 2 - set -euo pipefail 3 - IFS=$'\n\t' 4 - set -vx 5 - 6 - bundle install 7 - 8 - # Do any other automated setup that you need to do here