-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathruby_aem.gemspec
25 lines (21 loc) · 1005 Bytes
/
ruby_aem.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
require 'yaml'
gem_conf = YAML.load_file('conf/gem.yaml')
Gem::Specification.new do |s|
s.name = 'ruby_aem'
s.version = gem_conf['version']
s.platform = Gem::Platform::RUBY
s.authors = ['Shine Solutions', 'Cliffano Subagio']
s.email = ['opensource@shinesolutions.com', 'cliffano@gmail.com']
s.homepage = 'https://github.com/shinesolutions/ruby_aem'
s.summary = 'AEM API Ruby client'
s.description = 'ruby_aem is a Ruby client for Adobe Experience Manager (AEM) API, written on top of swagger_aem'
s.license = 'Apache-2.0'
s.required_ruby_version = '>= 2.3'
s.files = Dir.glob('{conf,lib}/**/*')
s.require_paths = ['lib']
s.add_runtime_dependency 'retries', '0.0.5'
s.add_runtime_dependency 'swagger_aem', '3.8.0'
s.add_runtime_dependency 'swagger_aem_osgi', '1.0.0'
s.add_development_dependency 'rspec', '3.8.0'
s.add_development_dependency 'yard', '0.9.19'
end