This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module KakaDudu exposing (..) | |
| import Browser | |
| import Dict | |
| import Html exposing (..) | |
| import Task | |
| import Time | |
| import TimeZone | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "bundler/inline" | |
| gemfile do | |
| source "https://rubygems.org" | |
| gem "sequel" | |
| gem "pg" | |
| gem "concurrent-ruby" | |
| end | |
| require "securerandom" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # frozen_string_literal: true | |
| require "bundler/inline" | |
| gemfile do | |
| source "https://rubygems.org" | |
| gem "sequel" | |
| gem "pg" | |
| gem "concurrent-ruby" | |
| gem "benchmark-ips" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Coverband: detected SimpleCov in test Env, allowing it to start Coverage | |
| Coverband: to ensure no error logs or missing Coverage call `SimpleCov.start` prior to requiring Coverband | |
| E, [2024-01-12T13:17:58.428001 #82678] ERROR -- : coverage failed to store | |
| E, [2024-01-12T13:17:58.428035 #82678] ERROR -- : Coverband Error: #<RuntimeError: coverage measurement is not enabled> coverage measurement is not enabled | |
| E, [2024-01-12T13:17:58.830948 #82678] ERROR -- : coverage failed to store | |
| E, [2024-01-12T13:17:58.830980 #82678] ERROR -- : Coverband Error: #<RuntimeError: coverage measurement is not enabled> coverage measurement is not enabled | |
| Module#name from: REXML::Functions raised an error: #<NoMethodError: undefined method `[]' for nil:NilClass>. Fix your lib to follow normal ruby semantics! | |
| {Module,Class}#name should return resolvable constant name as String or nil | |
| Class#name from: Faker::Travel::Airport raised an error: #<ArgumentError: missing keywords: :size, :region>. Fix your lib to follow normal ruby semant |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Coverband: detected SimpleCov in test Env, allowing it to start Coverage | |
| Coverband: to ensure no error logs or missing Coverage call `SimpleCov.start` prior to requiring Coverband | |
| E, [2024-01-12T13:15:02.944498 #82333] ERROR -- : coverage failed to store | |
| E, [2024-01-12T13:15:02.944537 #82333] ERROR -- : Coverband Error: #<RuntimeError: coverage measurement is not enabled> coverage measurement is not enabled | |
| E, [2024-01-12T13:15:03.339597 #82333] ERROR -- : coverage failed to store | |
| E, [2024-01-12T13:15:03.339629 #82333] ERROR -- : Coverband Error: #<RuntimeError: coverage measurement is not enabled> coverage measurement is not enabled | |
| Module#name from: REXML::Functions raised an error: #<NoMethodError: undefined method `[]' for nil:NilClass>. Fix your lib to follow normal ruby semantics! | |
| {Module,Class}#name should return resolvable constant name as String or nil | |
| Class#name from: Faker::Travel::Airport raised an error: #<ArgumentError: missing keywords: :size, :region>. Fix your lib to follow normal ruby semant |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require "bundler/inline" | |
| require "json" | |
| gemfile do | |
| source "https://rubygems.org" | |
| gem "rails_event_store", "2.9.1" | |
| gem "railties", "~> 7.0.0" | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require "bundler/inline" | |
| require "json" | |
| gemfile do | |
| source "https://rubygems.org" | |
| gem "rails_event_store", "2.9.1" | |
| gem "railties", "~> 7.0.0" | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require "bundler/inline" | |
| require "json" | |
| gemfile do | |
| source "https://rubygems.org" | |
| gem "rails_event_store", "2.9.1" | |
| gem "railties", "~> 7.0.0" | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *.gem | |
| *.rbc | |
| *.sublime-workspace | |
| .DS_Store | |
| .byebug_history | |
| .env | |
| .generators | |
| .idea | |
| .rakeTasks | |
| .rspec |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Xyz | |
| def self.some_module | |
| Module.new do | |
| # ... | |
| end | |
| end | |
| def self.included(klass) | |
| # klass.include(some_module) | |
| klass.include(self) |