-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
25 lines (22 loc) · 851 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'rubygems'
require 'rake/gempackagetask'
spec = Gem::Specification.new do |s|
s.name = "rails_appengine"
s.version = '0.0.7'
s.platform = Gem::Platform::RUBY
s.has_rdoc = false
s.extra_rdoc_files = ["README.rdoc", "LICENSE"]
s.description = "Config files for Rails on App Engine"
s.summary = "We intend to provide a common set of config files " +
"for Rails 2.3.5, 2.3.8, 2.3.9 and 2.3.10 on Google App Engine."
s.authors = ["Takeru Sasaki", "Josh S Moore", "John Woodell"]
s.email = ["[email protected]", "[email protected]",
s.homepage = "http://github.com/takeru/rails_appengine"
s.require_path = 'lib'
s.files = %w(LICENSE README.rdoc Rakefile) + Dir.glob("lib/**/*")
end
task :default => :gem
Rake::GemPackageTask.new(spec) do |pkg|
pkg.gem_spec = spec
end