forked from thestorefront/FastAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfastapi.gemspec
More file actions
20 lines (16 loc) · 731 Bytes
/
fastapi.gemspec
File metadata and controls
20 lines (16 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |s|
s.name = 'fastapi'
s.version = '0.1.9'
s.date = '2014-07-31'
s.summary = 'Easily create robust, standardized API endpoints using lightning-fast database queries'
s.description = 'Easily create robust, standardized API endpoints using lightning-fast database queries'
s.authors = ['Keith Horwood']
s.email = 'keithwhor@gmail.com'
s.files = ['lib/fastapi.rb',
'lib/fastapi/active_record_extension.rb']
s.homepage = 'https://github.com/thestorefront/FastAPI'
s.license = 'MIT'
s.add_runtime_dependency 'oj', '~> 2.9.9'
s.add_runtime_dependency 'rails', '>= 3.2.0'
s.required_ruby_version = '>= 1.9.3'
end