# -*- encoding: utf-8 -*- require File.expand_path('../lib/celsius/version', __FILE__) Gem::Specification.new do |gem| gem.name = "celsius" gem.authors = ["René Sprotte", "Michael Sievers"] gem.email = ["ubpb-celsius@googlegroups.com"] gem.description = "Common Library Search Interface" gem.summary = "celsius-#{Celsius::VERSION}" gem.homepage = "http://github.com/ubpb/celsius" gem.license = "MIT" gem.files = `git ls-files`.split($\) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.version = Celsius::VERSION gem.add_dependency "celsius-common" gem.add_dependency "celsius-ui" end