-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
25 lines (19 loc) · 956 Bytes
/
Rakefile
File metadata and controls
25 lines (19 loc) · 956 Bytes
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
require 'jeweler'
Jeweler::Tasks.new do |gem|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
gem.name = "parcel"
gem.summary = %Q{Simply cool attachments}
gem.description = %Q{
Parcel is a simple library which allows normal ruby classes to maintain a linked
file stored pretty much anywhere. Parcel abstracts away all the nasty details of storage and manipulation by
presenting Interfaces to manupulate data, and Storages to store the data.
Built-in interfaces include Zip Files and Images.
Built-in storage methods include Hard Disk, S3, and Warehousing.
Interfaces and Storage methods are easily extensible. See the github page for more information!
}.strip
gem.email = "[email protected]"
gem.homepage = "http://github.com/elseano/parcel"
gem.authors = ["Sean St. Quentin"]
gem.files.include Dir.glob('lib/**/*.rb')
end
Jeweler::RubygemsDotOrgTasks.new