summaryrefslogtreecommitdiff
path: root/help/Rakefile
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-10-08 10:45:27 +0200
committerAzul <azul@leap.se>2012-10-08 10:45:27 +0200
commitefcf0e5927055d2b86804c84b00c614b38191964 (patch)
tree8195f5ad3f38d6f3725cf91446fef9e2d2920eb3 /help/Rakefile
parentc882d882a6506039bf0f2e4c3a673eb30ae9e58d (diff)
enabling rake gem in engines, using LeapWeb::Version all over the place
Diffstat (limited to 'help/Rakefile')
-rw-r--r--help/Rakefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/help/Rakefile b/help/Rakefile
index 9306287..0e73163 100644
--- a/help/Rakefile
+++ b/help/Rakefile
@@ -1,4 +1,8 @@
#!/usr/bin/env rake
+
+require 'rake/packagetask'
+require 'rubygems/package_task'
+
begin
require 'bundler/setup'
rescue LoadError
@@ -20,8 +24,10 @@ RDoc::Task.new(:rdoc) do |rdoc|
rdoc.rdoc_files.include('lib/**/*.rb')
end
-
-
+spec = eval(File.read('leap_web_help.gemspec'))
+Gem::PackageTask.new(spec) do |p|
+ p.gem_spec = spec
+end
Bundler::GemHelper.install_tasks