Sha256: a3c9e6f0411e043dfe8b6c50ed3a6ab7d02f603ba6c3ac08b0ac682789dde9ea
Contents?: true
Size: 958 Bytes
Versions: 1
Compression:
Stored size: 958 Bytes
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'attr_typed/version' Gem::Specification.new do |spec| spec.name = "attr_typed" spec.version = AttrTyped::VERSION spec.authors = ["Anthony Langhorne", "Tom Meier"] spec.email = ["anthony.langhorne@ferocia.com.au", "thomas.meier@ferocia.com.au"] spec.summary = "Enforce attribute types at assignment time" spec.homepage = "https://github.com/Ferocia/attr_typed" spec.license = "MIT" spec.required_ruby_version = '>= 2.4.0' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.require_paths = ["lib"] spec.add_dependency 'monetize', '>= 1.0.0' spec.add_development_dependency "bundler", "~> 2.1.4" spec.add_development_dependency "rake", "~> 12.0" spec.add_development_dependency "rspec" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
attr_typed-1.0.5 | attr_typed.gemspec |