Skip to content

Commit

Permalink
Merge pull request #10 from jwillemsen/master
Browse files Browse the repository at this point in the history
Update ruby dependencies
  • Loading branch information
jwillemsen authored Dec 4, 2019
2 parents 641d5ca + 1552134 commit ce15647
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion mkrf_conf_srcgem.rb
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
end
inst = Gem::DependencyInstaller.new
begin
inst.install "taosource", ">= 6.1.8"
inst.install "taosource", ">= 6.5.7"
rescue
$stderr.puts 'Failed to install taosource gem.'
exit(1)
Expand Down
16 changes: 8 additions & 8 deletions rakelib/gem.rake
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ namespace :r2corba do
gem.extensions = ['mkrf_conf_taogem.rb']
gem.require_paths = %w{lib}
gem.executables = []
gem.required_ruby_version = '>= 1.9.3'
gem.required_ruby_version = '>= 2.0'
gem.licenses = ['ACE']
end
R2CORBA::Gem.build_gem(gemspec)
Expand All @@ -96,12 +96,16 @@ t_ = file File.join('pkg', "#{R2CORBA::Gem.gem_name('r2corba', R2CORBA::R2CORBA_
gem.extensions = ['mkrf_conf_srcgem.rb']
gem.require_paths = %w{lib}
gem.executables = %w{ridlc rins r2corba}
gem.required_ruby_version = '>= 1.9.3'
gem.required_ruby_version = '>= 2.0'
gem.licenses = ['R2CORBA', 'ACE', 'GPL']
gem.require_paths << 'ext'
gem.add_dependency 'ridl', '~> 2.5'
gem.add_dependency 'rake', '~> 10.0'
gem.rdoc_options << '--exclude=\\.dll' << '--exclude=\\.so' << '--exclude=\\.pidlc'
gem.metadata = {
"bug_tracker_uri" => "https://github.com/RemedyIT/r2corba/issues",
"source_code_uri" => "https://github.com/RemedyIT/r2corba"
}
end
R2CORBA::Gem.build_gem(gemspec)
end
Expand Down Expand Up @@ -131,11 +135,7 @@ t_ = file File.join('pkg', "#{R2CORBA::Gem.gem_name('r2corba', R2CORBA::R2CORBA_
gem.extensions = []
gem.require_paths = %w{ext}
gem.executables = []
if R2CORBA::Config.rb_ver_major < 2
gem.required_ruby_version = '>= 1.9.3'
else
gem.required_ruby_version = '>= 2.0.0'
end
gem.required_ruby_version = '>= 2.0.0'
gem.licenses = ['R2CORBA', 'ACE']
gem.rdoc_options << '--exclude=\\.dll' << '--exclude=\\.so'
end
Expand Down Expand Up @@ -213,7 +213,7 @@ unless defined?(JRUBY_VERSION) || !R2CORBA::Config.is_win32
gem.require_paths = %w{lib}
gem.executables = []
gem.extensions = []
gem.required_ruby_version = '>= 1.9.3'
gem.required_ruby_version = '>= 2.0'
gem.licenses = ['R2CORBA']
end
R2CORBA::Gem.build_gem(gemspec)
Expand Down
2 changes: 1 addition & 1 deletion scripts/rake-taogem.rb
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def self.build_gem
gem.require_paths = %w{lib}
gem.executables = []
#gem.platform = Gem::Platform::CURRENT
gem.required_ruby_version = '>= 1.8.6'
gem.required_ruby_version = '>= 2.0'
gem.licenses = ['ACE']
end
end
Expand Down

0 comments on commit ce15647

Please sign in to comment.