forked from antunderwood/bcms_s3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
27 lines (22 loc) · 1.09 KB
/
Rakefile
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
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "mezza-bcms_s3"
gem.summary = %Q{This is a browsercms (browsercms.org) module to allow the facility to have attachments stored on Amazon S3. Also there is the option to change caching to suit heroku and/or use 'www' as the prefix for the non-cms site.
Based on original work by Neil Middleton}
gem.email = "[email protected]"
gem.homepage = "http://github.com/aunderwo/bcms_s3"
gem.authors = ["Anthony Underwood"]
gem.files = "lib/bcms_s3.rb"
gem.files << "lib/bcms_s3/routes.rb"
gem.files << "lib/bcms_s3/s3_module.rb"
gem.files << "templates/blank.rb"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end