Sha256: 0436a072363d907cee59ad96cbae859d303edb4bdded5cac247099cc8996c518
Contents?: true
Size: 1.41 KB
Versions: 8
Compression:
Stored size: 1.41 KB
Contents
ROOT_DIR = File.expand_path(File.dirname(__FILE__)) require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "gizzmo" gem.summary = %Q{Gizzmo is a command-line client for managing gizzard clusters.} gem.description = %Q{Gizzmo is a command-line client for managing gizzard clusters.} gem.email = "kmaxwell@twitter.com" gem.homepage = "http://github.com/twitter/gizzmo" gem.authors = ["Kyle Maxwell"] end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler" end begin require 'spec/rake/spectask' Spec::Rake::SpecTask.new(:spec) do |t| spec_opts = File.expand_path('test/spec.opts', ROOT_DIR) if File.exist? spec_opts t.spec_opts = ['--options', "\"#{spec_opts}\""] end t.spec_files = FileList['test/**/*_spec.rb'] end rescue LoadError $stderr.puts "RSpec required to run tests." end task :test do puts puts "=" * 79 puts "You might want to read the README before running tests." puts "=" * 79 sleep 2 exec File.join(File.dirname(__FILE__), "test", "test.sh") end task :default => :spec require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "gizzmo #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
8 entries across 8 versions & 1 rubygems
Version | Path |
---|---|
gizzmo-0.13.1 | Rakefile |
gizzmo-0.13.0 | Rakefile |
gizzmo-0.12.1 | Rakefile |
gizzmo-0.12.0 | Rakefile |
gizzmo-0.11.4 | Rakefile |
gizzmo-0.11.3 | Rakefile |
gizzmo-0.11.2 | Rakefile |
gizzmo-0.11.1 | Rakefile |