Sha256: 29cf7efd296725967bc139fa65a7caf43355c7b6d1cafc5bf11ea7962f10cb89
Contents?: true
Size: 1.66 KB
Versions: 3
Compression:
Stored size: 1.66 KB
Contents
lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'tempfile/fixture/version' Gem::Specification.new do |spec| spec.name = 'tempfile-fixture' spec.version = Tempfile::Fixture::VERSION spec.authors = ['Derk-Jan Karrenbeld'] spec.email = ['derk-jan+github@karrenbeld.info'] spec.license = 'MIT' spec.summary = 'Temporarily copy a file to a Tempfile, for testing' spec.metadata = { 'bug_tracker_uri' => 'https://github.com/SleeplessByte/tempfile-fixture/issues', 'changelog_uri' => 'https://github.com/SleeplessByte/tempfile-fixture/CHANGELOG.md', 'homepage_uri' => 'https://github.com/SleeplessByte/tempfile-fixture', 'source_code_uri' => 'https://github.com/SleeplessByte/tempfile-fixture' } # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) # spec.metadata['allowed_push_host'] = 'https://gems.sleeplessbyte.technology' else raise 'RubyGems 2.0 or newer is required to protect against ' \ 'public gem pushes.' end 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 'minitest', '~> 5.0' spec.add_development_dependency 'rake', '~> 10.0' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tempfile-fixture-0.1.2 | tempfile-fixture.gemspec |
tempfile-fixture-0.1.1 | tempfile-fixture.gemspec |
tempfile-fixture-0.1.0 | tempfile-fixture.gemspec |