Skip to content

Commit

Permalink
Re-added :gemspec task to all Rakefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
fabien committed Sep 26, 2008
1 parent 3dbeeba commit 8bdf7b8
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 0 deletions.
7 changes: 7 additions & 0 deletions merb_activerecord/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ task :uninstall do
Merb::RakeHelper.uninstall(GEM_NAME, :version => GEM_VERSION)
end

desc "Create a gemspec file"
task :gemspec do
File.open("#{GEM_NAME}.gemspec", "w") do |file|
file.puts spec.to_ruby
end
end

desc "Run all examples"
Spec::Rake::SpecTask.new('spec') do |t|
t.spec_opts = ["-cfs"]
Expand Down
7 changes: 7 additions & 0 deletions merb_helpers/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ task :uninstall do
Merb::RakeHelper.uninstall(GEM_NAME, :version => GEM_VERSION)
end

desc "Create a gemspec file"
task :gemspec do
File.open("#{GEM_NAME}.gemspec", "w") do |file|
file.puts spec.to_ruby
end
end

desc "Run all examples"
Spec::Rake::SpecTask.new('spec') do |t|
t.spec_opts = ["-cfs"]
Expand Down
7 changes: 7 additions & 0 deletions merb_laszlo/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ task :uninstall do
Merb::RakeHelper.uninstall(GEM_NAME, :version => GEM_VERSION)
end

desc "Create a gemspec file"
task :gemspec do
File.open("#{GEM_NAME}.gemspec", "w") do |file|
file.puts spec.to_ruby
end
end

desc "Run all examples"
Spec::Rake::SpecTask.new('spec') do |t|
t.spec_opts = ["-cfs"]
Expand Down
7 changes: 7 additions & 0 deletions merb_param_protection/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ task :uninstall do
Merb::RakeHelper.uninstall(GEM_NAME, :version => GEM_VERSION)
end

desc "Create a gemspec file"
task :gemspec do
File.open("#{GEM_NAME}.gemspec", "w") do |file|
file.puts spec.to_ruby
end
end

desc "Run all examples"
Spec::Rake::SpecTask.new('spec') do |t|
t.spec_opts = ["-cfs"]
Expand Down
7 changes: 7 additions & 0 deletions merb_screw_unit/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ task :uninstall do
Merb::RakeHelper.uninstall(GEM_NAME, :version => GEM_VERSION)
end

desc "Create a gemspec file"
task :gemspec do
File.open("#{GEM_NAME}.gemspec", "w") do |file|
file.puts spec.to_ruby
end
end

desc "Run all examples"
Spec::Rake::SpecTask.new('spec') do |t|
t.spec_opts = ["-cfs"]
Expand Down
7 changes: 7 additions & 0 deletions merb_sequel/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ task :uninstall do
Merb::RakeHelper.uninstall(GEM_NAME, :version => GEM_VERSION)
end

desc "Create a gemspec file"
task :gemspec do
File.open("#{GEM_NAME}.gemspec", "w") do |file|
file.puts spec.to_ruby
end
end

desc "Run all examples"
Spec::Rake::SpecTask.new('spec') do |t|
t.spec_opts = ["-cfs"]
Expand Down
7 changes: 7 additions & 0 deletions merb_stories/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ task :uninstall do
Merb::RakeHelper.uninstall(GEM_NAME, :version => GEM_VERSION)
end

desc "Create a gemspec file"
task :gemspec do
File.open("#{GEM_NAME}.gemspec", "w") do |file|
file.puts spec.to_ruby
end
end

desc "Run all examples"
Spec::Rake::SpecTask.new('spec') do |t|
t.spec_opts = ["-cfs"]
Expand Down
7 changes: 7 additions & 0 deletions merb_test_unit/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ task :uninstall do
Merb::RakeHelper.uninstall(GEM_NAME, :version => GEM_VERSION)
end

desc "Create a gemspec file"
task :gemspec do
File.open("#{GEM_NAME}.gemspec", "w") do |file|
file.puts spec.to_ruby
end
end

desc "Run all examples"
Spec::Rake::SpecTask.new('spec') do |t|
t.spec_opts = ["-cfs"]
Expand Down

0 comments on commit 8bdf7b8

Please sign in to comment.