aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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."