Sha256: 8278ab3117db448e6c26618dc79f9931408c93158cb520b1736cd9f4fe735f23
Contents?: true
Size: 1.12 KB
Versions: 11
Compression:
Stored size: 1.12 KB
Contents
require 'rubygems' require 'rubygems/specification' begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "daemonizer" gemspec.summary = "Daemonizer allows you to easily create custom daemons on ruby. Supporting preforked and threaded models." gemspec.description = "Inspired by bundler and rack. Mostly built on top of Alexey Kovyrin's loops code. http://github.com/kovyrin/loops" gemspec.email = "glebpom@gmail.com" gemspec.homepage = "http://github.com/glebpom/daemonizer" gemspec.authors = ["Gleb Pomykalov"] gemspec.add_dependency('log4r', '>= 1.1.8') gemspec.add_dependency('thor', '>= 0.13.7') end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler not available. Install it with: gem install jeweler" end begin require 'yard' YARD::Rake::YardocTask.new(:yard) do |t| t.options = ['--title', 'Daemonizer Documentation'] if ENV['PRIVATE'] t.options.concat ['--protected', '--private'] else t.options.concat ['--protected', '--no-private'] end end rescue LoadError puts 'Yard not available. Install it with: sudo gem install yard' end
Version data entries
11 entries across 11 versions & 1 rubygems