Sha256: eef09c3335a68f05b30f1199fcaeaaabf0e0406899178068e7753c54cc7546f5

Contents?: true

Size: 949 Bytes

Versions: 7

Compression:

Stored size: 949 Bytes

Contents

# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift(File.expand_path('../lib', __FILE__))
require 'imap/backup/version'

Gem::Specification.new do |gem|
  gem.name          = 'imap-backup'
  gem.description   = %q{Backup GMail, or any other IMAP email service, to disk.}
  gem.summary       = %q{Backup GMail (or other IMAP) accounts to disk}
  gem.authors       = ['Joe Yates']
  gem.email         = ['joe.g.yates@gmail.com']
  gem.homepage      = 'https://github.com/joeyates/imap-backup'

  gem.files         = `git ls-files`.split($\)
  gem.executables   = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^spec/})
  gem.require_paths = ['lib']
  gem.version       = Imap::Backup::VERSION

  gem.add_runtime_dependency 'rake'
  gem.add_runtime_dependency 'highline'
  gem.add_runtime_dependency 'mail'

  gem.add_development_dependency 'rspec',  '>= 3.0.0'
  gem.add_development_dependency 'simplecov'
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
imap-backup-1.0.17 imap-backup.gemspec
imap-backup-1.0.16 imap-backup.gemspec
imap-backup-1.0.15 imap-backup.gemspec
imap-backup-1.0.14 imap-backup.gemspec
imap-backup-1.0.13 imap-backup.gemspec
imap-backup-1.0.12 imap-backup.gemspec
imap-backup-1.0.11 imap-backup.gemspec