Sha256: 199abf75d32efb4eea51ce718c59c3c411789c202c48a2c4028e456b18640a41

Contents?: true

Size: 1.04 KB

Versions: 1

Compression:

Stored size: 1.04 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

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 = "capistrano-s3-mirror"
  gem.homepage = "http://github.com/Femaref/capistrano-s3-mirror"
  gem.license = "MIT"
  gem.summary = %Q{mirrors the public folder to amazon s3}
  gem.description = %Q{mirrors the public folder to amazon s3}
  gem.email = "femaref@googlemail.com"
  gem.authors = ["Femaref"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "capistrano-s3-mirror #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
capistrano-s3-mirror-0.0.1 Rakefile