Sha256: 0d8213e49bfb0b9ca838b3a9309022e2eb291b1366943b5b28644afde9101351

Contents?: true

Size: 1.37 KB

Versions: 1

Compression:

Stored size: 1.37 KB

Contents

require 'rubygems'
require 'rake/testtask'

task :default => :test

Rake::TestTask.new do |t|
  t.libs << "test"
  t.test_files = FileList['test/*_test.rb']
  # t.verbose = true
end

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "s3lib"
    gemspec.summary = "An Amazon S3 interface library used as an example in The S3 Cookbook (http://thes3cookbook.sopobo.com)"
    gemspec.email = 'scott@thes3cookbook.com'
    gemspec.homepage = 'http://thes3cookbook.sopobo.com'
    gemspec.description = "This library forms the basis for building a library to talk to Amazon S3 using Ruby.  It is used as an example of how to build an Amazon S3 interface in The S3 Cookbook (http://thes3cookbook.sopobo.com)"
    gemspec.authors = ["Scott Patten"]
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end


  # spec.name = 's3lib'
  # spec.summary = "An Amazon S3 interface library used as an example in The S3 Cookbook (http://thes3cookbook.com)"
  # spec.description = "This library forms the basis for building a library to talk to Amazon S3 using Ruby.  It is used as an example of how to build an Amazon S3 interface in The S3 Cookbook (http://thes3cookbook.com)"
  # spec.author = 'Scott Patten'
  # spec.email = 'scott@thes3cookbook.com'
  # spec.homepage = 'http://thes3cookbook.com'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spatten-s3lib-0.0.1 Rakefile