Sha256: e434c13f30d8ee0377c819e1dc75a3ee321a4b8b96af967e2cc7bda388e9d6e9

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "rack/push-notification"

Gem::Specification.new do |s|
  s.name        = "rack-push-notification"
  s.authors     = ["Mattt Thompson"]
  s.email       = "m@mattt.me"
  s.homepage    = "http://mattt.me"
  s.version     = Rack::PushNotification::VERSION
  s.platform    = Gem::Platform::RUBY
  s.summary     = "Rack::PushNotification"
  s.description = "Generate a REST API for registering and querying push notification device tokens."
  s.add_development_dependency "rspec", "~> 0.6.1"
  s.add_development_dependency "rake",  "~> 0.9.2"

  s.add_dependency "rack", "~> 1.4"
  s.add_dependency "rack-contrib", "~> 1.1.0"
  s.add_dependency "sinatra", "~> 1.3.2"
  s.add_dependency "sinatra-param", "~> 0.1.1"
  s.add_dependency "sequel", "~> 3.37.0"

  s.files         = Dir["./**/*"].reject { |file| file =~ /\.\/(bin|example|log|pkg|script|spec|test|vendor)/ }
  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"]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rack-push-notification-0.0.1 ./rack-push-notification.gemspec