You've already forked sensor_scanner
mirror of
https://github.com/usetrmnl/sensor_scanner.git
synced 2026-04-29 13:45:14 -07:00
80ff29343a
Necessary to provide initial scaffolding for this project. This was generated using link:https://alchemists.io/projects/rubysmith[Rubysmith]. While this isn't a Ruby project since the core implementation is in C, having the Ruby tooling will help from a CI and code quality perspective.
31 lines
544 B
Ruby
31 lines
544 B
Ruby
# frozen_string_literal: true
|
|
|
|
ruby file: ".ruby-version"
|
|
|
|
source "https://rubygems.org"
|
|
|
|
gem "refinements", "~> 14.0"
|
|
gem "zeitwerk", "~> 2.7"
|
|
|
|
group :quality do
|
|
gem "caliber", "~> 0.87"
|
|
gem "git-lint", "~> 10.0"
|
|
gem "reek", "~> 6.5", require: false
|
|
gem "simplecov", "~> 0.22", require: false
|
|
end
|
|
|
|
group :development do
|
|
gem "rake", "~> 13.3"
|
|
end
|
|
|
|
group :test do
|
|
gem "rspec", "~> 3.13"
|
|
end
|
|
|
|
group :tools do
|
|
gem "amazing_print", "~> 2.0"
|
|
gem "debug", "~> 1.11"
|
|
gem "irb-kit", "~> 2.0"
|
|
gem "repl_type_completor", "~> 0.1"
|
|
end
|