srccon

(★ 18)

website for SRCCON

File Explorer

  • .editorconfig
  • .gitignore
  • .prettierignore
  • .prettierrc
  • .ruby-version
  • .standard.yml
  • _config.yml
  • care-2022-program.md
  • care-2022-sponsors.md
  • care-2022.md
  • conduct.md
  • favicon.ico
  • Gemfile
  • Gemfile.lock
  • heart-2020-sponsors.md
  • heart-2020.md
  • homepage.md
  • humans.txt
  • LICENSE
  • package-lock.json
  • package.json
  • Rakefile
  • README.md
  • resources.md
  • share.md
  • sponsors.md
  • support.md
  • TROUBLESHOOTING.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

brew install

View Details ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

bundle

View Details ▼

Dependency manager for the Ruby programming language.

bundle install

Install all gems defined in the `Gemfile` expected in the working directory:

bundle exec {{command}} {{arguments}}

Execute a command in the context of the current bundle:

bundle update

Update all gems by the rules defined in the `Gemfile` and regenerate `Gemfile.lock`:

🔍

bundler

View Details ▼

This command is an alias of `bundle`.

tldr bundle

View documentation for the original command:

🔍

gem

View Details ▼

A package manager for the Ruby programming language.

gem search {{regex}} {{[-a|--all]}}

Search for remote gem(s) and show all available versions:

gem install {{gem_name}}

Install the latest version of a gem:

gem install {{gem_name}} {{[-v|--version]}} {{1.0.0}}

Install a specific version of a gem:

// repository documentation