1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
## lockfile.gemspec
#
Gem::Specification::new do |spec|
spec.name = "lockfile"
spec.version = "2.1.0"
spec.platform = Gem::Platform::RUBY
spec.summary = "lockfile"
spec.description = "description: lockfile kicks the ass"
spec.files =
["README",
"bin",
"bin/rlock",
"doc",
"doc/rlock.help",
"lib",
"lib/lockfile.rb",
"lockfile.gemspec",
"rakefile",
"readme.erb",
"samples",
"samples/a.rb",
"samples/lock",
"samples/lock.sh",
"samples/lockfile",
"samples/nfsstore.rb",
"samples/out"]
spec.executables = ["rlock"]
spec.require_path = "lib"
spec.test_files = nil
spec.extensions.push(*[])
spec.rubyforge_project = "codeforpeople"
spec.author = "Ara T. Howard"
spec.email = "ara.t.howard@gmail.com"
spec.homepage = "https://github.com/ahoward/lockfile"
end
|