This repository has been archived by the owner on Feb 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
/
tentd.gemspec
40 lines (36 loc) · 1.58 KB
/
tentd.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
36
37
38
39
40
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tentd/version'
Gem::Specification.new do |gem|
gem.name = "tentd"
gem.version = TentD::VERSION
gem.authors = ["Jonathan Rudenberg", "Jesse Stuart"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = %q{Tent Protocol server reference implementation}
gem.summary = %q{Tent Protocol server reference implementation}
gem.homepage = "http://tent.io"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_runtime_dependency 'rack-putty'
gem.add_runtime_dependency 'tent-client'
gem.add_runtime_dependency 'yajl-ruby'
gem.add_runtime_dependency 'sequel_pg'
gem.add_runtime_dependency 'pg'
gem.add_runtime_dependency 'sequel', '3.46.0'
gem.add_runtime_dependency 'sequel-json'
gem.add_runtime_dependency 'sequel-pg_array'
gem.add_runtime_dependency 'tent-schemas'
gem.add_runtime_dependency 'api-validator'
gem.add_runtime_dependency 'tent-canonical-json'
gem.add_runtime_dependency 'hawk-auth'
gem.add_runtime_dependency 'sidekiq'
gem.add_runtime_dependency 'unicorn'
gem.add_runtime_dependency 'fog'
gem.add_development_dependency 'bundler'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'puma', '2.0.1'
gem.add_development_dependency 'tent-validator', '~> 0.2.0'
end