Sha256: ee7238a682a400408919033b2b20561c3bacd9df566ad313365abb6d9f18db4b
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
# frozen_string_literal: true require './lib/acts_as_hashable/version' Gem::Specification.new do |s| s.name = 'acts_as_hashable' s.version = ActsAsHashable::VERSION s.summary = 'Simple hash-based factory methods for objects.' s.description = <<-DESCRIPTION This is a small library that helps increase the pliability of object constructor signatures. Instead of instantiating via the constructor, this library can install helper factory class-level methods that you can use with hashes. DESCRIPTION s.authors = ['Matthew Ruggio'] s.email = ['mruggio@bluemarblepayroll.com'] s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } s.homepage = 'https://github.com/bluemarblepayroll/acts_as_hashable' s.license = 'MIT' s.required_ruby_version = '>= 2.3.1' s.add_development_dependency('rspec') s.add_development_dependency('rubocop', '~> 0.59.2') end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
acts_as_hashable-1.0.3 | acts_as_hashable.gemspec |