Sha256: 73d7cd25598e8e8421eed8508df754bfd4aa42d0066cb19687bf747c027b9a66
Contents?: true
Size: 1.21 KB
Versions: 7
Compression:
Stored size: 1.21 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "gitmine" gem.summary = "Git log with status of associated redmine tickets" gem.description = "Git log with status of associated redmine tickets" gem.email = "pcreux@gmail.com" gem.homepage = "http://github.com/pcreux/gitmine" gem.authors = ["Philippe Creux"] gem.default_executable = "gitmine" gem.executables = ["gitmine"] end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler" end #require 'spec/rake/spectask' #Spec::Rake::SpecTask.new(:spec) do |spec| # spec.libs << 'lib' << 'spec' # spec.spec_files = FileList['spec/**/*_spec.rb'] #end # #Spec::Rake::SpecTask.new(:rcov) do |spec| # spec.libs << 'lib' << 'spec' # spec.pattern = 'spec/**/*_spec.rb' # spec.rcov = true #end # #task :spec => :check_dependencies # #task :default => :spec require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "gitmine #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
gitmine-0.2.1 | Rakefile |
gitmine-0.2.0 | Rakefile |
gitmine-0.1.16 | Rakefile |
gitmine-0.1.15 | Rakefile |
gitmine-0.1.14 | Rakefile |
gitmine-0.1.13 | Rakefile |
gitmine-0.1.12 | Rakefile |