Sha256: 3d1750e104590fbb57f9f7e98a59e3fcba7a8aa285202ff3d87c4c0ec54375e1
Contents?: true
Size: 1.43 KB
Versions: 6
Compression:
Stored size: 1.43 KB
Contents
# encoding: utf-8 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://guides.rubygems.org/specification-reference/ for more options gem.name = "retrospec" gem.homepage = "http://github.com/nwops/retrospec" gem.license = "MIT" gem.summary = %Q{A devops framework for automating your development workflow} gem.description = %Q{Retrospec is a framework that allows the automation of repetitive file creation with just about any kind of language through the use of a pluggable architecture.} gem.email = "corey@logicminds.biz" gem.authors = ["Corey Osman"] # dependencies defined in Gemfile 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 desc "Code coverage detail" task :simplecov do ENV['COVERAGE'] = "true" Rake::Task['spec'].execute end task :default => :spec require 'rdoc/task' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "retrospec #{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 |
---|---|
retrospec-0.4.0 | Rakefile |
retrospec-0.3.1 | Rakefile |
retrospec-0.3.0 | Rakefile |
retrospec-0.2.1 | Rakefile |
retrospec-0.2.0 | Rakefile |
retrospec-0.1.0 | Rakefile |