Sha256: 43e264f7ced61739ccbf270f5cb374aef1fc9e2f62a1459de25c55e9f90156a6
Contents?: true
Size: 1.33 KB
Versions: 6
Compression:
Stored size: 1.33 KB
Contents
lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "industrialist/version" Gem::Specification.new do |spec| spec.name = "industrialist" spec.version = Industrialist::VERSION spec.platform = Gem::Platform::RUBY spec.authors = ["Alan Ridlehoover", "Fito von Zastrow"] spec.email = ["dev@entelo.com"] spec.summary = "Industrialist manufactures factories that build self-registered classes." spec.homepage = "https://github.com/entelo/industrialist" spec.license = "MIT" spec.metadata = { "bug_tracker_uri" => "https://github.com/entelo/industrialist/issues", "homepage_uri" => spec.homepage, "source_code_uri" => "https://github.com/entelo/industrialist" } spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 2.0" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "rspec_junit_formatter", "~>0.4" spec.add_development_dependency "simplecov", "~>0.16" end
Version data entries
6 entries across 6 versions & 1 rubygems