Sha256: 99b485690107346498c213a7d96cc56770d415439263a4aec08a22b42dcbac9d
Contents?: true
Size: 1.61 KB
Versions: 1
Compression:
Stored size: 1.61 KB
Contents
# # 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 # License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. require 'rake' Gem::Specification.new do |s| s.author = 'The Apache Software Foundation' s.homepage = "http://github.com/mifo/sinatra-rabbit" 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 = '1.1.6' s.date = Time.now s.summary = %q{Sinatra REST API DSL} s.files = FileList[ 'lib/sinatra/*.rb', 'lib/sinatra/docs/*.haml', 'lib/sinatra/docs/*.css', 'lib/sinatra/rabbit/*.rb', 'tests/*.rb', 'LICENSE', 'README.md', 'sinatra-rabbit.gemspec', ].to_a s.extra_rdoc_files = Dir["LICENSE"] s.required_ruby_version = '>= 1.8.1' s.add_runtime_dependency 'sinatra', '>= 1.3.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sinatra-rabbit-1.1.6 | sinatra-rabbit.gemspec |