aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-12-19 04:21:24 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-12-19 04:21:24 +0000
commit7f53d0485f0f6cbec5241dfb25ffafea8b1f49fa (patch)
treec2da2b7d30b2933ba9d356b743d2f51257ea197b
parentd7515d4b09e8384ac99d019fe512d7e4aadffd1c (diff)
downloadrails-7f53d0485f0f6cbec5241dfb25ffafea8b1f49fa.tar.gz
rails-7f53d0485f0f6cbec5241dfb25ffafea8b1f49fa.tar.bz2
rails-7f53d0485f0f6cbec5241dfb25ffafea8b1f49fa.zip
RubyGems 0.9.5 compat: always set the gem platform
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8438 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rwxr-xr-xactiverecord/Rakefile1
-rw-r--r--activeresource/Rakefile1
-rw-r--r--activesupport/Rakefile1
-rw-r--r--railties/Rakefile1
4 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index c22934e180..10c33d60b5 100755
--- a/activerecord/Rakefile
+++ b/activerecord/Rakefile
@@ -162,6 +162,7 @@ end
dist_dirs = [ "lib", "test", "examples" ]
spec = Gem::Specification.new do |s|
+ s.platform = Gem::Platform::RUBY
s.name = PKG_NAME
s.version = PKG_VERSION
s.summary = "Implements the ActiveRecord pattern for ORM."
diff --git a/activeresource/Rakefile b/activeresource/Rakefile
index 3434864bc6..74819cc918 100644
--- a/activeresource/Rakefile
+++ b/activeresource/Rakefile
@@ -52,6 +52,7 @@ Rake::RDocTask.new { |rdoc|
dist_dirs = [ "lib", "test", "examples", "dev-utils" ]
spec = Gem::Specification.new do |s|
+ s.platform = Gem::Platform::RUBY
s.name = PKG_NAME
s.version = PKG_VERSION
s.summary = "Think Active Record for web resources."
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
index f8322c4c9c..fd8e596772 100644
--- a/activesupport/Rakefile
+++ b/activesupport/Rakefile
@@ -39,6 +39,7 @@ Rake::RDocTask.new { |rdoc|
}
spec = Gem::Specification.new do |s|
+ s.platform = Gem::Platform::RUBY
s.name = PKG_NAME
s.version = PKG_VERSION
s.summary = "Support and utility classes used by the Rails framework."
diff --git a/railties/Rakefile b/railties/Rakefile
index 0504d6c67f..3a263d566e 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -303,6 +303,7 @@ PKG_FILES = FileList[
] - [ 'test' ]
spec = Gem::Specification.new do |s|
+ s.platform = Gem::Platform::RUBY
s.name = 'rails'
s.version = PKG_VERSION
s.summary = "Web-application framework with template engine, control-flow layer, and ORM."