summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/ruby-gist/package.py
blob: fc79942d36d8b7128296778b9198d4d4175498e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class RubyGist(RubyPackage):
    """The gist gem provides a gist command that you can use from your terminal to upload content to https://gist.github.com/."""

    homepage = "https://github.com/defunkt/gist"
    url = "https://rubygems.org/downloads/gist-6.0.0.gem"

    version(
        "6.0.0",
        sha256="0d0a3616b1a4eec837ce4e5b5477bc809d58597ee350b2c34104acd3b00ccd62",
        expand=False,
    )

    depends_on("ruby@1.8:2", type=("build", "run"))