-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoracle_ows.gemspec
43 lines (39 loc) · 1.61 KB
/
oracle_ows.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
require_relative 'lib/oracle_ows/version'
Gem::Specification.new do |spec|
# required attributes
#
spec.name = 'oracle_ows'
spec.version = OracleOWS::VERSION
spec.summary = 'Oracle OWS'
spec.files = Dir.glob('lib/**/*') # load everything in lib folder tree
# # Specify which files should be added to the gem when it is released.
# # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
# spec.files = Dir.chdir(File.expand_path(__dir__)) do
# `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
# end
# recommended attributes
#
spec.authors = ['Ram']
spec.email = ['[email protected]']
spec.description = 'Oracle Hospitality OPERA Web Self-Service'
spec.homepage = 'https://github.com/ramonrails/oracle_ows'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/ramonrails/oracle_ows'
spec.metadata['changelog_uri'] = 'https://github.com/ramonrails/oracle_ows/CHANGELOG.md'
# additional attributes
#
spec.require_paths = ['lib']
spec.add_runtime_dependency 'savon', '~> 2.12'
#
# check Gemfile
#
# spec.add_development_dependency 'guard', '~> 2.16'
# spec.add_development_dependency 'rspec', '~> 3.9'
# optional attributes
#
# spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
# spec.bindir = 'exe'
# spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
end