Sha256: 3b1a3aa766dcc159b0e0fbddcf3e6c9766d800c55f3b4976a05ec41a5306f88c
Contents?: true
Size: 1.35 KB
Versions: 6
Compression:
Stored size: 1.35 KB
Contents
require 'rubygems' require 'rake/gempackagetask' require 'rake/rdoctask' require 'rubygems/specification' require 'date' require 'spec/rake/spectask' require File.dirname(__FILE__) + '/lib/appengine-apis' # set up pretty rdoc if possible begin gem 'rdoc' require 'sdoc' ENV['RDOCOPT'] = '-T lightblue' rescue Exception end GEM = "appengine-apis" GEM_VERSION = AppEngine::VERSION AUTHOR = "Ryan Brown" EMAIL = "ribrdb@gmail.com" HOMEPAGE = "http://code.google.com/p/appengine-jruby" SUMMARY = "Ruby API wrappers for App Engine" spec = Gem::Specification.new do |s| s.name = GEM s.version = GEM_VERSION s.platform = Gem::Platform::RUBY s.has_rdoc = true s.extra_rdoc_files = ["README.rdoc", "COPYING"] s.summary = SUMMARY s.description = s.summary s.author = AUTHOR s.email = EMAIL s.homepage = HOMEPAGE s.add_dependency("appengine-rack") s.require_path = 'lib' s.files = %w(COPYING README.rdoc Rakefile) + Dir.glob("{lib,spec}/**/*.rb") end task :default => :spec desc "Run specs" Spec::Rake::SpecTask.new do |t| t.spec_files = FileList['spec/**/*_spec.rb'] t.spec_opts = %w(-fs --color) end Rake::GemPackageTask.new(spec) do |pkg| pkg.gem_spec = spec end Rake::RDocTask.new do |rd| rd.main = "README.rdoc" rd.rdoc_files.include("README.rdoc", "lib/**/*.rb") end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
appengine-apis-0.0.16 | Rakefile |
appengine-apis-0.0.15 | Rakefile |
appengine-apis-0.0.14 | Rakefile |
appengine-apis-0.0.13 | Rakefile |
appengine-apis-0.0.12 | Rakefile |
appengine-apis-0.0.11 | Rakefile |