Sha256: 3048d302ed648b933c448520d70f051046de6822dcaa2910032a61cde0eb7f98
Contents?: true
Size: 1016 Bytes
Versions: 2
Compression:
Stored size: 1016 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.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"] s.add_development_dependency 'rake', '0.9.2.2' s.add_development_dependency 'rspec', '2.7.0' s.add_development_dependency 'yard', '0.7.2' s.add_development_dependency 'bluecloth', '2.2.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fs-0.2.0 | fs.gemspec |
fs-0.1.2 | fs.gemspec |