Sha256: e1af66d44fc145e1ec5c98cf0ade54ff151241c6283de92a6c20452fdf97aad7
Contents?: true
Size: 1.06 KB
Versions: 3
Compression:
Stored size: 1.06 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "miso-java" gem.summary = %Q{A library for generating Miso Java web applications.} gem.description = %q{Miso is a lightweight MVC Java web framework. This gem is a code generator for building Miso apps.} gem.email = "scott@phoreo.com" gem.homepage = "http://github.com/cscotta/miso" gem.authors = ["C. Scott Andreas"] gem.post_install_message = %q{=== HELLO MISO! Type "sudo miso-java-configure" to finish setting up Miso.} # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler" end task :default => :rdoc require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "miso-java #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
miso-java-0.1.5 | Rakefile |
miso-java-0.1.4 | Rakefile |
miso-java-0.1.3 | Rakefile |