1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Dont run tests on gem creation

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5119 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2006-09-15 09:56:52 +00:00
parent 2b0d668efc
commit 4ece57cf24

View file

@ -267,7 +267,7 @@ PKG_FILES = FileList[
'generators/**/*',
'html/**/*',
'lib/**/*'
]
] - [ 'test' ]
spec = Gem::Specification.new do |s|
s.name = 'rails'
@ -302,6 +302,7 @@ spec = Gem::Specification.new do |s|
end
Rake::GemPackageTask.new(spec) do |pkg|
pkg.gem_spec = spec
end