Sha256: b3f4135242ae2a5a2127a030671acf8f131260dfb531cc4db2d606d3026bcc8c
Contents?: true
Size: 1.1 KB
Versions: 7
Compression:
Stored size: 1.1 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'immutable-struct' Gem::Specification.new do |spec| spec.name = "immutable-struct" spec.version = ImmutableStruct::VERSION spec.authors = ["Stitch Fix Engineering","Dave Copeland","Simeon Willbanks"] spec.email = ["opensource@stitchfix.com","davetron5000@gmail.com","simeon@simeons.net"] spec.description = %q{Easily create value objects without the pain of Ruby's Struct (or its setters)} spec.summary = %q{Easily create value objects without the pain of Ruby's Struct (or its setters)} spec.homepage = "https://github.com/stitchfix/immutable-struct" spec.license = "MIT" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" end
Version data entries
7 entries across 7 versions & 1 rubygems