blob: 5fd5919956fc2e9836016e5251fa290cdbb8d107 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Gem::Specification.new do |s|
s.name = "fileutils"
s.version = '0.0.1'
s.date = '2017-02-06'
s.summary = "Several file utility methods for copying, moving, removing, etc."
s.description = "Several file utility methods for copying, moving, removing, etc."
s.require_path = %w{lib}
s.files = %w{fileutils.rb}
s.required_ruby_version = ">= 2.5.0dev"
s.authors = ["Minero Aoki"]
s.email = [nil]
s.homepage = "https://www.ruby-lang.org"
s.license = "BSD-2-Clause"
end
|