Skip to content

Commit

Permalink
Added wrapper providing backwards compat.
Browse files Browse the repository at this point in the history
  • Loading branch information
arax committed Jul 18, 2013
1 parent 391f1f9 commit 2b90f69
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Gemfile.lock
*.swp
pkg
coverage
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source "https://rubygems.org/"

gemspec
3 changes: 3 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
require 'rubygems/tasks'

Gem::Tasks.new(:build => {:tar => true, :zip => true}, :sign => {:checksum => true, :pgp => false})
5 changes: 5 additions & 0 deletions lib/occi/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module Occi
module Dummy
VERSION = "4.0.0.alpha.1" unless defined?(::Occi::Dummy::VERSION)
end
end
22 changes: 22 additions & 0 deletions occi.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# coding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'occi/version'

Gem::Specification.new do |gem|
gem.name = "occi"
gem.version = Occi::Dummy::VERSION
gem.authors = ["Florian Feldhaus","Piotr Kasprzak", "Boris Parak"]
gem.email = ["[email protected]", "[email protected]", "[email protected]"]
gem.description = %q{OCCI is a collection of classes to simplify the implementation of the Open Cloud Computing API in Ruby}
gem.summary = %q{OCCI toolkit}
gem.homepage = 'https://github.com/gwdg/rOCCI'
gem.license = 'Apache License, Version 2.0'

gem.add_dependency 'occi-cli'

gem.add_development_dependency 'rubygems-tasks'

gem.required_ruby_version = ">= 1.8.7"
end

0 comments on commit 2b90f69

Please sign in to comment.