Sha256: 755fe120f43334c63a808b60b3a78a095e956dc905a226160b57e474f35572f6

Contents?: true

Size: 1.29 KB

Versions: 5

Compression:

Stored size: 1.29 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "picture-safe"
    gem.summary = %Q{Picture Safe is a gem that backs up all the jpeg's in a given directory and its sub directory.}
    gem.email = "picture-safe@jackhq.com"
    gem.homepage = "http://github.com/twilson63/picture-safe"
    gem.authors = ["Jack Russell Software Company, LLC"]
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end

rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end

require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.spec_files = FileList['spec/**/*_spec.rb']
end

Spec::Rake::SpecTask.new(:rcov) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end


task :default => :spec

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  if File.exist?('VERSION.yml')
    config = YAML.load(File.read('VERSION.yml'))
    version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}"
  else
    version = ""
  end

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
twilson63-picture-safe-0.0.3 Rakefile
twilson63-picture-safe-0.0.4 Rakefile
twilson63-picture-safe-0.0.5 Rakefile
twilson63-picture-safe-0.0.6 Rakefile
twilson63-picture-safe-0.0.7 Rakefile