forked from mezza/bcms_s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
26 lines (21 loc) · 1.15 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
# 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 = "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. This version is rails 3.2.x compatible now (with browsercms 3.5).}
gem.email = "courtsimas@gmail.com"
gem.homepage = "http://github.com/courtsimas/bcms_s3"
gem.authors = ["Court Simas"]
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