Sha256: c0acd17cf2cc7c0cd0f3b2778f5508700c6245c27ea4a3d3c9ebee5ed1a53c08

Contents?: true

Size: 1.4 KB

Versions: 33

Compression:

Stored size: 1.4 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 = "httpimagestore"
  gem.homepage = "http://github.com/jpastuszek/httpimagestore"
  gem.license = "MIT"
  gem.summary = %Q{HTTP based image storage and thumbnailer}
  gem.description = %Q{Thumbnails images using httpthumbnailer and stored data on HTTP server (S3)}
  gem.email = "jpastuszek@gmail.com"
  gem.authors = ["Jakub Pastuszek"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

require 'cucumber/rake/task'
Cucumber::Rake::Task.new(:features)

task :default => :spec

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

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

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
httpimagestore-1.8.1 Rakefile
httpimagestore-1.8.0 Rakefile
httpimagestore-1.7.0 Rakefile
httpimagestore-1.6.0 Rakefile
httpimagestore-1.5.0 Rakefile
httpimagestore-1.4.1 Rakefile
httpimagestore-1.4.0 Rakefile
httpimagestore-1.3.0 Rakefile
httpimagestore-1.2.0 Rakefile
httpimagestore-1.1.0 Rakefile
httpimagestore-1.0.0 Rakefile
httpimagestore-0.5.0 Rakefile
httpimagestore-0.4.0 Rakefile
httpimagestore-0.3.2 Rakefile
httpimagestore-0.3.1 Rakefile
httpimagestore-0.3.0 Rakefile
httpimagestore-0.2.4 Rakefile
httpimagestore-0.2.3 Rakefile
httpimagestore-0.2.2 Rakefile
httpimagestore-0.2.1 Rakefile