Sha256: 394d03e25a122dd9b48c40fa1724105d3f44c504df25e63af1b81a3f64d8a750
Contents?: true
Size: 1.38 KB
Versions: 1
Compression:
Stored size: 1.38 KB
Contents
require 'rubygems' require 'rake/gempackagetask' require "spec/rake/spectask" PLUGIN = "merb-parts" NAME = "merb-parts" VERSION = "0.9.3" AUTHOR = "Hassox" EMAIL = "" HOMEPAGE = "http://merb-plugins.rubyforge.org/merb-parts/" SUMMARY = "Merb More: Merb plugin that provides Part Controllers." spec = Gem::Specification.new do |s| s.name = NAME s.version = VERSION s.platform = Gem::Platform::RUBY s.has_rdoc = true s.extra_rdoc_files = ["README", "LICENSE", 'TODO'] s.summary = SUMMARY s.description = s.summary s.author = AUTHOR s.email = EMAIL s.homepage = HOMEPAGE s.add_dependency('merb-core', '>= 0.9.3') s.require_path = 'lib' s.autorequire = PLUGIN s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,spec}/**/*") end Rake::GemPackageTask.new(spec) do |pkg| pkg.gem_spec = spec end install_home = ENV['GEM_HOME'] ? "-i #{ENV['GEM_HOME']}" : "" task :install => [:package] do sh %{sudo gem install #{install_home} pkg/#{NAME}-#{VERSION} --no-update-sources} end namespace :jruby do desc "Run :package and install the resulting .gem with jruby" task :install => :package do sh %{#{SUDO} jruby -S gem install #{install_home} pkg/#{NAME}-#{Merb::VERSION}.gem --no-rdoc --no-ri} end end desc "Run all specs" Spec::Rake::SpecTask.new("specs") do |t| t.spec_opts = ["--format", "specdoc", "--colour"] t.spec_files = Dir["spec/**/*_spec.rb"].sort end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
merb-parts-0.9.3 | Rakefile |