Sha256: c1c3fa20d0616ea624bb89774a8961c0c1f0c728193d9c585bbac038a21ddc02
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
require 'rubygems' require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' require 'jeweler' Jeweler::Tasks.new do |gem| # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options gem.name = "runpuppet" gem.homepage = "http://github.com/dawanda/runpuppet" gem.license = "MIT" gem.summary = %Q{The counterpart to puppet_controller} gem.description = %Q{Is the local client to the puppet_controller} gem.email = "roman.heinrich@gmail.com" gem.authors = ["Roman Heinrich"] end Jeweler::RubygemsDotOrgTasks.new task :default => :test require 'rake/testtask' Rake::TestTask.new do |t| t.libs.push "lib" t.test_files = FileList['test/**/*_test.rb'] t.verbose = true end require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "runpuppet #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
runpuppet-1.0.0.rc1 | Rakefile |