forked from maestrano/mno-enterprise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mno-enterprise.gemspec
24 lines (20 loc) · 930 Bytes
/
mno-enterprise.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require_relative 'core/lib/mno_enterprise/version.rb'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "mno-enterprise"
s.version = MnoEnterprise::VERSION
s.authors = ["Arnaud Lachaume", "Olivier Brisse"]
s.email = ["[email protected]"]
s.homepage = "https://maestrano.com"
s.summary = "Maestrano Enterprise"
s.description = "Maestrano Enterprise is your application marketplace, out of the box."
s.license = "Apache-2.0"
# s.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.rdoc"]
s.files = Dir['LICENSE', 'README.md', 'lib/**/*']
s.test_files = Dir["spec/**/*"]
s.add_dependency 'mno-enterprise-core', s.version
s.add_dependency 'mno-enterprise-api', s.version
s.add_dependency 'mno-enterprise-frontend', s.version
end