Sha256: 263975a4ad165b469eace6dd2a805235c6f7d23f76a1ef7612d186de6fa1fb28
Contents?: true
Size: 1.13 KB
Versions: 4
Compression:
Stored size: 1.13 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "files/version" Gem::Specification.new do |s| s.name = "files" s.version = Files::VERSION s.authors = ["Alex Chaffee"] s.email = ["alex@stinky.com"] s.homepage = "" s.summary = %q{a simple DSL for creating files and directories} s.description = %q{Sometimes you want to create a whole bunch of files at once, like when you're testing a tool that processes a whole bunch of files. The Files gem lets you cleanly specify those files and their contents inside your test code, instead of making you create a fixture directory and check it in to your repo. It puts them in a temporary directory and cleans up when your test is done.} s.rubyforge_project = "files" 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.require_paths = ["lib"] # specify any dependencies here; for example: # s.add_development_dependency "rspec" # s.add_runtime_dependency "rest-client" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
files-0.0.4 | files.gemspec |
files-0.0.3 | files.gemspec |
files-0.0.2 | files.gemspec |
files-0.0.1 | files.gemspec |