From 69107dd7dd6981ed0494d5fe55766cd806d0a0e5 Mon Sep 17 00:00:00 2001 From: Boris Parak Date: Sat, 3 Aug 2013 00:02:23 +0200 Subject: [PATCH] Updated dependencies and gemspec --- .gitignore | 11 ++++++++++- Gemfile | 13 +++++++++++++ occi.gemspec | 4 ++-- 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b656977..d106bca 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,13 @@ -Gemfile.lock +*.gem *.swp +.project +.idea +.yardoc +.bundle +.rvmrc pkg +tmp +log coverage +vendor +Gemfile.lock diff --git a/Gemfile b/Gemfile index 07483b2..7a7474f 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,16 @@ source "https://rubygems.org/" gemspec + +group :development do + gem 'warbler', :git => 'git://github.com/jruby/warbler.git', :ref => 'ce3ce4df137504822e4cbb9399dee7e7dd767c44' + gem 'rubygems-tasks', :git => 'git://github.com/postmodern/rubygems-tasks.git' +end + +platforms :jruby do + gem 'jruby-openssl' if ((defined? JRUBY_VERSION) && (JRUBY_VERSION.split('.')[1].to_i < 7)) +end + +platforms :ruby_18 do + gem 'oniguruma' +end diff --git a/occi.gemspec b/occi.gemspec index a7b5ace..6c167a6 100644 --- a/occi.gemspec +++ b/occi.gemspec @@ -16,8 +16,8 @@ Gem::Specification.new do |gem| gem.add_dependency 'occi-cli' - gem.add_development_dependency 'rubygems-tasks' gem.add_development_dependency 'rake' - gem.required_ruby_version = ">= 1.8.7" + gem.required_ruby_version = ">= 1.8.7" + gem.post_install_message = "This gem is just a wrapper providing backward compatibility and might be removed in the future! Please, consider using 'occi-cli' directly." end