-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathworkarea-api.gemspec
More file actions
25 lines (19 loc) · 957 Bytes
/
workarea-api.gemspec
File metadata and controls
25 lines (19 loc) · 957 Bytes
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
$:.push File.expand_path('../lib', __FILE__)
require 'workarea/api/version'
Gem::Specification.new do |s|
s.name = 'workarea-api'
s.version = Workarea::Api::VERSION
s.authors = ['Ben Crouse', 'Curt Howard']
s.email = ['bcrouse@workarea.com', 'choward@workarea.com']
s.homepage = 'https://github.com/workarea-commerce/workarea-api'
s.summary = 'Adds a JSON REST API to the Workarea Commerce Platform'
s.description = 'This wraps gems for a storefront and admin JSON REST API for the Workarea Commerce Platform.'
s.files = `git ls-files`.split("\n")
s.license = 'Business Software License'
s.required_ruby_version = '>= 2.3.0'
s.add_dependency 'workarea', '~> 3.x', '>= 3.5.x'
s.add_dependency 'workarea-api-storefront', Workarea::Api::VERSION
s.add_dependency 'workarea-api-admin', Workarea::Api::VERSION
s.add_dependency 'raddocs', '~> 2.2.0'
s.add_dependency 'swagger-blocks', '~> 2.0.2'
end