mirror of
https://github.com/red-data-tools/YouPlot.git
synced 2025-12-16 03:08:54 +08:00
Compare commits
4 Commits
92b6f73ca4
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e2f82e9c5b | ||
|
|
f98e3c98da | ||
|
|
766355e612 | ||
|
|
6f85094e6e |
6
.github/dependabot.yml
vendored
Normal file
6
.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: "github-actions"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
||||||
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -9,7 +9,7 @@ jobs:
|
|||||||
os: ["ubuntu", "macos"]
|
os: ["ubuntu", "macos"]
|
||||||
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "3.4", "head"]
|
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "3.4", "head"]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
- uses: ruby/setup-ruby@v1
|
- uses: ruby/setup-ruby@v1
|
||||||
with:
|
with:
|
||||||
ruby-version: ${{ matrix.ruby }}
|
ruby-version: ${{ matrix.ruby }}
|
||||||
|
|||||||
2
.github/workflows/doc.yml
vendored
2
.github/workflows/doc.yml
vendored
@@ -10,7 +10,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
- uses: ruby/setup-ruby@v1
|
- uses: ruby/setup-ruby@v1
|
||||||
with:
|
with:
|
||||||
ruby-version: ruby
|
ruby-version: ruby
|
||||||
|
|||||||
7
Gemfile
7
Gemfile
@@ -5,13 +5,6 @@ source 'https://rubygems.org'
|
|||||||
# Specify your gem's dependencies in youplot.gemspec
|
# Specify your gem's dependencies in youplot.gemspec
|
||||||
gemspec
|
gemspec
|
||||||
|
|
||||||
group :development do
|
|
||||||
if RUBY_VERSION >= '3.0'
|
|
||||||
gem 'steep', require: false
|
|
||||||
gem 'typeprof'
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
gem 'rake'
|
gem 'rake'
|
||||||
gem 'simplecov'
|
gem 'simplecov'
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
D = Steep::Diagnostic
|
|
||||||
|
|
||||||
target :lib do
|
|
||||||
signature "sig"
|
|
||||||
check "lib" # Directory name to check
|
|
||||||
|
|
||||||
configure_code_diagnostics(D::Ruby.silent) # `silent` diagnostics setting
|
|
||||||
end
|
|
||||||
@@ -3,7 +3,6 @@
|
|||||||
require_relative 'dsv'
|
require_relative 'dsv'
|
||||||
require_relative 'parser'
|
require_relative 'parser'
|
||||||
|
|
||||||
# FIXME
|
|
||||||
require_relative 'backends/unicode_plot'
|
require_relative 'backends/unicode_plot'
|
||||||
|
|
||||||
module YouPlot
|
module YouPlot
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
module YouPlot
|
|
||||||
module Backends
|
|
||||||
module Processing
|
|
||||||
def count_values: ([], ?tally: true, ?reverse: false) -> Array[Array[untyped]]
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
Reference in New Issue
Block a user