Sha256: e9a8bb99f745753e689ac43c301efffc1e2a49c89d1c230d80a365bd28a0794a
Contents?: true
Size: 967 Bytes
Versions: 3
Compression:
Stored size: 967 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 'yard', '0.6.5' s.add_development_dependency 'bluecloth', '2.1.0' 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fs-0.1.1 | fs.gemspec |
fs-0.1.0 | fs.gemspec |
fs-0.0.2 | fs.gemspec |