Sha256: fd66d256bff2b68cf529846931c70db2f24afc81c92c0090a07311a3a30638d4

Contents?: true

Size: 1.25 KB

Versions: 4

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.5'
  s.add_dependency 'rainbow',        '~> 1.1.3'
  s.add_dependency 'CFPropertyList', '~> 2.0.17'
  
  s.add_development_dependency 'rake'
  
  if RUBY_VERSION < '1.9'
    s.add_dependency 'json'
    s.add_development_dependency 'minitest'
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
app-store-emigrant-0.0.5 app-store-emigrant.gemspec
app-store-emigrant-0.0.4 app-store-emigrant.gemspec
app-store-emigrant-0.0.3 app-store-emigrant.gemspec
app-store-emigrant-0.0.2 app-store-emigrant.gemspec