Sha256: 635e7ef7714b2927bc643270867e8a7cd86678fa626865aecc4aa4e44ae9be5e

Contents?: true

Size: 1012 Bytes

Versions: 2

Compression:

Stored size: 1012 Bytes

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fake_zip/version'

Gem::Specification.new do |spec|
  spec.name          = "fake_zip"
  spec.version       = FakeZip::VERSION
  spec.authors       = ["Alexander K"]
  spec.email         = ["xpyro@ya.ru"]
  spec.description   = %q{ build zip files with given file structure for testing }.strip
  spec.summary       = %q{ build zip files with given file structure for testing }.strip
  spec.homepage      = "https://github.com/sowcow/fake_zip"
  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"

  # deps:
  spec.add_development_dependency "rspec"
  spec.add_runtime_dependency "rubyzip"  
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fake_zip-0.0.2 fake_zip.gemspec
fake_zip-0.0.1 fake_zip.gemspec