Sha256: c33d19995c6c0e4d581ed7b5e87148260eaa51aae9c45f9e947b6f7daa067821

Contents?: true

Size: 1.08 KB

Versions: 3

Compression:

Stored size: 1.08 KB

Contents

# -*- encoding: utf-8 -*-

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'machinist/version'

Gem::Specification.new do |gem|
  gem.name          = 'machinist_redux'
  gem.version       = Machinist::VERSION
  gem.authors       = ['Pete Yandell', 'Attila Györffy', 'Dominic Sayers']
  gem.email         = ['dominic@sayers.cc']
  gem.description   = 'Machinist makes it easy to create objects for use in tests. It generates data for the ' \
                      "attributes you don't care about, and constructs any necessary associated objects, leaving you "\
                      'to specify only the fields you care about in your test.'
  gem.summary       = "Fixtures aren't fun. Machinist was."
  gem.homepage      = 'http://github.com/dominicsayers/machinist'
  gem.license       = 'MIT'

  gem.files         = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
  gem.executables   = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ['lib']
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
machinist_redux-3.0.3 machinist.gemspec
machinist_redux-3.0.2 machinist.gemspec
machinist_redux-3.0.0 machinist.gemspec