Sha256: 3c190d19fe4452dbb974b43df6c7e4015ddf27cc86b3d3b753f49acb4f8e900c

Contents?: true

Size: 1.33 KB

Versions: 12

Compression:

Stored size: 1.33 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 = "paperclip-aws"
  gem.homepage = "http://github.com/igor-alexandrov/paperclip-aws"
  gem.license = "MIT"
  gem.summary = %Q{Storage module to official 'aws-sdk' gem for Amazon S3}
  gem.description = %Q{'paperclip-aws' is a full featured storage module that supports all S3 locations (US, European and Tokio) without any additional hacking.}
  gem.email = "igor.alexandrov@gmail.com"
  gem.authors = ["Igor Alexandrov"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/*_test.rb'
  test.verbose = true
end

task :default => :test

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

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

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
paperclip-aws-1.6.7 Rakefile
paperclip-aws-1.6.6 Rakefile
paperclip-aws-1.6.5 Rakefile
paperclip-aws-1.6.1 Rakefile
paperclip-aws-1.6.0 Rakefile
paperclip-aws-1.4.1 Rakefile
paperclip-aws-1.4.0 Rakefile
paperclip-aws-1.3.5 Rakefile
paperclip-aws-1.3.4 Rakefile
paperclip-aws-1.3.3 Rakefile
paperclip-aws-1.3.2 Rakefile
paperclip-aws-1.3.1 Rakefile