sinatra-rabbit.gemspec in sinatra-rabbit-0.0.2 vs sinatra-rabbit.gemspec in sinatra-rabbit-0.9

- old
+ new

@@ -1,8 +1,6 @@ # -# Copyright (C) 2010 Red Hat, Inc. -# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. The # ASF licenses this file to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance with the @@ -17,33 +15,33 @@ # under the License. require 'rake' Gem::Specification.new do |s| - s.author = 'Red Hat, Inc.' + s.author = 'The Apache Software Foundation' s.homepage = "http://github.com/mifo/sinatra-rabbit" - s.email = 'deltacloud-dev@incubator.apache.org' + s.email = 'dev@deltacloud.apache.org' s.name = 'sinatra-rabbit' + s.require_path = 'lib' + s.platform = Gem::Platform::RUBY s.description = <<-EOF Rabbit is a Sinatra extension which can help you writing a simple REST API using easy to undestand DSL. EOF - s.version = '0.0.2' + s.version = '0.9' s.date = Time.now s.summary = %q{Sinatra REST API DSL} s.files = FileList[ 'lib/sinatra/*.rb', 'lib/sinatra/rabbit/*.rb', + 'LICENSE', + 'README.md', 'sinatra-rabbit.gemspec', ].to_a - s.extra_rdoc_files = Dir["COPYING"] + s.extra_rdoc_files = Dir["LICENSE"] s.required_ruby_version = '>= 1.8.1' - s.add_runtime_dependency 'sinatra', '>= 0.9.4' - s.add_runtime_dependency 'rack-accept', '>= 0.4.3' - - s.add_dependency('haml', '>= 2.2.17') - + s.add_runtime_dependency 'sinatra', '>= 1.3.0' end