YS1
- home
- docs
Description
YS1 is an indispensable toolkit and concept designed to be both convenient and useful, which I won’t want to forget. This toolkit is particularly valuable for basic information processing. It improves efficiency and accuracy in handling and managing information across a range of tasks.
Installation
gem Installation
git clone https://github.com/YumaYX/YS1.git && cd YS1 && gem build ys1.gemspec && gem install ys1*.gem --local
or
git clone https://github.com/YumaYX/YS1.git && cd YS1 && bundle install && bundle exec rake install:local
gem: Installs and manages gems globally or per Ruby version, handling only runtime dependencies from the gemspec and ignoring development dependencies.
bundle Installation
cat <<'GEMFILEEOF' >> Gemfile
# frozen_string_literal: true
source "https://rubygems.org"
gem 'ys1', git: 'https://github.com/YumaYX/YS1.git'
GEMFILEEOF
bundle install
bundle: Installs and manages gems per project based on the Gemfile and Gemfile.lock, resolving both runtime and development dependencies and isolating them within the project.
Usage
in your codes:
require "ys1"
-
gem install:ruby -rys1 -e 'p YS1::VERSION' -
bundle install:bundle exec ruby -rys1 -e 'p YS1::VERSION'
Contributing
Bug reports and pull requests are welcome on GitHub at github.com/YumaYX/ys1.
License
The gem is available as open source under the terms of the MIT License.