Sha256: d53388ed86977dfd4bbbb40a0520e53f529f0742cabd58d8a9b0f4cbdf16cef4
Contents?: true
Size: 1.35 KB
Versions: 6
Compression:
Stored size: 1.35 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.name = "hackboxen" gem.homepage = "http://github.com/infochimps/hackboxen" gem.executables = ["hb-install", "hb-scaffold", "hb-runner"] gem.license = "MIT" gem.summary = "A simple framework to assist in standardizing the data-munging input/output process." gem.description = "A simple framework to assist in standardizing the data-munging input/output process." gem.email = "travis@infochimps.com" gem.authors = ["kornypoet", "Ganglion", "bollacker"] end Jeweler::RubygemsDotOrgTasks.new require 'rake/testtask' Rake::TestTask.new(:test) do |test| test.libs << 'lib' << 'test' test.pattern = 'test/**/test_*.rb' test.verbose = true end require 'rcov/rcovtask' Rcov::RcovTask.new do |test| test.libs << 'test' test.pattern = 'test/**/test_*.rb' test.verbose = true end task :default => :test require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "hackboxen #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
hackboxen-0.1.5 | Rakefile |
hackboxen-0.1.4 | Rakefile |
hackboxen-0.1.3 | Rakefile |
hackboxen-0.1.2 | Rakefile |
hackboxen-0.1.1 | Rakefile |
hackboxen-0.1.0 | Rakefile |