Sha256: 11497d046e4940a892ace5e5eb1ddd537ec9381bfe11c1b4c5e1af421a1f9f9e

Contents?: true

Size: 1.69 KB

Versions: 5

Compression:

Stored size: 1.69 KB

Contents

# frozen_string_literal: true

require_relative "lib/zettacode/version"

Gem::Specification.new do |spec|
  spec.name = "zettacode"
  spec.version = Zettacode::VERSION
  spec.authors = ["David Vargas Ruiz"]
  spec.email = ["dvarrui@protonmail.com"]
  spec.license = "GPL-3.0"

  spec.summary = "Manage files from Rosetta Code web site."
  spec.description = "Magage files from Rosetta Code web site."
  spec.homepage = "https://github.com/dvarrui/zettacode"
  spec.required_ruby_version = ">= 2.6.0"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = spec.homepage
  spec.metadata["changelog_uri"] = "https://github.com/dvarrui/zettacode/CHANGELOG.md"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(__dir__) do
    `git ls-files -z`.split("\x0").reject do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
    end
  end
  spec.bindir = "bin"
  spec.executables << "zettacode"
  spec.executables << "zcode"
  spec.require_paths = ["lib"]

  # spec.files = Dir.glob(File.join("lib", "**", "*.*"))

  # Uncomment to register a new dependency of your gem
  # spec.add_dependency "example-gem", "~> 1.0"
  spec.add_runtime_dependency "colorize", "~> 0.8"
  spec.add_runtime_dependency "httparty", "~> 0.20"
  spec.add_runtime_dependency "optparse", "~> 0.2"
  spec.add_runtime_dependency "nokogiri", "~> 1.13"
  spec.add_runtime_dependency "thor", "~> 1.2"

  # For more information and examples about making a new gem, check out our
  # guide at: https://bundler.io/guides/creating_gem.html
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
zettacode-0.1.4 zettacode.gemspec
zettacode-0.1.3 zettacode.gemspec
zettacode-0.1.2 zettacode.gemspec
zettacode-0.1.1 zettacode.gemspec
zettacode-0.1.0 zettacode.gemspec