CapnKernul/zeppelin

View on GitHub
zeppelin.gemspec

Summary

Maintainability
Test Coverage
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'zeppelin/version'

Gem::Specification.new do |s|
  s.name        = 'zeppelin'
  s.version     = Zeppelin::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ['Alexander Kern', 'James Herdman']
  s.email       = ['alex@kernul.com', 'james.herdman@me.com']
  s.homepage    = 'https://github.com/kern/zeppelin'
  s.summary     = %q{Urban Airship library for Ruby}
  s.description = %q{Ruby client for the Urban Airship Push Notification API}
  s.license     = 'MIT'

  s.rubyforge_project = 'zeppelin'

  s.add_dependency 'faraday', '< 0.10.0'
  s.add_dependency 'faraday_middleware', '~> 0.9.0', '>= 0.9.0'

  s.add_development_dependency 'rspec', '~> 2.14.1', '>= 2.14.1'

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {spec}/*`.split("\n")
  s.require_paths = ['lib']
end