mirror of
https://github.com/red-data-tools/YouPlot.git
synced 2025-12-16 03:08:54 +08:00
Compare commits
4 Commits
main
...
7442c10056
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7442c10056 | ||
|
|
448c1e9079 | ||
|
|
674daa84eb | ||
|
|
3e2ab1258b |
1
.github/FUNDING.yml
vendored
Normal file
1
.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
ko_fi: kojix2
|
||||||
6
.github/dependabot.yml
vendored
6
.github/dependabot.yml
vendored
@@ -1,6 +0,0 @@
|
|||||||
version: 2
|
|
||||||
updates:
|
|
||||||
- package-ecosystem: "github-actions"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "weekly"
|
|
||||||
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -7,9 +7,9 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
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"]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v4
|
||||||
- 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@v6
|
- uses: actions/checkout@v4
|
||||||
- uses: ruby/setup-ruby@v1
|
- uses: ruby/setup-ruby@v1
|
||||||
with:
|
with:
|
||||||
ruby-version: ruby
|
ruby-version: ruby
|
||||||
|
|||||||
5
Gemfile
5
Gemfile
@@ -5,6 +5,11 @@ 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
|
||||||
|
gem 'steep', require: false
|
||||||
|
gem 'typeprof'
|
||||||
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
gem 'rake'
|
gem 'rake'
|
||||||
gem 'simplecov'
|
gem 'simplecov'
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
Copyright (c) 2020 kojix2
|
Copyright (c) 2020 kojix2
|
||||||
Copyright (c) 2025 Red Data Tools
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|||||||
@@ -311,7 +311,7 @@ bundle exec exe/uplot # Run youplot (Try out the edited code)
|
|||||||
|
|
||||||
### Acknowledgements
|
### Acknowledgements
|
||||||
|
|
||||||
* [sampo grafiikka](https://lepo.sampo-grafiikka.com/) - Project logo creation
|
* [sampo grafiikka](https://jypg.net/sampo_grafiikka) - Project logo creation
|
||||||
* [yutaas](https://github.com/yutaas) - English proofreading
|
* [yutaas](https://github.com/yutaas) - English proofreading
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|||||||
8
Steepfile
Normal file
8
Steepfile
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
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,6 +3,7 @@
|
|||||||
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
|
||||||
|
|||||||
7
sig/youplot/backends/processing.rbs
Normal file
7
sig/youplot/backends/processing.rbs
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
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