Sha256: 978894bf216385885bc2feee47c46ff4a424a5f534388234d068af725edbf8d4
Contents?: true
Size: 1.59 KB
Versions: 5
Compression:
Stored size: 1.59 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 = "analdiffist" gem.homepage = "http://github.com/radamant/analdiffist" gem.license = "MIT" gem.summary = %Q{A professional twice over: an analyst and a diffist.} gem.description = %Q{A tool for comparing the complexity and code smells between two git revisions} gem.email = "davidmfoley@gmail.com" gem.authors = ["Adam Pearson", "Dave Foley"] # Include your dependencies below. Runtime dependencies are required when using your gem, # and development dependencies are only needed for development (ie running rake tasks, tests, etc) # gem.add_runtime_dependency 'jabber4r', '> 0.1' # gem.add_development_dependency 'rspec', '> 1.2.3' end Jeweler::RubygemsDotOrgTasks.new require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end RSpec::Core::RakeTask.new(:rcov) do |spec| spec.pattern = 'spec/**/*_spec.rb' spec.rcov = true 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 = "analdiffist #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
analdiffist-0.4.0 | Rakefile |
analdiffist-0.3.0 | Rakefile |
analdiffist-0.2.0 | Rakefile |
analdiffist-0.1.1 | Rakefile |
analdiffist-0.1.0 | Rakefile |