-
Notifications
You must be signed in to change notification settings - Fork 1
/
haveapi.gemspec
30 lines (27 loc) · 1.01 KB
/
haveapi.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
lib = File.expand_path('lib', __dir__)
$:.unshift(lib) unless $:.include?(lib)
require 'haveapi/version'
Gem::Specification.new do |s|
s.name = 'haveapi'
s.version = HaveAPI::VERSION
s.summary =
s.description = 'Framework for creating self-describing APIs'
s.authors = 'Jakub Skokan'
s.email = '[email protected]'
s.files = `git ls-files -z`.split("\x0") + Dir.glob('doc/*')
s.license = 'MIT'
s.required_ruby_version = ">= #{File.read('../../.ruby-version').strip}"
s.add_dependency 'activesupport', '>= 7.1'
s.add_dependency 'github-markdown'
s.add_dependency 'haveapi-client', '~> 0.23.0'
s.add_dependency 'json'
s.add_dependency 'mail'
s.add_dependency 'nesty', '~> 1.0'
s.add_dependency 'rack-oauth2', '~> 2.2.0'
s.add_dependency 'rake'
s.add_dependency 'redcarpet', '~> 3.6'
s.add_dependency 'require_all', '~> 2.0.0'
s.add_dependency 'sinatra', '~> 3.1.0'
s.add_dependency 'sinatra-contrib', '~> 3.1.0'
s.add_dependency 'tilt', '~> 2.3.0'
end