-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathworkarea.gemspec
More file actions
20 lines (17 loc) · 857 Bytes
/
workarea.gemspec
File metadata and controls
20 lines (17 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require File.expand_path('../core/lib/workarea/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'workarea'
s.version = Workarea::VERSION::STRING
s.authors = ['Ben Crouse']
s.email = ['bcrouse@workarea.com']
s.homepage = 'http://www.workarea.com'
s.license = 'Business Software License'
s.summary = 'The Workarea Commerce Platform'
s.description = 'Workarea is an enterprise-grade Ruby on Rails commerce platform.'
s.files = Dir['README.md', 'CHANGELOG.md', '.rubocop.yml', 'docker-compose.yml']
s.rdoc_options << '--exclude=docs'
s.add_dependency 'workarea-core', Workarea::VERSION::STRING
s.add_dependency 'workarea-storefront', Workarea::VERSION::STRING
s.add_dependency 'workarea-admin', Workarea::VERSION::STRING
s.add_dependency 'workarea-testing', Workarea::VERSION::STRING
end