Commits on Source (48)
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
- gte_minimum_version? - actual_minor_version? - 100% spec coverage, lines & branches, with no exclusions
-
Peter Boling authored
- gte_minimum_version? - actual_minor_version? - 100% spec coverage, lines & branches, with no exclusions - Full RBS signatures
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
Signed-off-by:
Peter Boling <peter.boling@gmail.com>
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Jason Frey authored
-
Peter Boling authored
Remove the executable bit from non-executable files See merge request !2
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
-
Peter Boling authored
Showing
- .github/workflows/coverage.yml 33 additions, 38 deletions.github/workflows/coverage.yml
- .github/workflows/dependency-review.yml 20 additions, 0 deletions.github/workflows/dependency-review.yml
- .github/workflows/heads.yml 25 additions, 14 deletions.github/workflows/heads.yml
- .github/workflows/legacy.yml 7 additions, 2 deletions.github/workflows/legacy.yml
- .github/workflows/style.yml 22 additions, 11 deletions.github/workflows/style.yml
- .github/workflows/supported.yml 26 additions, 16 deletions.github/workflows/supported.yml
- .github/workflows/unsupported.yml 13 additions, 7 deletions.github/workflows/unsupported.yml
- .gitignore 1 addition, 6 deletions.gitignore
- .rubocop.yml 1 addition, 14 deletions.rubocop.yml
- .rubocop_gradual.lock 18 additions, 0 deletions.rubocop_gradual.lock
- .rubocop_todo.yml 0 additions, 46 deletions.rubocop_todo.yml
- .simplecov 2 additions, 30 deletions.simplecov
- .tool-versions 1 addition, 0 deletions.tool-versions
- .yardopts 1 addition, 0 deletions.yardopts
- CHANGELOG.md 37 additions, 1 deletionCHANGELOG.md
- CONTRIBUTING.md 71 additions, 11 deletionsCONTRIBUTING.md
- Gemfile 14 additions, 29 deletionsGemfile
- Gemfile.lock 163 additions, 0 deletionsGemfile.lock
- LICENSE.txt 1 addition, 1 deletionLICENSE.txt
- README.md 172 additions, 118 deletionsREADME.md
.github/workflows/dependency-review.yml
0 → 100644
.rubocop_gradual.lock
0 → 100644
.rubocop_todo.yml
deleted
100644 → 0
.tool-versions
0 → 100644
.yardopts
0 → 100644
# frozen_string_literal: true | ||
source 'https://rubygems.org' | ||
# Specify your gem's dependencies in gitmoji-regex.gemspec | ||
gemspec | ||
source "https://rubygems.org" | ||
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" } | ||
git_source(:gitlab) { |repo_name| "https://gitlab.com/#{repo_name}" } | ||
gem 'rake', '~> 13.0' | ||
gem 'rspec', '~> 3.0' | ||
ruby_version = Gem::Version.new(RUBY_VERSION) | ||
minimum_version = ->(version, engine = 'ruby') { ruby_version >= Gem::Version.new(version) && RUBY_ENGINE == engine } | ||
coverage = minimum_version.call('2.6') | ||
debugging = minimum_version.call('2.7') | ||
# Include dependencies from <gem name>.gemspec | ||
gemspec | ||
platforms :mri do | ||
if coverage | ||
gem 'codecov', '~> 0.6' # For CodeCov | ||
gem 'simplecov', '~> 0.21', require: false | ||
gem 'simplecov-cobertura' # XML for Jenkins | ||
gem 'simplecov-json' # For CodeClimate | ||
gem 'simplecov-lcov', '~> 0.8', require: false | ||
end | ||
if debugging | ||
# Add `byebug` to your code where you want to drop to REPL | ||
gem 'byebug' | ||
gem 'pry-byebug' | ||
end | ||
platform :mri do | ||
# Debugging | ||
gem "byebug", ">= 11" | ||
end | ||
platforms :jruby do | ||
# Add `binding.pry` to your code where you want to drop to REPL | ||
gem 'pry-debugger-jruby' | ||
end | ||
# Coverage | ||
gem "kettle-soup-cover", "~> 1.0", ">= 1.0.2" | ||
# Linting | ||
gem "rubocop-lts", "~> 8.1", ">= 8.1.1" # Linting for Ruby >= 2.2 | ||
gem "rubocop-packaging", "~> 0.5", ">= 0.5.2" | ||
gem "rubocop-rspec", "~> 2.10" |
Gemfile.lock
0 → 100755
This diff is collapsed.