forked from mattt/rack-push-notification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrack-push-notification.gemspec
35 lines (32 loc) · 1.44 KB
/
rack-push-notification.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- 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 = "[email protected]"
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 "sequel", "~> 3.37.0"
s.add_dependency "sinatra", "~> 1.3.2"
s.add_dependency "sinatra-param", "~> 0.1.1"
s.add_dependency "coffee-script", "~> 2.2.0"
s.add_dependency "eco", "~> 1.0.0"
s.add_dependency "haml", "~> 3.1.7"
s.add_dependency "sass", "~> 3.2.3"
s.add_dependency "bootstrap-sass", "~> 2.1.1"
s.add_dependency "sprockets", "~> 2.8.1"
s.add_dependency "sprockets-sass", "~> 0.9.1"
s.add_dependency "houston", "~> 0.1.1"
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