Sha256: d86ed7a299561007519f3a8beba90a3a7c561a212c4c3a902f5fafb99c907985

Contents?: true

Size: 1.25 KB

Versions: 1

Compression:

Stored size: 1.25 KB

Contents

# encoding: utf-8

$:.push File.expand_path('../lib', __FILE__)

require 'app-store-emigrant/version'

Gem::Specification.new do |s|
  s.name        = 'app-store-emigrant'
  s.version     = AppStore::Emigrant::VERSION
  s.authors     = ['Tim Kurvers']
  s.email       = ['tim@moonsphere.net']
  s.homepage    = 'https://github.com/timkurvers/app-store-emigrant'
  s.summary     = 'App Store Emigrant will manually attempt to verify whether any of your local mobile applications are out of date'
  s.description = 'App Store Emigrant will manually attempt to verify whether any of your local mobile applications are out of date, which iTunes - unfortunately - will refuse once you have moved countries'
  
  s.rubyforge_project = 'app-store-emigrant'

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ['lib']
  
  s.add_dependency 'rubyzip',        '~> 0.9'
  s.add_dependency 'rainbow',        '~> 1.1'
  s.add_dependency 'CFPropertyList', '~> 2.0'
  
  s.add_development_dependency 'rake'
  
  if RUBY_VERSION < '1.9.2'
    s.add_dependency 'json'
    s.add_development_dependency 'minitest'
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
app-store-emigrant-0.0.7 app-store-emigrant.gemspec