Sha256: 70afb5e368f5bec484449b704d989ea854d31536fa0a147917eb3639dc4ae2f8
Contents?: true
Size: 1.08 KB
Versions: 3
Compression:
Stored size: 1.08 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "takes_macro/version" Gem::Specification.new do |spec| spec.name = "takes_macro" spec.version = TakesMacro::VERSION spec.authors = ["David Pedersen"] spec.email = ["david@tonsser.com"] spec.summary = %q{Remove boilerplate for writing initializers} spec.description = %q{A faster implementation of `pattr_initialize` from the attr_extras gem} spec.homepage = "https://github.com/tonsser/takes_macro" spec.files = `git ls-files -z`.split("\x0").reject do |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", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest", "~> 5.0" spec.add_development_dependency "benchmark-ips", "~> 2.7.2" spec.add_development_dependency "attr_extras", "~> 5.2.0" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
takes_macro-1.0.1 | takes_macro.gemspec |
takes_macro-1.0.0 | takes_macro.gemspec |
takes_macro-0.1.0 | takes_macro.gemspec |