Sha256: ad974ed81b8c3b62e55d23e3cc8a9a9a2a66ef8ce909842c158f4c585125cbc8
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 KB
Contents
# encoding: utf-8 # frozen_string_literal: true lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "mixture/version" Gem::Specification.new do |spec| spec.name = "mixture" spec.version = Mixture::VERSION spec.authors = ["Jeremy Rodi"] spec.email = ["redjazz96@gmail.com"] spec.summary = "Handle validation, coercion, and attributes." spec.description = "Handle validation, coercion, and attributes." spec.homepage = "https://github.com/medcat/mixture" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") .reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "bin" spec.executables = spec.files .grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" spec.add_dependency "thread_safe", "~> 0.3" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mixture-0.7.1 | mixture.gemspec |
mixture-0.7.0 | mixture.gemspec |