Sha256: ecb2adc18fd00a818f939d75b5b1da4e311ce7ae74d3326aac2aa03409a0df50
Contents?: true
Size: 892 Bytes
Versions: 1
Compression:
Stored size: 892 Bytes
Contents
require 'rubygems' require 'rake/gempackagetask' PKG_NAME = "filemanager" PKG_VERSION = "0.2.1" PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" PKG_FILES = FileList[ '[A-Z]*', 'lib/**/*', 'filemanager/**/*' ] spec = Gem::Specification.new do |s| s.platform = Gem::Platform::RUBY s.summary = "A online file manager for rails project" s.name = PKG_NAME s.version = PKG_VERSION s.require_path = 'lib' s.homepage = %q{http://filemanager.rubyforge.org/} s.rubyforge_project = 'Filemanager' s.has_rdoc = false s.authors = ["Leon Li"] s.email = "scorpio_leon@hotmail.com" s.files = PKG_FILES s.description = <<-EOF A online file manager for rails projectŁ¬support file/folder actions such as browse, create, rename, remove, copy, move, zip download, upload, unzip, view EOF end Rake::GemPackageTask.new(spec) do |pkg| pkg.need_zip = true pkg.need_tar = true end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
filemanager-0.2.1 | Rakefile |