Sha256: c4b6fa60f7c88a6eb2b5454619e69e6226454a9ace377f7e48858e83bcddcf9d
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
# frozen_string_literal: true require_relative "lib/carioca/constants" Gem::Specification.new do |spec| spec.name = "carioca" spec.version = Carioca::Constants::VERSION spec.authors = ["Romain GEORGES"] spec.email = ["romain@ultragreen.net"] spec.license = "BSD-3-Clause" spec.summary = %q{Carioca : Configuration Agent and Registry with Inversion Of Control for your Applications} spec.homepage = %q{https://github.com/Ultragreen/carioca} spec.description = %q{Carioca : provide a full IoC light Container for designing your applications} spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0") spec.metadata["allowed_push_host"] = "https://rubygems.org" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage spec.metadata["changelog_uri"] = spec.homepage spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] # Uncomment to register a new dependency of your gem spec.add_dependency "tty-prompt", "~>0.23.1" spec.add_dependency "pastel", "~>0.8.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
carioca-2.0.1 | carioca.gemspec |