forked from shinesolutions/ruby_aem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby_aem.gemspec
More file actions
22 lines (20 loc) · 984 Bytes
/
ruby_aem.gemspec
File metadata and controls
22 lines (20 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Gem::Specification.new do |s|
s.name = 'ruby_aem'
s.version = '2.2.2'
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 'nokogiri', '~> 1.8.1'
s.add_runtime_dependency 'nori', '~> 2.6.0'
s.add_runtime_dependency 'retries', '~> 0.0.5'
s.add_runtime_dependency 'swagger_aem', '~> 2.2.0'
s.add_development_dependency 'rspec', '~> 3.4'
s.add_development_dependency 'yard', '~> 0.9.11'
end