Sha256: d7fe5217f3c57a71884857c09ad6c64c9944fd38de8658d524b7249cb70a9ed6
Contents?: true
Size: 1.47 KB
Versions: 3
Compression:
Stored size: 1.47 KB
Contents
%w[rubygems rake rake/clean hoe fileutils newgem rubigen].each { |f| require f } require File.dirname(__FILE__) + '/lib/sinatra-gen' # Generate all the Rake tasks # Run 'rake -T' to see list of generated tasks (from gem root directory) $hoe = Hoe.spec('sinatra-gen') do |p| p.developer('Aaron Quint', 'aaron@quirkey.com') p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n") p.rubyforge_name = 'quirkey' p.summary = %q{sinatra-gen generates a common file structure and basic app files for a web app utilizing the sinatra framework} p.description = %q{sinatra-gen generates a common file structure and basic app files for a web app utilizing the sinatra framework. For more information on sinatra, check out http://sinatrarb.com} p.version = SinatraGen::VERSION p.extra_deps = [ ['rubigen','=1.5.2'], ['sinatra', '>= 0.9.4'], ['rack-test', '>= 0.4.1'] ] p.extra_dev_deps = [ ['newgem', ">= #{::Newgem::VERSION}"] ] p.clean_globs |= %w[**/.DS_Store tmp *.log] path = (p.rubyforge_name == p.name) ? p.rubyforge_name : "\#{p.rubyforge_name}/\#{p.name}" p.remote_rdoc_dir = File.join(path.gsub(/^#{p.rubyforge_name}\/?/,''), 'rdoc') p.rsync_args = '-av --delete --ignore-errors' end require 'newgem/tasks' # load /tasks/*.rake Dir['tasks/**/*.rake'].each { |t| load t } # TODO - want other tests/tasks run by default? Add them to the list # task :default => [:spec, :features]
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
quirkey-sinatra-gen-0.4.0 | Rakefile |
sinatra-gen-0.4.1 | Rakefile |
sinatra-gen-0.4.0 | Rakefile |