Sha256: 32eea7c2bff69827b4a8a32ee2f63a0a25c7f8faaff4e662772017fce15e0199
Contents?: true
Size: 917 Bytes
Versions: 1
Compression:
Stored size: 917 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "fs/version" Gem::Specification.new do |s| s.name = "fs" s.version = FS::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Bernd Jünger"] s.email = ["blindgaenger@gmail.com"] s.homepage = "http://github.com/blindgaenger/fs" s.summary = %q{Work with your filesystem!} s.description = %q{FS gathers the cluttered methods for working with files and dirs. Internally using the good old standard library, but providing simple methods in a single place.} s.add_development_dependency 'rspec', '2.5.0' s.add_development_dependency 'fakefs', '0.3.1' 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"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fs-0.0.1 | fs.gemspec |