Sha256: 8b8cf0696811ec98530ae9a60d43161b3da288cb4ab8eda2ec6aecb5b6eda748
Contents?: true
Size: 1.05 KB
Versions: 2
Compression:
Stored size: 1.05 KB
Contents
lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "trailblazer/context/version" Gem::Specification.new do |spec| spec.name = "trailblazer-context" spec.version = Trailblazer::Context::VERSION spec.authors = ["Nick Sutterer"] spec.email = ["apotonick@gmail.com"] spec.summary = "Argument-specific data structures for Trailblazer." spec.description = "Argument-specific data structures for Trailblazer such as Context, Option and ContainerChain." spec.homepage = "https://trailblazer.to/" spec.licenses = ["MIT"] spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r(^test/)) end spec.test_files = `git ls-files -z test`.split("\x0") spec.require_paths = ["lib"] spec.add_dependency "hashie", ">= 3.0.0" spec.add_development_dependency "bundler" spec.add_development_dependency "minitest" spec.add_development_dependency "rake" # maybe we could remove this? spec.required_ruby_version = ">= 2.1.0" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
trailblazer-context-0.5.0 | trailblazer-context.gemspec |
trailblazer-context-0.4.0 | trailblazer-context.gemspec |